We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5295d5 commit 6ea9911Copy full SHA for 6ea9911
examples/cleanup.jl
@@ -0,0 +1,12 @@
1
+
2
+# delete the generated polars
3
+# this might be needed when the software or Julia have been updated
4
5
+file1="data/ram_air_kite_body_info.bin"
6
+file2="data/ram_air_kite_foil_polar.bin"
7
+if isfile(file1)
8
+ rm(file1)
9
+end
10
+if isfile(file2)
11
+ rm(file2)
12
examples/menu.jl
@@ -4,6 +4,7 @@ options = ["rectangular_wing = include(\"rectangular_wing.jl\")",
"ram_air_kite = include(\"ram_air_kite.jl\")",
"stall_model = include(\"stall_model.jl\")",
"bench = include(\"bench.jl\")",
+ "cleanup = include(\"cleanup.jl\")",
"quit"]
function example_menu()
0 commit comments