ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_workaround_analytics.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
15 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
16 
17 subroutine analyticalplasma(TIME,COREPROF_in,EQUILIBRIUM,COREPROF,CORETRANSP,CORESOURCE,COREIMPUR,code_parameters)
18 
19  use itm_types
20  USE euitm_schemas
21  use analytics1
22 
23  implicit none
24 
25 !input arguments
26  REAL (R8) :: time
27  TYPE (type_coreprof), POINTER :: coreprof_in(:)
28 !output arguments
29  TYPE (type_equilibrium),POINTER :: equilibrium(:)
30  TYPE (type_coreprof), POINTER :: coreprof(:)
31  TYPE (type_coretransp), POINTER :: coretransp(:)
32  TYPE (type_coresource), POINTER :: coresource(:)
33  TYPE (type_coreimpur), POINTER :: coreimpur(:) !CPO with impurities
34  type (type_param) :: code_parameters
35 
36  call analytical_plasma(time,coreprof_in,equilibrium,coreprof,coretransp,coresource,coreimpur,code_parameters)
37 
38  return
39 
40 end subroutine analyticalplasma
subroutine analyticalplasma(TIME, COREPROF_in, EQUILIBRIUM, COREPROF, CORETRANSP, CORESOURCE, COREIMPUR, code_parameters)
Module to cope with problems in fc2k.
subroutine analytical_plasma(TIME, COREPROF_in, EQUILIBRIUM, COREPROF_ANALYTIC, CORETRANSP, CORESOURCE, COREIMPUR, code_parameters)
This routine manufactures the solution for the set of transport equations describing the main plasma...
Definition: analytics1.f90:25
Module for manufacture of a test case for the ETS.
Definition: analytics1.f90:8