Skip to content

Commit 6ea9911

Browse files
committed
add script cleanup
1 parent b5295d5 commit 6ea9911

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

examples/cleanup.jl

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
end

examples/menu.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ options = ["rectangular_wing = include(\"rectangular_wing.jl\")",
44
"ram_air_kite = include(\"ram_air_kite.jl\")",
55
"stall_model = include(\"stall_model.jl\")",
66
"bench = include(\"bench.jl\")",
7+
"cleanup = include(\"cleanup.jl\")",
78
"quit"]
89

910
function example_menu()

0 commit comments

Comments
 (0)