summaryrefslogtreecommitdiff
path: root/creator.py
diff options
context:
space:
mode:
authorMarius Peter <blendoit@gmail.com>2019-06-21 18:06:35 -0700
committerMarius Peter <blendoit@gmail.com>2019-06-21 18:06:35 -0700
commited394647e3c5101255a1bcbb023e78ed768d30e0 (patch)
tree761513f1b45a8552caeacf84d1eab5cbe0c8c8e6 /creator.py
parent3bba98c9869e07fede355d83fd2498996e8a54fc (diff)
turn plot() function into Airfoil class method
Diffstat (limited to 'creator.py')
-rw-r--r--creator.py101
1 files changed, 50 insertions, 51 deletions
diff --git a/creator.py b/creator.py
index a4f67ad..fb6e4e1 100644
--- a/creator.py
+++ b/creator.py
@@ -221,6 +221,56 @@ class Airfoil(Coordinates):
print('z_c the camber z-coordinates:\n', np.around(self.x_u, round))
return None
+ def plot(self):
+ '''This function plots the elements passed as arguments.'''
+
+ # Plot chord
+ x_chord = [0, self.chord]
+ y_chord = [0, 0]
+ plt.plot(x_chord, y_chord, linewidth='1')
+ # Plot quarter chord
+ plt.plot(self.chord / 4, 0, '.', color='g')
+ # Plot mean camber line
+ plt.plot(self.x_c, self.y_c,
+ '-.', color='r', linewidth='2',
+ label='mean camber line')
+ # Plot upper surface
+ plt.plot(self.x_u, self.z_u,
+ '', color='b', linewidth='1')
+ # Plot lower surface
+ plt.plot(self.x_l, self.z_l,
+ '', color='b', linewidth='1')
+
+ # Plot spars
+ for _ in range(0, len(self.spar.x_u)):
+ x = (self.spar.x_u[_], self.spar.x_l[_])
+ y = (self.spar.z_u[_], self.spar.z_l[_])
+ plt.plot(x, y, '.-', color='b')
+
+ # Plot stringers
+ # Upper stringers
+ for _ in range(0, len(self.stringer.x_u)):
+ x = self.stringer.x_u[_]
+ y = self.stringer.z_u[_]
+ plt.plot(x, y, '.', color='y')
+ # Lower stringers
+ for _ in range(0, len(self.stringer.x_l)):
+ x = self.stringer.x_l[_]
+ y = self.stringer.z_l[_]
+ plt.plot(x, y, '.', color='y')
+
+ # Graph formatting
+ plt.xlabel('X axis')
+ plt.ylabel('Z axis')
+
+ plot_bound = self.x_u[-1]
+ plt.xlim(- 0.10 * plot_bound, 1.10 * plot_bound)
+ plt.ylim(- (1.10 * plot_bound / 2), (1.10 * plot_bound / 2))
+ plt.gca().set_aspect('equal', adjustable='box')
+ plt.grid(axis='both', linestyle=':', linewidth=1)
+ plt.show()
+ return None
+
class Spar(Coordinates):
'''Contains a single spar's location.'''
@@ -359,57 +409,6 @@ class Stringer(Coordinates):
return None
-def plot(airfoil, spar, stringer):
- '''This function plots the elements passed as arguments.'''
-
- # Plot chord
- x_chord = [0, airfoil.chord]
- y_chord = [0, 0]
- plt.plot(x_chord, y_chord, linewidth='1')
- # Plot quarter chord
- plt.plot(airfoil.chord / 4, 0, '.', color='g')
- # Plot mean camber line
- plt.plot(airfoil.x_c, airfoil.y_c,
- '-.', color='r', linewidth='2',
- label='mean camber line')
- # Plot upper surface
- plt.plot(airfoil.x_u, airfoil.z_u,
- '', color='b', linewidth='1')
- # Plot lower surface
- plt.plot(airfoil.x_l, airfoil.z_l,
- '', color='b', linewidth='1')
-
- # Plot spars
- for _ in range(0, len(spar.x_u)):
- x = (spar.x_u[_], spar.x_l[_])
- y = (spar.z_u[_], spar.z_l[_])
- plt.plot(x, y, '.-', color='b')
-
- # Plot stringers
- # Upper stringers
- for _ in range(0, len(stringer.x_u)):
- x = stringer.x_u[_]
- y = stringer.z_u[_]
- plt.plot(x, y, '.', color='y')
- # Lower stringers
- for _ in range(0, len(stringer.x_l)):
- x = stringer.x_l[_]
- y = stringer.z_l[_]
- plt.plot(x, y, '.', color='y')
-
- # Graph formatting
- plt.xlabel('X axis')
- plt.ylabel('Z axis')
-
- plot_bound = airfoil.x_u[-1]
- plt.xlim(- 0.10 * plot_bound, 1.10 * plot_bound)
- plt.ylim(- (1.10 * plot_bound / 2), (1.10 * plot_bound / 2))
- plt.gca().set_aspect('equal', adjustable='box')
- plt.grid(axis='both', linestyle=':', linewidth=1)
- plt.show()
- return None
-
-
def main():
return None
Copyright 2019--2024 Marius PETER