ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
ets_wrapper_etaigb.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
7 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
9 
10  use euitm_schemas
11  implicit none
12 
13 contains
14 
15  subroutine etaigb_wrapper(eq, coreprof, coretransp)
16 
17  use xml_file_reader
18 
19  implicit none
20 
21  TYPE (type_equilibrium), pointer :: eq(:)
22  TYPE (type_coreprof), pointer :: coreprof(:)
23  TYPE (type_coretransp), pointer :: coretransp(:)
24  type (type_param), save :: code_parameters
25  logical, save :: first = .true.
26 
27  interface
28  subroutine etaigb(eq, coreprof, coretransp, code_parameters)
29  use euitm_schemas
30  IMPLICIT NONE
31  type (type_equilibrium), pointer :: eq(:)
32  type (type_coreprof), pointer :: coreprof(:)
33  type (type_coretransp), pointer :: coretransp(:)
34  type (type_param) :: code_parameters
35  end subroutine etaigb
36  end interface
37 
38  if(first) then
39  call fill_param(code_parameters, 'XML/etaigb.xml', '', 'XML/etaigb.xsd')
40  first=.false.
41  endif
42 
43  CALL etaigb(eq, coreprof, coretransp, code_parameters)
44 
45  return
46 
47  end subroutine etaigb_wrapper
48 
49 end module ets_wrapper_etaigb
subroutine eq(pcequi, psicon, ncequi, nstep, ngrid,
Definition: Eq_m.f:310
subroutine etaigb(eq, coreprof, coretransp, code_parameters)
Definition: etaigb.F90:1
wrapper for ETAIGB
subroutine etaigb_wrapper(eq, coreprof, coretransp)