ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
neoclassic2coretransp.f90
Go to the documentation of this file.
1 !-------------------------------------------------------!
2 !-------------------------------------------------------!
3  SUBROUTINE neoclassic2coretransp(NEOCLASSIC, CORETRANSP)
4 !-------------------------------------------------------!
5 ! This routine converts transport data from !
6 ! NEOCLASSIC to CORETRANSP CPO !
7 !-------------------------------------------------------!
8 ! Source: --- !
9 ! Developers: D.Kalupin !
10 ! Kontacts: D.Kalupin@fz-juelich.de !
11 ! !
12 ! Comments: should be udated after NCLASS !
13 ! is available to the ETS !
14 ! !
15 !-------------------------------------------------------!
16 
17 
18  USE euitm_schemas
19  USE itm_constants
20  USE convert
21 
22  IMPLICIT NONE
23 
24  TYPE (type_neoclassic), POINTER :: neoclassic(:)
25  TYPE (type_coretransp), POINTER :: coretransp(:)
26 
27  CALL convert_neoclassic2coretransp(neoclassic, coretransp)
28 
29 
30  RETURN
31 
32 
33  END SUBROUTINE neoclassic2coretransp
34 !-------------------------------------------------------!
35 !-------------------------------------------------------!
Module converts to/from CPOs to ETS types.
Definition: convert.f90:8
subroutine neoclassic2coretransp(NEOCLASSIC, CORETRANSP)
subroutine convert_neoclassic2coretransp(NEOCLASSIC, CORETRANSP)
Definition: convert.f90:676