ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_SPITZER_resistivity.f90
Go to the documentation of this file.
1 !-------------------------------------------------------!
2 !-------------------------------------------------------!
3 
4  SUBROUTINE fc2k_spitzer_resistivity (COREPROF_IN, CORETRANSP_OUT)
5 
6 !-------------------------------------------------------!
7 ! This routine is the interface used by the !
8 ! ETS workflow to the routine calculating !
9 ! Spitzer resistivity !
10 !-------------------------------------------------------!
11 ! Source: --- !
12 ! Developers: D.Kalupin !
13 ! Kontacts: Denis.Kalupin@efda.org !
14 ! !
15 ! Comments: output CORETRANSP CPO is !
16 ! allocated inside the module !
17 ! !
18 !-------------------------------------------------------!
19 
20  USE itm_types
21  USE euitm_schemas
22  USE spitzer
23 
24 
25  IMPLICIT NONE
26 
27 ! +++ CPO types:
28  TYPE (type_coreprof), POINTER :: coreprof_in(:) !input CPO with profiles
29  TYPE (type_coretransp), POINTER :: coretransp_out(:) !output CPO with transport (SIGMA)
30 
31  CALL spitzer_resistivity(coreprof_in, coretransp_out)
32 
33  RETURN
34 
35  END SUBROUTINE fc2k_spitzer_resistivity
36 !-------------------------------------------------------!
37 !-------------------------------------------------------!
subroutine spitzer_resistivity(COREPROF_IN, CORETRANSP_OUT)
Definition: spitzer.f90:7
subroutine fc2k_spitzer_resistivity(COREPROF_IN, CORETRANSP_OUT)