chord length

Commit
789a7bc926d498d881bae7be8f36caceec8f1558
Author
Marius Peter <blendoit@gmail.com>
Author date
Committer
Marius Peter <blendoit@gmail.com>
Committer date
main.py
index a8ff5510..84f9d17d 100644..100644
@@ -21,7 +21,7 @@
21 21 import time
22 22 start_time = time.time()
23 23
24 Removed: CHORD_LENGTH = 200
24 Added: CHORD_LENGTH = 100
25 25 SEMI_SPAN = 200
26 26
27 27 POP_SIZE = 1
@@ -58,8 +58,9 @@
58 58 creator.plot(af, af.spar, af.stringer)
59 59
60 60 # Save component coordinates
61 Removed: # af.save_coord(SAVE_PATH)
62 Removed: # af.spar.save_coord(SAVE_PATH)
61 Added: af.save_coord(SAVE_PATH)
62 Added: af.spar.save_coord(SAVE_PATH)
63 Added: af.stringer.save_coord(SAVE_PATH)
63 64
64 65 # Print final execution time
65 66 print("--- %s seconds ---" % (time.time() - start_time))