![]() |
This module contains subroutines to compute Newmark explicit time marching scheme, external forces \( F^{ext} \), internal forces \( KU \) and boundary traction forces \( C\dot{U} \) of the system \( M\ddot{U} + C\dot{U} + KU = F^{ext} \).
Public Member Functions | |
subroutine, public | newmark_ini () |
This subroutine initializes Newmark time marching scheme at step n+1. More... | |
subroutine, public | newmark_end () |
This subroutine finalizes Newmark time marching scheme at step n+1. More... | |
subroutine, public | compute_internal_forces_order4 (elt_start, elt_end) |
This subroutine computes internal forces \( \int _{\Omega} \boldsymbol{\epsilon}(\mathbf{v}) ^{T} \colon \boldsymbol{\tau} \, d\Omega \) for spectral-elements of order 4. Stress-strain relationship can be linear elastic (general isotropic fourth-order Hooke's law for continuous media) or viscoelastic (memory variables method). More... | |
subroutine, public | compute_internal_forces_order5 (elt_start, elt_end) |
This subroutine computes internal forces \( \int _{\Omega} \boldsymbol{\epsilon}(\mathbf{v}) ^{T} \colon \boldsymbol{\tau} \, d\Omega \) for spectral-elements of order 5. Stress-strain relationship can be linear elastic (general isotropic fourth-order Hooke's law for continuous media) or viscoelastic (memory variables method). More... | |
subroutine, public | compute_internal_forces_order6 (elt_start, elt_end) |
This subroutine computes internal forces \( \int _{\Omega} \boldsymbol{\epsilon}(\mathbf{v}) ^{T} \colon \boldsymbol{\tau} \, d\Omega \) for spectral-elements of order 6. Stress-strain relationship can be linear elastic (general isotropic fourth-order Hooke's law for continuous media) or viscoelastic (memory variables method). More... | |
subroutine, public | compute_absorption_forces () |
This subroutine computes absorption forces \( \int _{\Gamma} \mathbf{v} ^{T} \cdot \mathbf{T} \, d\Gamma \) for any spectral-elements order. A so-called 'P1' explicit paraxial formulation is used to approximate the traction. | |
subroutine, public | compute_external_force () |
This subroutine sets external forces \( F^{ext} \) of the system \( M\ddot{U} + C\dot{U} + KU = F^{ext} \) for double couple and single force point sources. More... | |
Definition at line 127 of file module_solver.f90.
subroutine, public mod_solver::compute_external_force | ( | ) |
Definition at line 1608 of file module_solver.f90.
References mod_source_function::expcos(), mod_source_function::fctanh(), mod_source_function::fctanh_dt(), mod_source_function::gabor(), mod_source_function::ispli3(), mod_source_function::ricker(), and mod_source_function::spiexp().
Referenced by efispec3d().
subroutine, public mod_solver::compute_internal_forces_order4 | ( | integer, intent(in) | elt_start, |
integer, intent(in) | elt_end | ||
) |
elt_start | : first hexahedron element of the loop |
elt_end | : last hexahedron element of the loop |
Definition at line 245 of file module_solver.f90.
Referenced by efispec3d().
subroutine, public mod_solver::compute_internal_forces_order5 | ( | integer, intent(in) | elt_start, |
integer, intent(in) | elt_end | ||
) |
elt_start | : first hexahedron element of the loop |
elt_end | : last hexahedron element of the loop |
Definition at line 648 of file module_solver.f90.
Referenced by efispec3d().
subroutine, public mod_solver::compute_internal_forces_order6 | ( | integer, intent(in) | elt_start, |
integer, intent(in) | elt_end | ||
) |
elt_start | : first hexahedron element of the loop |
elt_end | : last hexahedron element of the loop |
Definition at line 1082 of file module_solver.f90.
Referenced by efispec3d().
subroutine, public mod_solver::newmark_end | ( | ) |
Definition at line 204 of file module_solver.f90.
Referenced by efispec3d().
subroutine, public mod_solver::newmark_ini | ( | ) |
Definition at line 150 of file module_solver.f90.
Referenced by efispec3d().