summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Peter <blendoit@gmail.com>2019-06-06 16:55:34 -0700
committerMarius Peter <blendoit@gmail.com>2019-06-06 16:55:34 -0700
commit4de483e2b6b5e081e7c0594ec3169459046c74f2 (patch)
tree04c74530fc421b7a3aa611b1e25a6bcac8dee28e
parentee69827c8efa1b563897e37a5ed220c7fadbb2e3 (diff)
parent85ab9065f3aa9a0c014b6b13992c83420ee4dffd (diff)
Merge branch 'master' of https://github.com/Blendoit/UCLA_MAE_154B
-rw-r--r--README.md6
-rw-r--r--evaluate.py16
-rw-r--r--main.py45
3 files changed, 6 insertions, 61 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..44a5489
--- /dev/null
+++ b/README.md
@@ -0,0 +1,6 @@
+# UCLA_MAE_154B
+UCLA Spring 2019, MAE 154B
+
+Code enables the creation of NACA airfoils;
+the evaluation of the airfoil's structural properties;
+the optimization via genetic algorithm of a population of airfoils, usign standard GA algorithms.
diff --git a/evaluate.py b/evaluate.py
deleted file mode 100644
index 4065c5a..0000000
--- a/evaluate.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# 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 airfoil as af
diff --git a/main.py b/main.py
deleted file mode 100644
index 7a5a20b..0000000
--- a/main.py
+++ /dev/null
@@ -1,45 +0,0 @@
-# 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 = 100
-SEMI_SPAN = 200
-
-POP_SIZE = 1
-SAVE_PATH = 'C:/Users/blend/Desktop/python/airfoils'
-
-
-def main():
- # Create coordinate system specific to airfoil dimensions.
- creator.Coordinates(CHORD_LENGTH, SEMI_SPAN)
- for airfoil_number in range(1, POP_SIZE + 1):
- foo = creator.Airfoil()
- foo.naca(2412)
- # foo.print_geometry(4)
- foo.spar = creator.Spar()
- foo.spar.add_spar(foo.coordinates, 'aluminium', 0.15)
- creator.plot(foo, foo.spar)
- # foo.save_values(airfoil_number, SAVE_PATH)
-
- print("--- %s seconds ---" % (time.time() - start_time))
-
-
-if __name__ == '__main__':
- main()
Copyright 2019--2024 Marius PETER