summaryrefslogtreecommitdiff
path: root/evaluator.py
diff options
context:
space:
mode:
authorMarius Peter <blendoit@gmail.com>2019-06-21 22:19:42 -0700
committerMarius Peter <blendoit@gmail.com>2019-06-21 22:19:42 -0700
commit2fd8e6bcfae0e3418daf7e0c48cf10d42e5548a1 (patch)
tree0f9390bef4990e9bb33af910618ba5e7636be1ed /evaluator.py
parent05c69b59e56fec43205543cfe04188b8fd73aab1 (diff)
various inconsistency fix
Diffstat (limited to 'evaluator.py')
-rw-r--r--evaluator.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/evaluator.py b/evaluator.py
index f6d0afc..b0d90fd 100644
--- a/evaluator.py
+++ b/evaluator.py
@@ -60,7 +60,7 @@ class Airfoil:
This function's output is piped to the 'save_data' function below.
'''
- name = ' CREATOR DATA '
+ name = ' EVALUATOR DATA '
num_of_dashes = len(name)
print(num_of_dashes * '-')
@@ -142,13 +142,13 @@ class Airfoil:
(len(x_stringers) * area)
return(x_centroid, z_centroid)
- def get_I_x():
+ def get_I_x(self):
pass
- def get_I_z():
+ def get_I_z(self):
pass
- def get_I_xz():
+ def get_I_xz(self):
pass
def analysis(self):
@@ -216,6 +216,4 @@ class Airfoil:
plt.gca().set_aspect('equal', adjustable='box')
plt.grid(axis='both', linestyle=':', linewidth=1)
plt.show()
- # plt.pause(1)
- # plt.close()
return None
Copyright 2019--2024 Marius PETER