IMEX scheme using DifferentialEquations.jl

Hello,
I have a PDE model which contains a stiff viscous term and non-stiff nonlinear convection term. I was wondering if I can exploit the pre-developed solvers in DifferentialEquations.jl to solve the pde (or system of odes after FD discretization) after splitting the problem to 2 part as follows:

du/dt=f(u)+g(u)

I want to solve f(u) with an explicit solver and g(u) with an implicit one. Is that possible, or I should write the integration algorithm myself?

https://docs.sciml.ai/stable/solvers/split_ode_solve/ ?

2 Likes

The link is not working, cm you post active one please?
Thanks

https://diffeq.sciml.ai/stable/types/split_ode_types/

https://diffeq.sciml.ai/stable/solvers/split_ode_solve/

Thanks