MPI-AMRVAC  3.1
The MPI - Adaptive Mesh Refinement - Versatile Advection Code
mod_hd.t
Go to the documentation of this file.
1 !> Module containing all hydrodynamics
2 module mod_hd
3  use mod_hd_phys
4  use mod_hd_hllc
5  use mod_hd_roe
6 
7  use mod_amrvac
8 
9  implicit none
10  public
11 
12 contains
13 
14  subroutine hd_activate()
15  call hd_phys_init()
16  call hd_hllc_init()
17  call hd_roe_init()
18  end subroutine hd_activate
19 
20 end module mod_hd
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_hd_hllc.t:2
subroutine, public hd_hllc_init()
Definition: mod_hd_hllc.t:13
Hydrodynamics physics module.
Definition: mod_hd_phys.t:2
subroutine, public hd_phys_init()
Initialize the module.
Definition: mod_hd_phys.t:157
Module with Roe-type Riemann solver for hydrodynamics.
Definition: mod_hd_roe.t:2
subroutine, public hd_roe_init()
Definition: mod_hd_roe.t:19
Module containing all hydrodynamics.
Definition: mod_hd.t:2
subroutine hd_activate()
Definition: mod_hd.t:15