Skip to content

Commit

Permalink
Correct parameter (#39)
Browse files Browse the repository at this point in the history
is this a mistake or am I missing something? Shouldn't this be FTJ (foot jib parameter) ? Or is FJT something different? Thanks.
  • Loading branch information
sharaipg authored Sep 21, 2024
1 parent e84eff9 commit 38f947a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SailMod.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 38f947a

Please sign in to comment.