Skip to content

Commit c67f5e7

Browse files
committed
fix bug
1 parent 7e42124 commit c67f5e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/bench.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ using LinearAlgebra
9595

9696
for model in models
9797
for aero_model in [:inviscid, (:polar_data, (alphas, cls, cds, cms))]
98-
wing = Wing(n_panels, spanwise_panel_distribution=:linear)
98+
wing = Wing(n_panels, spanwise_panel_distribution=LINEAR)
9999
add_section!(wing,
100-
[0.0, span/2, 0.0], # Left tip LE
100+
[0.0, span/2, 0.0], # Left tip LE
101101
[chord, span/2, 0.0], # Left tip TE
102102
aero_model)
103103
add_section!(wing,
104-
[0.0, -span/2, 0.0], # Right tip LE
104+
[0.0, -span/2, 0.0], # Right tip LE
105105
[chord, -span/2, 0.0], # Right tip TE
106106
aero_model)
107107
body_aero = BodyAerodynamics([wing])

0 commit comments

Comments
 (0)