blob: a6e75a3d38467d53ad27ac234f39ea223464fc25 (
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
|
# This file is part of Marius Peter's airfoil analysis package (this program).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import creator
import random
import time
start_time = time.time()
CHORD_LENGTH = 40
SEMI_SPAN = 200
POP_SIZE = 1
SAVE_PATH = 'C:/Users/blend/github/UCLA_MAE_154B/save'
def main():
# Create coordinate system specific to airfoil dimensions.
creator.Coordinates(CHORD_LENGTH, SEMI_SPAN)
# Interate through all wings in population.
for _ in range(1, POP_SIZE + 1):
# Create airfoil instance
af = creator.Airfoil()
# Define NACA airfoil coordinates
af.naca(2412)
# Print coordinates of af to terminal
af.print_coord(4)
# Create spar instance
af.spar = creator.Spar()
# Define the spar coordinates
af.spar.add_spar(af.coordinates, 'aluminium', 0.15)
# Print coordinates of af.spar to terminal
af.spar.print_coord(4)
# Plot components with matplotlib
creator.plot(af, af.spar)
# Save component coordinates
af.save_coord(SAVE_PATH)
af.spar.save_coord(SAVE_PATH)
# Print final execution time
print("--- %s seconds ---" % (time.time() - start_time))
if __name__ == '__main__':
main()
|