summaryrefslogtreecommitdiff
path: root/creator/base.py
blob: ad4c4432d9bf543e7d44e2ed875da31d88dc14e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
"""The base.py module contains parent classes for components."""

import numpy as np
import sys
import os.path
import logging

logging.basicConfig(filename='log_base.txt',
                    level=logging.DEBUG,
                    format='%(asctime)s - %(levelname)s - %(message)s')


class Aircraft:
    """This class tracks all sub-components and is fed to the evaluator."""
    def __init__(self, evaluator, name):
        evaluator.aircrafts.append(self)
        self.evaluator = evaluator
        self.name = name
        self.fuselage = None
        self.propulsion = None
        self.wing = None
        self.results = {}

    def __str__(self):
        return self.name


class Component:
    """Basic component providing coordinates, tools and a component tree."""
    def __init__(self, parent, name):
        self.parent = parent
        self.name = name
        self.x = np.array([])
        self.z = np.array([])
        self.y = np.array([])
        self.material = None
        self.mass = float()

    def __str__(self):
        return self.name

    def info_print(self, round):
        """Print all the component's coordinates to the terminal."""
        name = f'    CREATOR DATA FOR {str(self).upper()}    '
        num_of_dashes = len(name)
        print(num_of_dashes * '-')
        print(name)
        for k, v in self.__dict__.items():
            if type(v) is not np.ndarray:
                print(f'{k}:\n', v)
                print(num_of_dashes * '-')
        for k, v in self.__dict__.items():
            if type(v) is np.ndarray:
                print(f'{k}:\n', np.around(v, round))
        return None

    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'{self.name}_info.txt'
        full_path = os.path.join(save_path, file_name)
        try:
            with open(full_path, 'w') as f:
                for k, v in self.__dict__.items():
                    if type(v) is not np.ndarray:
                        f.write(f'{k}=\n')
                        f.write(str(v))
                        f.write("\n")
                        # print(num_of_dashes * '-')
                for k, v in self.__dict__.items():
                    if type(v) is np.ndarray:
                        f.write(f'{k}=\n')
                        f.write(str(v))
                        f.write("\n")
            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?')
        return None
Copyright 2019--2024 Marius PETER