ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
calculate_globals.f90
Go to the documentation of this file.
1 SUBROUTINE calculate_globals (GEOMETRY, PROFILES, SOURCES, GLOBAL, DIAG)
2 !-------------------------------------------------------!
3 ! This routine calculates global plasma !
4 ! parameters based on profiles of plasma !
5 ! parameters and equilibrium quantities. !
6 !-------------------------------------------------------!
7 ! Source: --- !
8 ! Developers: D.Kalupin !
9 ! Kontacts: Denis.Kalupin@euro-fusion.org !
10 ! !
11 ! Comments: --- !
12 ! !
13 !-------------------------------------------------------!
14 
15 
16  USE itm_types
17  USE itm_constants
18  USE ets_plasma
19  USE ets_math
20 
21  IMPLICIT NONE
22 
23 
24 ! +++ Internal Transport Solver derived types:
25  TYPE (magnetic_geometry) :: geometry !contains all geometry quantities
26  TYPE (plasma_profiles) :: profiles !contains profiles of plasma parameters
27  TYPE (sources_and_sinks) :: sources !contains profiles of sources
28  TYPE (global_param) :: global !contains global plasma parameters
29  TYPE (diagnostic) :: diag !contains error messages and warnings
30 
31 ! +++ Temporary functions:
32  REAL(R8), DIMENSION(PROFILES%NRHO) :: fun, intfun
33  INTEGER :: nrho
34 
35 
36  nrho = geometry%NRHO
37 
38  fun = geometry%VPR * profiles%CURR_PAR / 2.0e0_r8 / itm_pi * geometry%BGEO / geometry%FDIA**2
39  CALL integr_fun(nrho, geometry%RHO, fun, intfun)
40  global%CURRENT = intfun(nrho) * geometry%FDIA(nrho)
41 
42 
43  fun = geometry%VPR * (sources%CURR_EXP + sources%CURR_IMP * profiles%PSI) / 2.0e0_r8 / itm_pi * geometry%BGEO / geometry%FDIA**2
44  CALL integr_fun(nrho, geometry%RHO, fun, intfun)
45  global%CURRENT_NI = intfun(nrho) * geometry%FDIA(nrho)
46 
47  fun = profiles%QOH * geometry%VPR
48  CALL integr_fun(nrho, geometry%RHO, fun, intfun)
49  global%QOH = intfun(nrho)
50 
51  global%VLOOP = profiles%PSI(nrho)-profiles%PSIM(nrho) + 2.0_r8*itm_pi*geometry%BGEO*geometry%RHO_BND*geometry%RHO_BND_PRIME/profiles%QSF(nrho)
52 
53 
54  RETURN
55 
56 END SUBROUTINE calculate_globals
57 !-------------------------------------------------------!
58 !-------------------------------------------------------!
subroutine profiles(p0, rbphi, dp0, drbphi, a)
Definition: profiles.f90:1
subroutine fun(X, F)
Definition: Ev2.f:10
subroutine calculate_globals(GEOMETRY, PROFILES, SOURCES, GLOBAL, DIAG)
subroutine integr_fun(N, X, Y, INTY)
Definition: ets_math.f90:63
The module declares types of variables used in ETS (transport code)
Definition: ets_plasma.f90:8