KnutAM / FESolvers.jl

Solvers for Ferrite.jl problems
https://knutam.github.io/FESolvers.jl/dev
MIT License
3 stars 0 forks source link

Time stepping #6

Open koehlerson opened 2 years ago

koehlerson commented 2 years ago

We currently only do quasi time stepping, which simplifies a lot of things. For actual time stepping we need further things like:

First try to use DiffEq with Ferrite.jl stuff can be seen here

Most things are already handled by DiffEq and so we should reuse that. @termi-official

KnutAM commented 2 years ago

Yes, absolutely. We can also consider for dynamics problems, the equation (for linear elasticity) is $M\ddot{u}+Ku=f(t)$ as compared to the DAE in NS example... Currently, we are only supporting quasi-static problems and it would of course be nice to support dynamics too!