MPI-AMRVAC  3.1
The MPI - Adaptive Mesh Refinement - Versatile Advection Code
mod_twofl.t
Go to the documentation of this file.
1 module mod_twofl
2 
3 #include "amrvac.h"
4 
6  use mod_functions_bfield, only: mag
8  use mod_twofl_roe
9  use mod_amrvac
10 
11  implicit none
12  public
13 
14 contains
15 
16  subroutine twofl_activate()
17  call twofl_phys_init()
18  call twofl_hllc_init()
19  call twofl_roe_init()
20  end subroutine twofl_activate
21 
22 end module mod_twofl
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 twofl_hllc_init()
Magneto-hydrodynamics module.
Definition: mod_twofl_phys.t:2
subroutine, public twofl_phys_init()
Subroutines for Roe-type Riemann solver for HD.
Definition: mod_twofl_roe.t:2
subroutine, public twofl_roe_init()
Definition: mod_twofl_roe.t:20
subroutine twofl_activate()
Definition: mod_twofl.t:17