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 8220ddd commit b3247c4Copy full SHA for b3247c4
examples/ram_air_kite.jl
@@ -24,8 +24,7 @@ if DEFORM
24
end
25
26
# Create solvers
27
-P = length(body_aero.panels)
28
-vsm_solver = Solver{P}(
+vsm_solver = Solver(body_aero;
29
aerodynamic_model_type=VSM,
30
is_with_artificial_damping=false
31
)
src/solver.jl
@@ -117,7 +117,7 @@ sol::VSMSolution = VSMSolution(): The result of calling [solve!](@ref)
117
sol::VSMSolution{P} = VSMSolution(P)
118
119
120
-function Solver(body_aero; kwargs)
+function Solver(body_aero; kwargs...)
121
P = length(body_aero.panels)
122
return Solver{P}(; kwargs...)
123
0 commit comments