24 lines
619 B
Python
24 lines
619 B
Python
import math
|
|
from logbook import Logger
|
|
|
|
from eos.graph import Graph
|
|
|
|
|
|
pyfalog = Logger(__name__)
|
|
|
|
|
|
class FitCapTimeGraph(Graph):
|
|
|
|
defaults = {"time": 0}
|
|
|
|
def __init__(self, fit, data=None):
|
|
Graph.__init__(self, fit, self.calcRegen, data if data is not None else self.defaults)
|
|
self.fit = fit
|
|
|
|
def calcRegen(self, data):
|
|
time = data["time"]
|
|
maxCap = self.fit.ship.getModifiedItemAttr('capacitorCapacity')
|
|
regenTime = self.fit.ship.getModifiedItemAttr('rechargeRate') / 1000
|
|
cap = maxCap * (1 + math.e ** ((5 * -time) / regenTime) * -1) ** 2
|
|
return cap
|