Skip to content

Commit

Permalink
add plot to example
Browse files Browse the repository at this point in the history
  • Loading branch information
ufechner7 committed Sep 17, 2024
1 parent 39f78e1 commit 961a0d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/menu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ options = ["bench = include(\"bench.jl\")",
"bench_4p = include(\"bench_4p.jl\")",
"test_init = include(\"test_init.jl\")",
"plot_cl_cd_plate = include(\"plot_cl_cd_plate.jl\")",
"plot_side_cl = include(\"plot_side_cl.jl\")",
"compare_kps3_kps4 = include(\"compare_kps3_kps4.jl\")",
"reel_out_1p = include(\"reel_out_1p.jl\")",
"reel_out_4p = include(\"reel_out_4p.jl\")",
Expand Down
5 changes: 3 additions & 2 deletions examples/plot_side_cl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ for (i, steering) in pairs(STEERING)
SIDE_CL[i] = side_cl
println("steering: $steering, side_cl: $side_cl")
end
plot(STEERING, SIDE_CL; xlabel="rel_steering [-]", ylabel="side lift coefficient [-]", fig="Side lift coefficient vs steering")

p = plot(STEERING, SIDE_CL; xlabel="rel_steering [-]",
ylabel="side lift coefficient [-]", fig="Side lift coefficient vs steering")
display(p)


0 comments on commit 961a0d1

Please sign in to comment.