Closed
Description
The function
function init_sim!(s::RamAirKite;
solver=ifelse(s.set.quasi_static, FBDF(nlsolve=OrdinaryDiffEqNonlinearSolve.NLNewton(relax=0.6)), FBDF()),
adaptive=true, prn=true, precompile=false, remake=false, reload=false, lin_outputs=Num[]
)
should be modified such that:
- the parameter solver is removed; instead, the solver should be created inside of this function, based on the settings in rak.set
- the integrator should be returned
- the doc string should be updated