summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Peter <blendoit@gmail.com>2019-06-23 01:45:58 -0700
committerMarius Peter <blendoit@gmail.com>2019-06-23 01:45:58 -0700
commit5de63cf149ba044444531e7a5eb5a40ec67dcaed (patch)
tree8daf50725899693f6ef675e04d11e5464008a46d
parent2c8e6e632eb03cd6545de51d72aaebe0df9bf7ee (diff)
creator.py updated
-rw-r--r--creator.py104
-rw-r--r--main.py56
2 files changed, 77 insertions, 83 deletions
diff --git a/creator.py b/creator.py
index 601e849..210e502 100644
--- a/creator.py
+++ b/creator.py
@@ -105,7 +105,14 @@ class Coordinates:
class Airfoil(Coordinates):
- '''This class enables the creation of a single NACA airfoil.'''
+ '''
+ This class enables the creation of a single NACA airfoil.
+
+ Please note: the coordinates are saved as two lists
+ for the x- and z-coordinates. The coordinates start at
+ the leading edge, travel over the airfoil's upper edge,
+ then loops back to the leading edge via the lower edge.
+ '''
def __init__(self):
global parent
@@ -190,12 +197,9 @@ class Airfoil(Coordinates):
x_chord = [i / 10 for i in range(x_chord_25_percent * 10)]
x_chord.extend(i for i in range(x_chord_25_percent, self.chord + 1))
# Reversed list for our lower airfoil coordinate densification
- x_chord_rev = [i for i in range(
- self.chord, x_chord_25_percent, -1)]
+ x_chord_rev = [i for i in range(self.chord, x_chord_25_percent, -1)]
ext = [i / 10 for i in range(x_chord_25_percent * 10, -1, -1)]
x_chord_rev.extend(ext)
- print(len(x_chord))
- print(len(x_chord_rev))
# Generate our airfoil geometry from previous sub-functions.
for x in x_chord:
@@ -237,31 +241,21 @@ class Spar(Coordinates):
Return:
None
'''
- # Airfoil surface coordinates
- x = airfoil.x
- z = airfoil.z
+
# Scaled spar location with regards to chord
loc = x_loc_percent * self.chord
- # bisect_left: returns index of first value in x > loc
- # starting from [0]
- # bisect_right: returns index of first value in x > loc
- # starting from [-1] (last list element).
- # This ensures that the spar geom intersects with airfoil geom.
- spar_x_u = bi.bisect_left(x, loc) # index of spar's x_u
- spar_z_u = bi.bisect_left(z, loc)
- spar_x_l = bi.bisect_left(x[::-1], loc) # index of spar's x_l
- spar_z_l = bi.bisect_left(z[::-1], loc)
- print(len(x))
- print(len(z))
- # These x and y coordinates are assigned to the spar, NOT airfoil.
- # print(spar_x_u)
- # print(spar_z_u)
- # print(spar_x_l)
- # print(spar_z_l)
- # self.x.append(x[spar_x_u])
- # self.z.append(z[spar_z_u])
- # self.x.append(x[spar_x_l])
- # self.z.append(z[spar_z_l])
+ # bi.bisect_left: returns index of first value in airfoil.x > loc
+ # This ensures that spar geom intersects with airfoil geom.
+ # Spar upper coordinates
+ spar_x = bi.bisect_left(airfoil.x, loc) - 1
+ x = [airfoil.x[spar_x]]
+ z = [airfoil.z[spar_x]]
+ # Spar lower coordinates
+ spar_x = bi.bisect_left(airfoil.x[::-1], loc) - 1
+ x += [airfoil.x[-spar_x]]
+ z += [airfoil.z[-spar_x]]
+ self.x.append(x)
+ self.z.append(z)
return None
def add_spar_caps(self, spar_cap_area):
@@ -301,44 +295,44 @@ class Stringer(Coordinates):
'''
# Find distance between leading edge and first upper stringer
- interval = airfoil.spar.x[0] / (stringer_u_1 + 1)
+ interval = airfoil.spar.x[0][0] / (stringer_u_1 + 1)
# initialise first self.stringer_x at first interval
x = interval
# Add upper stringers from leading edge until first spar.
for _ in range(0, stringer_u_1):
- # Index of the first value of airfoil_x > x
- index = bi.bisect_left(airfoil.x, x)
- self.x.append(airfoil.x[index])
- self.z.append(airfoil.z[index])
+ # Index of the first value of airfoil.x > x
+ i = bi.bisect_left(airfoil.x, x)
+ self.x.append(airfoil.x[i])
+ self.z.append(airfoil.z[i])
x += interval
# Add upper stringers from first spar until last spar
# TODO: stringer placement if only one spar is created
- interval = (airfoil.spar.x[-1]
- - airfoil.spar.x[0]) / (stringer_u_2 + 1)
- x = interval + airfoil.spar.x[0]
+ interval = (airfoil.spar.x[-1][0]
+ - airfoil.spar.x[0][0]) / (stringer_u_2 + 1)
+ x = interval + airfoil.spar.x[0][0]
for _ in range(0, stringer_u_2):
- index = bi.bisect_left(airfoil.x, x)
- self.x.append(airfoil.x[index])
- self.z.append(airfoil.z[index])
+ i = bi.bisect_left(airfoil.x, x)
+ self.x.append(airfoil.x[i])
+ self.z.append(airfoil.z[i])
x += interval
# Find distance between leading edge and first lower stringer
- interval = airfoil.spar.x[0] / (stringer_l_1 + 1)
+ interval = airfoil.spar.x[0][1] / (stringer_l_1 + 1)
x = interval
# Add lower stringers from leading edge until first spar.
for _ in range(0, stringer_l_1):
- index = bi.bisect_left(airfoil.x, x)
- self.x.append(airfoil.x[index])
- self.z.append(airfoil.z[index])
+ i = bi.bisect_left(airfoil.x[::-1], x)
+ self.x.append(airfoil.x[-i])
+ self.z.append(airfoil.z[-i])
x += interval
# Add lower stringers from first spar until last spar
- interval = (airfoil.spar.x[-1]
- - airfoil.spar.x[0]) / (stringer_l_2 + 1)
- x = interval + airfoil.spar.x[0]
+ interval = (airfoil.spar.x[-1][1]
+ - airfoil.spar.x[0][1]) / (stringer_l_2 + 1)
+ x = interval + airfoil.spar.x[0][1]
for _ in range(0, stringer_l_2):
- index = bi.bisect_left(airfoil.x, x)
- self.x.append(airfoil.x[index])
- self.z.append(airfoil.z[index])
+ i = bi.bisect_left(airfoil.x[::-1], x)
+ self.x.append(airfoil.x[-i])
+ self.z.append(airfoil.z[-i])
x += interval
return None
@@ -364,20 +358,20 @@ def plot_geom(airfoil):
y_chord = [0, 0]
plt.plot(x_chord, y_chord, linewidth='1')
# Plot quarter chord
- plt.plot(airfoil.chord / 4, 0, '.', color='g',
+ plt.plot(airfoil.chord / 4, 0, '', color='g',
markersize=24, label='Quarter-chord')
# Plot mean camber line
plt.plot(airfoil.x_c, airfoil.y_c, '-.', color='r', linewidth='2',
label='Mean camber line')
# Plot airfoil surfaces
- plt.fill(airfoil.x, airfoil.z, '', color='b', linewidth='1', fill=False)
+ plt.fill(airfoil.x, airfoil.z, color='b', linewidth='1', fill=False)
# Plot spars
try:
- for _ in range(0, len(airfoil.spar.x)):
- x = (airfoil.spar.x[_], airfoil.spar.x[_])
- y = (airfoil.spar.z[_], airfoil.spar.z[_])
- plt.plot(x, y, '.-', color='b')
+ for _ in range(len(airfoil.spar.x)):
+ x = (airfoil.spar.x[_])
+ y = (airfoil.spar.z[_])
+ plt.plot(x, y, '-', color='b')
except AttributeError:
print('No spars to plot.')
# Plot upper stringers
diff --git a/main.py b/main.py
index 09d33e6..2f1ba1f 100644
--- a/main.py
+++ b/main.py
@@ -24,7 +24,7 @@ start_time = time.time()
# Airfoil dimensions
NACA_NUM = 2412
-CHORD_LENGTH = 12
+CHORD_LENGTH = 100
SEMI_SPAN = 20
# Airfoil thickness
@@ -41,10 +41,10 @@ SPAR_CAP_AREA = 0.3 # sqin
STRINGER_AREA = 0.1 # sqin
# Amount of stringers
-TOP_STRINGERS = 2
-BOTTOM_STRINGERS = 18
-NOSE_TOP_STRINGERS = 5
-NOSE_BOTTOM_STRINGERS = 5
+TOP_STRINGERS = 4
+BOTTOM_STRINGERS = 7
+NOSE_TOP_STRINGERS = 3
+NOSE_BOTTOM_STRINGERS = 6
# population information & save path
POP_SIZE = 1
@@ -73,29 +73,29 @@ def main():
# af.info_print(2)
af.info_save(SAVE_PATH, _)
- # # Create spar instance
- # af.spar = creator.Spar()
- # # Define the spar coordinates and mass, stored in single spar object
- # af.spar.add_coord(af, 0.15)
- # af.spar.add_coord(af, 0.55)
- # # Automatically adds spar caps for all spars previously defined
- # af.spar.add_spar_caps(SPAR_CAP_AREA)
- # af.spar.add_mass(SPAR_MASS)
- # # af.spar.info_print(2)
- # # af.spar.info_save(SAVE_PATH, _)
- #
- # # Create stringer instance
- # af.stringer = creator.Stringer()
- # # Compute the stringer coordinates from their quantity in each zone
- # af.stringer.add_coord(af,
- # NOSE_TOP_STRINGERS,
- # TOP_STRINGERS,
- # NOSE_BOTTOM_STRINGERS,
- # BOTTOM_STRINGERS)
- # af.stringer.add_area(STRINGER_AREA)
- # af.stringer.add_mass(STRINGER_MASS)
- # # af.stringer.info_print(2)
- # # af.stringer.info_save(SAVE_PATH, _)
+ # Create spar instance
+ af.spar = creator.Spar()
+ # Define the spar coordinates and mass, stored in single spar object
+ af.spar.add_coord(af, 0.20)
+ af.spar.add_coord(af, 0.65)
+ # Automatically adds spar caps for all spars previously defined
+ af.spar.add_spar_caps(SPAR_CAP_AREA)
+ af.spar.add_mass(SPAR_MASS)
+ # af.spar.info_print(2)
+ af.spar.info_save(SAVE_PATH, _)
+
+ # Create stringer instance
+ af.stringer = creator.Stringer()
+ # Compute the stringer coordinates from their quantity in each zone
+ af.stringer.add_coord(af,
+ NOSE_TOP_STRINGERS,
+ TOP_STRINGERS,
+ NOSE_BOTTOM_STRINGERS,
+ BOTTOM_STRINGERS)
+ af.stringer.add_area(STRINGER_AREA)
+ af.stringer.add_mass(STRINGER_MASS)
+ # af.stringer.info_print(2)
+ af.stringer.info_save(SAVE_PATH, _)
# Plot components with matplotlib
creator.plot_geom(af)
Copyright 2019--2024 Marius PETER