We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5851a43 commit 7a771f2Copy full SHA for 7a771f2
src/liftingline/optimization.jl
@@ -155,6 +155,7 @@ function run_liftingline(;
155
156
distributions = false, # Whether to output spanwise distributions
157
158
+ modify_liftingline! = identity, # Provide a function for manual customization of LiftingLine if needed
159
cache = Dict(), # Model cache
160
161
plot_convergence = false, # Whether to plot solver convergence
@@ -266,6 +267,9 @@ function run_liftingline(;
266
267
if isfinite(ground_distance)
268
set_ground!(ll, ground_distance)
269
end
270
+
271
+ # Expose LiftingLine to user for further customization
272
+ modify_liftingline!(ll)
273
274
# Run solver
275
result, solver_cache = solve(ll, Uinfs;
0 commit comments