MPI-AMRVAC  3.0
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 
7  use mod_twofl_roe
8  use mod_twofl_ppm
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  call twofl_ppm_init()
21  end subroutine twofl_activate
22 
23 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
subroutine, public twofl_hllc_init()
Magneto-hydrodynamics module.
Definition: mod_twofl_phys.t:2
subroutine, public twofl_phys_init()
subroutine, public twofl_ppm_init()
Definition: mod_twofl_ppm.t:14
Subroutines for Roe-type Riemann solver for HD.
Definition: mod_twofl_roe.t:2
subroutine, public twofl_roe_init()
Definition: mod_twofl_roe.t:19
subroutine twofl_activate()
Definition: mod_twofl.t:17