41 USE deallocate_structures
49 TYPE (type_equilibrium
),
POINTER :: equilibrium(:)
50 TYPE (type_coreprof
),
POINTER :: coreprof(:)
51 TYPE (type_coretransp
),
POINTER :: coretransp(:)
56 REAL(R8),
ALLOCATABLE :: amj(:)
57 REAL(R8),
ALLOCATABLE :: zmj(:)
58 REAL(R8),
ALLOCATABLE :: rho(:)
59 REAL(R8),
ALLOCATABLE :: te(:)
60 REAL(R8),
ALLOCATABLE :: ne(:)
61 REAL(R8),
ALLOCATABLE :: mu(:)
65 REAL(R8) :: ylp, yhagb, hagb, yhatl, hatl
67 REAL(R8),
ALLOCATABLE :: diff_te(:)
68 REAL(R8),
ALLOCATABLE :: diff_ti(:,:)
72 INTEGER,
PARAMETER :: nocur = 1
75 INTEGER :: nnucl, inucl
78 INTEGER,
ALLOCATABLE :: nzimp(:)
79 INTEGER :: nneut, ineut
80 INTEGER,
ALLOCATABLE :: ncomp(:)
81 INTEGER,
ALLOCATABLE :: ntype(:)
87 nrho =
SIZE (coreprof(1)%rho_tor, dim=1)
88 CALL
get_comp_dimensions(coreprof(1)%COMPOSITIONS, nnucl, nion, nimp, nzimp, nneut, ntype, ncomp)
94 call deallocate_cpo(coretransp(1)%compositions)
95 CALL copy_cpo(coreprof(1)%compositions, coretransp(1)%compositions)
99 ALLOCATE ( amj(nion) )
100 ALLOCATE ( zmj(nion) )
102 ALLOCATE ( rho(nrho) )
103 ALLOCATE ( te(nrho) )
104 ALLOCATE ( ne(nrho) )
105 ALLOCATE ( mu(nrho) )
107 ALLOCATE ( diff_te(nrho) )
108 ALLOCATE ( diff_ti(nrho,nion) )
113 time = coreprof(1)%time
115 btor = coreprof(1)%toroid_field%b0
117 rho = coreprof(1)%rho_tor
119 te = coreprof(1)%te%value / 1.e3_r8
120 ne = coreprof(1)%ne%value / 1.e19_r8
122 mu = 1.0_r8 / coreprof(1)%profiles1d%q%value
130 inucl = coreprof(1)%COMPOSITIONS%IONS(iion)%nucindex
132 amj(iion) = coreprof(1)%COMPOSITIONS%NUCLEI(inucl)%amn
133 zmj(iion) = coreprof(1)%COMPOSITIONS%IONS(iion)%zion
154 IF ( irho.EQ.1 )
THEN
156 yhagb = 0.32_r8 * sqrt(amj(iion)) / btor**2 / zmj(iion)
158 ylp = yhagb / (rho(irho)-rho(irho-1)) * &
159 abs(te(irho)-te(irho-1)) / (te(irho)+te(irho-1))
161 hagb = ylp*te(irho) * sqrt(te(irho))
180 yhatl = 0.5_r8 * roc / btor
182 ylp = yhatl / (rho(irho)-rho(irho-1)) * &
183 abs(ne(irho)*te(irho)-ne(irho-1)*te(irho-1)) / (ne(irho)+ne(irho-1))
185 hatl = ylp / mu(irho)**2
194 diff_te(irho) = hatl + hagb
195 diff_ti(irho,iion) = 2.0_r8 * hatl + hagb
205 coretransp(1)%time = time
207 coretransp(1)%VALUES(1)%rho_tor = rho
209 coretransp(1)%VALUES(1)%sigma = 0.e0_r8
211 coretransp(1)%VALUES(1)%te_transp%diff_eff = diff_te
212 coretransp(1)%VALUES(1)%te_transp%vconv_eff = 0.e0_r8
214 coretransp(1)%VALUES(1)%ni_transp%diff_eff = 0.e0_r8
215 coretransp(1)%VALUES(1)%ni_transp%vconv_eff = 0.e0_r8
217 coretransp(1)%VALUES(1)%ti_transp%diff_eff = diff_ti
218 coretransp(1)%VALUES(1)%ti_transp%vconv_eff = 0.e0_r8
220 coretransp(1)%VALUES(1)%vtor_transp%diff_eff = 0.e0_r8
221 coretransp(1)%VALUES(1)%vtor_transp%vconv_eff = 0.e0_r8
234 DEALLOCATE ( diff_te )
235 DEALLOCATE ( diff_ti )
238 if (
allocated(ncomp))
DEALLOCATE ( ncomp )
239 if (
allocated(ntype))
DEALLOCATE ( ntype )
subroutine get_comp_dimensions(COMPOSITIONS, NNUCL, NION, NIMP, NZIMP, NNEUT, NTYPE, NCOMP)
This module contains routines for allocation/deallocation if CPOs used in ETS.
subroutine gb_transport(EQUILIBRIUM, COREPROF, CORETRANSP)
subroutine allocate_coretransp_cpo(NSLICE, NRHO, NNUCL, NION, NIMP, NZIMP, NNEUT, NTYPE, NCOMP, CORETRANSP)
This routine allocates CORETRANSP CPO.