Skip to content

Commit bd5ff47

Browse files
committed
Fix example
1 parent c7a33a4 commit bd5ff47

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

examples/ram_air_kite.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using ControlPlots
22
using VortexStepMethod
33
using LinearAlgebra
44

5-
PLOT = false
5+
PLOT = true
66
USE_TEX = false
77
DEFORM = false
88
LINEARIZE = true

src/solver.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,8 +660,7 @@ function linearize(solver::Solver, body_aero::BodyAerodynamics, wing::RamAirWing
660660
jac = zeros(length(results), length(y))
661661
backend = AutoFiniteDiff(absstep=1e-3, relstep=1e-3)
662662
prep = prepare_jacobian(calc_results!, results, backend, y)
663-
println("jac")
664-
@time jacobian!(calc_results!, results, jac, prep, backend, y)
663+
jacobian!(calc_results!, results, jac, prep, backend, y)
665664

666665
calc_results!(results, y)
667666
return jac, results

0 commit comments

Comments
 (0)