diff --git a/src/SailMod.py b/src/SailMod.py index 2524c88..1fbfb23 100644 --- a/src/SailMod.py +++ b/src/SailMod.py @@ -129,9 +129,9 @@ def __init__(self, name, I, J, LPG, HBI): super().__init__(self.name, self.type, self.area, self.vce) self.measure() - def measure(self, rfm=1, fjt=1): - self.LPG_r = self.LPG*fjt - self.IG_r = self.IG*fjt + def measure(self, rfm=1, ftj=1): + self.LPG_r = self.LPG*ftj + self.IG_r = self.IG*ftj self.area = 0.5 * self.I * max(self.J, self.LPG_r)