ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_emeq.F90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
3 
4  SUBROUTINE fc2k_emeq (EQUILIBRIUM_IN, EQUILIBRIUM_OUT, code_parameters)
5 
6  !-------------------------------------------------------!
7  ! This routine provides interface between ETS !
8  ! and three moment equilibrium solver. !
9  !-------------------------------------------------------!
10  ! Source: --- !
11  ! Developers: D.Kalupin, G.Pereverzev !
12  ! Kontacts: D.Kalupin@fz-juelich.de !
13  ! !
14  ! Comments: created for V&V between ETS and !
15  ! ASTRA !
16  ! !
17  !-------------------------------------------------------!
18 
19 
20  USE itm_types
21  USE itm_constants
22  USE euitm_schemas
23  USE emeq
24 
25 
26  !-------------------------------------------------------!
27  IMPLICIT NONE
28 
29 ! +++ CPO derived types:
30  TYPE (type_equilibrium), POINTER :: equilibrium_in(:) !input CPO with geometry quantities from previous time
31  TYPE (type_equilibrium), POINTER :: equilibrium_out(:) !output CPO with geometry quantities from previous iteration
32  TYPE (type_param) :: code_parameters
33 
34 
35 
36 
37  CALL emeq_e3m(equilibrium_in, equilibrium_out, code_parameters)
38 
39 
40  RETURN
41 
42 
43 
44  END SUBROUTINE fc2k_emeq
45  ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
46  ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
47 
48 
49 
50 
51 
52 
53 
54 
55 
subroutine emeq_e3m(EQUILIBRIUM_IN, EQUILIBRIUM_OUT, code_parameters)
Definition: emeq.f90:18
EMEQ_E3M.
Definition: emeq.f90:11
subroutine fc2k_emeq(EQUILIBRIUM_IN, EQUILIBRIUM_OUT, code_parameters)
Definition: fc2k_emeq.F90:4