I have equations like this:
wl[n]= w[n] + Δx*v[n]
ϕl[n]= ϕ[n] + Δx*ρ[n]
ρl[n] = ρ[n] - Δt*fρ(ρ,v,w,n)
vl[n] = v[n] - Δt*fv(ρ,v,w,Δx,n)
Can I use ODE solvers to do it in time, then in space. Or, else, is there a Julia package that can help me to get these equations to be unconditionally stable?