MPI-AMRVAC 3.1
The MPI - Adaptive Mesh Refinement - Versatile Advection Code (development version)
Loading...
Searching...
No Matches
mod_rhd.t
Go to the documentation of this file.
1!> Module containing all hydrodynamics
2module mod_rhd
6
7 use mod_amrvac
8
9 implicit none
10 public
11
12contains
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
20end 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()
Radiation-Hydrodynamics physics module Module aims at solving the Hydrodynamic equations toghether wi...
subroutine, public rhd_phys_init()
Initialize the module.
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