summaryrefslogtreecommitdiff
path: root/creator
diff options
context:
space:
mode:
Diffstat (limited to 'creator')
-rw-r--r--creator/base.py40
-rw-r--r--creator/wing.py50
2 files changed, 50 insertions, 40 deletions
diff --git a/creator/base.py b/creator/base.py
index 2566a6b..603bef7 100644
--- a/creator/base.py
+++ b/creator/base.py
@@ -1,4 +1,5 @@
"""The base.py module contains parent classes for components."""
+
import numpy as np
import sys
import os.path
@@ -11,19 +12,23 @@ logging.basicConfig(filename='log.txt',
class Aircraft:
"""This class tracks all sub-components and is fed to the evaluator."""
- pass
+ def __init__(self, parent):
+ self.parent = parent
class Component:
"""Basic component providing coordinates and tools."""
-
- # TODO: define defaults in separate module
- def __init__(self):
+ def __init__(self, parent, name):
+ self.name = str()
+ self.parent = None
self.x = np.array([])
self.z = np.array([])
- self.material = str()
+ self.material = None
self.mass = float()
+ def __str__(self):
+ return self.name
+
def set_material(self, material):
"""Set the component bulk material."""
self.material = material
@@ -36,23 +41,30 @@ class Component:
print(name)
for k, v in self.__dict__.items():
if type(v) != list:
- print('{}:\n'.format(k), v)
+ print(f'{k}:\n', v)
print(num_of_dashes * '-')
for k, v in self.__dict__.items():
if type(v) == list:
- print('{}:\n'.format(k), np.around(v, round))
+ print(f'{k}:\n', np.around(v, round))
return None
- def info_save(self, save_path, number):
+ def info_save(self,
+ save_path='/home/blendux/Projects/Aircraft_Studio/save'):
"""Save all the object's coordinates (must be full path)."""
- file_name = f'{str(self).lower()}_{number}.txt'
+ file_name = f'{self.name}_info.txt'
full_path = os.path.join(save_path, file_name)
try:
- with open(full_path, 'w') as sys.stdout:
- self.info_print(6)
- # This line required to reset behavior of sys.stdout
- sys.stdout = sys.__stdout__
- logging.debug(f'Successfully wrote to file {full_path}')
+ with open(full_path, 'w') as f:
+ for k, v in self.__dict__.items():
+ if type(v) != list:
+ f.write(f'{k}:\n')
+ f.write(str(v))
+ # print(num_of_dashes * '-')
+ for k, v in self.__dict__.items():
+ if type(v) == list:
+ f.write(f'{k}:\n')
+ f.write(str(v))
+ logging.debug(f'Successfully wrote to file {full_path}')
except IOError:
print(f'Unable to write {file_name} to specified directory.\n',
'Was the full path passed to the function?')
diff --git a/creator/wing.py b/creator/wing.py
index 8178366..59f5bbe 100644
--- a/creator/wing.py
+++ b/creator/wing.py
@@ -11,14 +11,15 @@ Functions:
plot_geom(airfoil): generates a 2D plot of the airfoil & any components.
"""
-import creator.base as base
-
import logging
import numpy as np
from math import sin, cos, atan
import bisect as bi
import matplotlib.pyplot as plt
+import creator.base as base
+import resources.materials as mt
+
class Airfoil(base.Component):
"""This class represents a single NACA airfoil.
@@ -32,23 +33,20 @@ class Airfoil(base.Component):
to 3D CAD packages like SolidWorks, which can import such
geometry as coordinates written in a CSV file.
"""
-
- # TODO: default values in separate module
- def __init__(self, chord, semi_span, material):
- super().__init__()
- # self.x = np.array([])
- # self.z = np.array([])
- # self.chord = chord
- """Create airfoil from its chord and semi-span."""
- self.chord = chord if chord > 20 else 20
- if chord <= 20:
+ def __init__(self,
+ parent,
+ name,
+ chord=68,
+ semi_span=150,
+ material=mt.aluminium):
+ super().__init__(parent, name)
+ if chord > 20:
+ self.chord = chord
+ else:
+ self.chord = 20
logging.debug('Chord too small, using minimum value of 20.')
self.semi_span = semi_span
self.material = material
- self.naca_num = int()
-
- def __str__(self):
- return type(self).__name__
def add_naca(self, naca_num):
"""Generate surface geometry for a NACA airfoil.
@@ -138,22 +136,22 @@ class Airfoil(base.Component):
class Spar(base.Component):
"""Contains a single spar's data."""
- def __init__(self, airfoil, loc_percent, material):
+ def __init__(self, parent, name, loc_percent=0.30, material=mt.aluminium):
"""Set spar location as percent of chord length."""
- super().__init__()
+ super().__init__(parent, name)
super().set_material(material)
self.cap_area = float()
- loc = loc_percent * airfoil.chord
- # bi.bisect_left: returns index of first value in airfoil.x > loc
+ loc = loc_percent * parent.chord
+ # bi.bisect_left: returns index of first value in parent.x > loc
# This ensures that spar geom intersects with airfoil geom.
# Spar upper coordinates
- spar_u = bi.bisect_left(airfoil.x, loc) - 1
- self.x = np.append(self.x, airfoil.x[spar_u])
- self.z = np.append(self.z, airfoil.z[spar_u])
+ spar_u = bi.bisect_left(parent.x, loc) - 1
+ self.x = np.append(self.x, parent.x[spar_u])
+ self.z = np.append(self.z, parent.z[spar_u])
# Spar lower coordinates
- spar_l = bi.bisect_left(airfoil.x[::-1], loc)
- self.x = np.append(self.x, airfoil.x[-spar_l])
- self.z = np.append(self.z, airfoil.z[-spar_l])
+ spar_l = bi.bisect_left(parent.x[::-1], loc)
+ self.x = np.append(self.x, parent.x[-spar_l])
+ self.z = np.append(self.z, parent.z[-spar_l])
return None
def set_cap_area(self, cap_area):
Copyright 2019--2024 Marius PETER