Does DifferentialEquations.jl allow to define a split second order problem? Thx!
It does not. You can use SplitODEProblem on second order ODEs that have been lowered to first order form, or you can use SecondOrderODEProblem. In the future this could change, but for now we do not have split solvers that specialize on second order form.
I understand.
What is typically lost in lowering second order ODEs to first order form?
Suppose solving a semi-linear first-order problem in split form (i.e. using a variant of IMEX). Suppose furthermore imposing a direct solution method (i.e. a variant of LU factorization) as solver for the linear part. Can the LU factorization be placed prior to the time-stepping loop?
Thx.
Just some potential performance. Nystrom methods can be a bit more performant.
You can inline it into f
.
Right. Thanks again.