MPI-AMRVAC  3.0
The MPI - Adaptive Mesh Refinement - Versatile Advection Code
mod_mhd.t
Go to the documentation of this file.
1 module mod_mhd
2  use mod_mhd_phys
3  use mod_mhd_hllc
4  use mod_mhd_roe
5  use mod_mhd_ppm
6 
7  use mod_amrvac
8 
9  implicit none
10  public
11 
12 contains
13 
14  subroutine mhd_activate()
15  call mhd_phys_init()
16  call mhd_hllc_init()
17  call mhd_roe_init()
18  call mhd_ppm_init()
19  end subroutine mhd_activate
20 
21 end module mod_mhd
This module contains modules that users could want to have in their mod_usr.t code,...
Definition: mod_amrvac.t:3
subroutine, public mhd_hllc_init()
Definition: mod_mhd_hllc.t:12
Magneto-hydrodynamics module.
Definition: mod_mhd_phys.t:2
subroutine, public mhd_phys_init()
Definition: mod_mhd_phys.t:372
subroutine, public mhd_ppm_init()
Definition: mod_mhd_ppm.t:12
Subroutines for Roe-type Riemann solver for MHD.
Definition: mod_mhd_roe.t:2
subroutine, public mhd_roe_init()
Definition: mod_mhd_roe.t:17
Definition: mod_mhd.t:1
subroutine mhd_activate()
Definition: mod_mhd.t:15