MPI-AMRVAC  3.0
The MPI - Adaptive Mesh Refinement - Versatile Advection Code
mod_rhd.t
Go to the documentation of this file.
1 !> Module containing all hydrodynamics
2 module mod_rhd
3  use mod_rhd_phys
4  use mod_rhd_hllc
5  use mod_rhd_roe
6  use mod_rhd_ppm
7 
8  use mod_amrvac
9 
10  implicit none
11  public
12 
13 contains
14 
15  subroutine rhd_activate()
16  call rhd_phys_init()
17  call rhd_hllc_init()
18  call rhd_roe_init()
19  call rhd_ppm_init()
20  end subroutine rhd_activate
21 
22 end module mod_rhd
This module contains modules that users could want to have in their mod_usr.t code,...
Definition: mod_amrvac.t:3
Hydrodynamics HLLC module.
Definition: mod_rhd_hllc.t:2
subroutine, public rhd_hllc_init()
Definition: mod_rhd_hllc.t:13
Radiation-Hydrodynamics physics module Module aims at solving the Hydrodynamic equations toghether wi...
Definition: mod_rhd_phys.t:11
subroutine, public rhd_phys_init()
Initialize the module.
Definition: mod_rhd_phys.t:237
Hydrodynamics PPM module.
Definition: mod_rhd_ppm.t:2
subroutine, public rhd_ppm_init()
Definition: mod_rhd_ppm.t:13
Module with Roe-type Riemann solver for hydrodynamics.
Definition: mod_rhd_roe.t:2
subroutine, public rhd_roe_init()
Definition: mod_rhd_roe.t:19
Module containing all hydrodynamics.
Definition: mod_rhd.t:2
subroutine rhd_activate()
Definition: mod_rhd.t:16