ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_gausian_sources.f90
Go to the documentation of this file.
1 !-------------------------------------------------------!
2 !-------------------------------------------------------!
3 
4  SUBROUTINE fc2k_gausian_sources (COREPROF, EQUILIBRIUM, CORESOURCE, code_parameters)
5 
6 !-------------------------------------------------------!
7 ! This routine provides dummy source for the !
8 ! ETS workflow. !
9 !-------------------------------------------------------!
10 ! Source: --- !
11 ! Developers: D.Kalupin !
12 ! Kontacts: Denis.Kalupin@efda.org !
13 ! !
14 ! Comments: input parameter list is specified !
15 ! in "source_dummy.xml" file. !
16 ! !
17 ! output CORESOURCE CPO is !
18 ! allocated inside the module !
19 ! !
20 !-------------------------------------------------------!
21 
22 
23  USE itm_types
24  USE euitm_schemas
25  USE gausian_src
26 
27 
28  IMPLICIT NONE
29 
30 
31  INTEGER :: ifail
32 
33 
34 ! +++ CPO derived types:
35  TYPE (type_equilibrium), POINTER :: equilibrium(:) !input CPO with geometry quantities from previous time
36  TYPE (type_coreprof), POINTER :: coreprof(:) !input CPO with internal ETS parameters profiles from previous time
37  TYPE (type_coresource), POINTER :: coresource(:) !output CPO with sources
38  TYPE (type_param) :: code_parameters
39 
40 
41  CALL gausian_sources(coreprof, equilibrium, coresource, code_parameters)
42 
43 
44  RETURN
45 
46 
47  END SUBROUTINE fc2k_gausian_sources
48 
49 !-------------------------------------------------------!
50 !-------------------------------------------------------!
51 
52 
53 
subroutine fc2k_gausian_sources(COREPROF, EQUILIBRIUM, CORESOURCE, code_parameters)
subroutine gausian_sources(COREPROF, EQUILIBRIUM, CORESOURCE, code_parameters)
Definition: gausian_src.f90:8