easifem / classes

Expandable And Scalable Infrastructure for Finite Element Methods, EASIFEM, is [Modern Fortran](https://fortran-lang.org) framework for solving partial differential equations (PDEs) using finite element methods. EASIFEM "eases" the efforts to develop scientific programs in Fortran.
https://www.easifem.com
Other
5 stars 1 forks source link

Updates in SDAlgorithms #442

Open shishiousan opened 7 months ago

shishiousan commented 7 months ago

Implementing some well-known semi discrete time integration schemes

shishiousan commented 7 months ago

now you can set SDAlgoParam_ for HHT alpha and Collocation methods by

TYPE(SDAlgoParam_) :: obj

call obj%HHTAlpha(alpha=alpha, beta=beta, gamma=gamma)

call obj%Collocation(beta=beta, gamma=gamma, theta=theta)

Since the Houbolt method needs a somewhat different structure, its implementation is future work.