diff options
-rw-r--r-- | creator.py | 1 | ||||
-rw-r--r-- | main.py | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -302,6 +302,7 @@ class Stringer(Coordinates): self.z_u.append(airfoil.z_u[index]) x += interval # Add upper stringers from first spar until last spar + # TODO: stringer placement if only one spar is created interval = (airfoil.spar.x_u[-1] - airfoil.spar.x_u[0]) / (stringer_u_2 + 1) x = interval + airfoil.spar.x_u[0] @@ -41,9 +41,9 @@ SPAR_CAP_AREA = 0.3 # sqin STRINGER_AREA = 0.1 # sqin # Amount of stringers -TOP_STRINGERS = 7 -BOTTOM_STRINGERS = 6 -NOSE_TOP_STRINGERS = 4 +TOP_STRINGERS = 0 +BOTTOM_STRINGERS = 18 +NOSE_TOP_STRINGERS = 0 NOSE_BOTTOM_STRINGERS = 5 # population information & save path |