MPI-AMRVAC  3.1
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 
7  use mod_amrvac
8 
9  implicit none
10  public
11 
12 contains
13 
14  subroutine rhd_activate()
15  call rhd_phys_init()
16  call rhd_hllc_init()
17  call rhd_roe_init()
18  end subroutine rhd_activate
19 
20 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:205
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:15