MPI-AMRVAC 3.1
The MPI - Adaptive Mesh Refinement - Versatile Advection Code (development version)
Loading...
Searching...
No Matches
mod_mhd.t
Go to the documentation of this file.
1module mod_mhd
6
7 use mod_amrvac
8
9 implicit none
10 public
11
12contains
13
14 subroutine mhd_activate()
15 call mhd_phys_init()
16 call mhd_hllc_init()
17 call mhd_roe_init()
18 end subroutine mhd_activate
19
20end module mod_mhd
This module contains modules that users could want to have in their mod_usr.t code,...
Definition mod_amrvac.t:3
integer, dimension(:), allocatable, public mag
Indices of the magnetic field.
subroutine, public mhd_hllc_init()
Magneto-hydrodynamics module.
Definition mod_mhd_phys.t:2
subroutine, public mhd_phys_init()
Subroutines for Roe-type Riemann solver for MHD.
Definition mod_mhd_roe.t:2
subroutine, public mhd_roe_init()
Definition mod_mhd_roe.t:18
subroutine mhd_activate()
Definition mod_mhd.t:15