The idea is to create a PDESolution(prob,discretizer,res) that takes your problem, your discretizer, and your result. This interface can then have common actions like plot, get a certain variable at a certain interval, and so on.
It would also be great if the interface could make base manipulation to a solution similar to the TimeseriesSolution:
sol.y(0.1)
sol.approx(dx)
plot(sol)
sol.res
This would provide SciML with a standard way of analyzing PDEs – regardless of the method used to solve it.
The idea is to create a
PDESolution(prob,discretizer,res)
that takes your problem, your discretizer, and your result. This interface can then have common actions like plot, get a certain variable at a certain interval, and so on.It would also be great if the interface could make base manipulation to a solution similar to the
TimeseriesSolution
:This would provide SciML with a standard way of analyzing PDEs – regardless of the method used to solve it.