ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_fillcpos.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
3 SUBROUTINE fc2k_fillcoreprof (COREPROF_DB, COREPROF_GRID, COREFAST_IN, COREPROF_OUT, INTERPOL)
4 
5 !--------------------------------------------------------
6 ! This is FC2K wrapper for FILLCOREPROF !
7 !--------------------------------------------------------
8 
9  USE itm_types
10  USE euitm_schemas
11  USE fill_cpos
12 
13  IMPLICIT NONE
14 
15  INTEGER :: interpol !interpolation index "0"-based on RHO_TOR; all other - based on RHO_TOR_NORM
16 
17  TYPE (type_coreprof), POINTER :: coreprof_grid(:) !input CPO with internal ETS parameters
18  TYPE (type_coreprof), POINTER :: coreprof_out(:) !output CPO with profiles uploaded from the data base
19  TYPE (type_coreprof), POINTER :: coreprof_db(:) !time independent CPO slice
20  TYPE (type_corefast), POINTER :: corefast_in(:) !time independent CPO slice
21 
22 
23  CALL fillcoreprof(coreprof_db, coreprof_grid, corefast_in, coreprof_out, interpol)
24 
25 
26  RETURN
27 
28 END SUBROUTINE fc2k_fillcoreprof
29 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
30 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
31 
32 
33 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
34 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
35 SUBROUTINE fc2k_fillcoreprof2 (COREPROF_DB, COREPROF_GRID, COREFAST_IN, COREPROF_OUT, INTERPOL, integer_params, real_params,&
36  output_flag,diagnostic_info)
37 
38 !--------------------------------------------------------
39 ! This is FC2K wrapper for FILLCOREPROF
40 ! with additional params to enable cut_and_stretch possibility !
41 !--------------------------------------------------------
42 
43  USE itm_types
44  USE euitm_schemas
45  USE fill_cpos
46 
47  IMPLICIT NONE
48 
49  INTEGER :: interpol !interpolation index "0"-based on RHO_TOR; all other - based on RHO_TOR_NORM
50  integer, dimension(1) :: integer_params
51  real(8), dimension(2) :: real_params
52 
53  integer, intent(out) :: output_flag
54  character(len=:), pointer, intent(out) :: diagnostic_info
55  character(len=1024) :: internal_diagnostic_info = ''
56  integer :: lenstring
57 
58  TYPE (type_coreprof), POINTER :: coreprof_grid(:) !input CPO with internal ETS parameters
59  TYPE (type_coreprof), POINTER :: coreprof_out(:) !output CPO with profiles uploaded from the data base
60  TYPE (type_coreprof), POINTER :: coreprof_db(:) !time independent CPO slice
61  TYPE (type_corefast), POINTER :: corefast_in(:) !time independent CPO slice
62 
63  nullify( diagnostic_info )
64  internal_diagnostic_info = ''
65 
66  CALL fillcoreprof2(coreprof_db, coreprof_grid, corefast_in, coreprof_out, interpol,integer_params,real_params,&
67  output_flag,internal_diagnostic_info)
68 
69 
70  lenstring = len(trim(adjustl(internal_diagnostic_info)))
71  IF (lenstring > 0) THEN
72  ALLOCATE (CHARACTER(LEN=LENSTRING) :: diagnostic_info)
73  diagnostic_info = trim(adjustl(internal_diagnostic_info))
74  END IF
75 
76  RETURN
77 
78 END SUBROUTINE fc2k_fillcoreprof2
79 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
80 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
81 
82 
83 
84 
85 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
86 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
87 SUBROUTINE fc2k_fillcoretransp (CORETRANSP_DB, CORETRANSP_GRID, CORETRANSP_OUT, INTERPOL)
88 
89 !--------------------------------------------------------
90 ! This is FC2K wrapper for FILLCORETRANSP !
91 !--------------------------------------------------------
92 
93  USE itm_types
94  USE euitm_schemas
95  USE fill_cpos
96 
97  IMPLICIT NONE
98 
99  INTEGER :: interpol !interpolation index "0"-based on RHO_TOR; all other - based on RHO_TOR_NORM
100 
101  TYPE (type_coretransp), POINTER :: coretransp_grid(:) !input CPO with internal parameters
102  TYPE (type_coretransp), POINTER :: coretransp_out(:) !output CPO with profiles uploaded from the data base
103  TYPE (type_coretransp), POINTER :: coretransp_db(:) !time independent CPO slice
104 
105 
106  CALL fillcoretransp(coretransp_db, coretransp_grid, coretransp_out, interpol)
107 
108 
109  RETURN
110 
111 END SUBROUTINE fc2k_fillcoretransp
112 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
113 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
114 
115 
116 
117 
118 
119 
120 
121 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
122 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
123 SUBROUTINE fc2k_fillcoresource (CORESOURCE_DB, CORESOURCE_GRID, CORESOURCE_OUT, INTERPOL)
124 
125 !--------------------------------------------------------
126 ! This is FC2K wrapper for FILLCORESOURCE !
127 !--------------------------------------------------------
128 
129  USE itm_types
130  USE euitm_schemas
131  USE fill_cpos
132 
133  IMPLICIT NONE
134 
135  INTEGER :: interpol !interpolation index "0"-based on RHO_TOR; all other - based on RHO_TOR_NORM
136 
137  TYPE (type_coresource), POINTER :: coresource_grid(:) !input CPO with internal parameters
138  TYPE (type_coresource), POINTER :: coresource_out(:) !output CPO with profiles uploaded from the data base
139  TYPE (type_coresource), POINTER :: coresource_db(:) !time independent CPO slice
140 
141 
142  CALL fillcoresource(coresource_db, coresource_grid, coresource_out, interpol)
143 
144 
145  RETURN
146 
147 END SUBROUTINE fc2k_fillcoresource
148 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
149 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
150 
151 
152 
153 
154 
155 
156 
157 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
158 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
159 SUBROUTINE fc2k_fillcoreimpur (COREIMPUR_DB, COREIMPUR_GRID, COREIMPUR_OUT, INTERPOL)
160 
161 !--------------------------------------------------------
162 ! This is FC2K wrapper for FILLCOREIMPUR !
163 !--------------------------------------------------------
164 
165  USE itm_types
166  USE euitm_schemas
167  USE fill_cpos
168 
169  IMPLICIT NONE
170 
171  INTEGER :: interpol !interpolation index "0"-based on RHO_TOR; all other - based on RHO_TOR_NORM
172 
173  TYPE (type_coreimpur), POINTER :: coreimpur_grid(:) !input CPO with internal parameters
174  TYPE (type_coreimpur), POINTER :: coreimpur_out(:) !output CPO with sources uploaded from the data base
175  TYPE (type_coreimpur), POINTER :: coreimpur_db(:) !time independent CPO slice
176 
177 
178  CALL fillcoreimpur(coreimpur_db, coreimpur_grid, coreimpur_out, interpol)
179 
180 
181  RETURN
182 
183 END SUBROUTINE fc2k_fillcoreimpur
184 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
185 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
186 
187 
188 SUBROUTINE fc2k_fillcorefast (COREFAST_DB, COREFAST_GRID, COREFAST_OUT, INTERPOL)
189 
190 !--------------------------------------------------------
191 ! This is FC2K wrapper for FILLCOREFAST !
192 !--------------------------------------------------------
193 
194  USE itm_types
195  USE euitm_schemas
196  USE fill_cpos
197 
198  IMPLICIT NONE
199 
200  INTEGER :: interpol !interpolation index "0"-based on RHO_TOR; all other - based on RHO_TOR_NORM
201 
202  TYPE (type_corefast), POINTER :: corefast_grid(:) !input CPO with internal ETS parameters
203  TYPE (type_corefast), POINTER :: corefast_out(:) !output CPO with profiles uploaded from the data base
204  TYPE (type_corefast), POINTER :: corefast_db(:) !time independent CPO slice
205 
206 
207  CALL fillcorefast(corefast_db, corefast_grid, corefast_out, interpol)
208 
209 
210  RETURN
211 
212 END SUBROUTINE fc2k_fillcorefast
213 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
214 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
215 
216 
217 
218 
219 
220 
221 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
222 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
223 SUBROUTINE fc2k_fillequilibrium (EQUILIBRIUM_DB, EQUILIBRIUM_GRID, EQUILIBRIUM_OUT, INTERPOL)
224 
225 !--------------------------------------------------------
226 ! This is FC2K wrapper for FILLEQUILIBRIUM !
227 !--------------------------------------------------------
228 
229  USE itm_types
230  USE euitm_schemas
231  USE fill_cpos
232 
233  IMPLICIT NONE
234 
235  INTEGER :: interpol !interpolation index "0"-based on RHO_TOR; all other - based on RHO_TOR_NORM
236 
237  TYPE (type_equilibrium), POINTER :: equilibrium_grid(:) !input CPO with internal parameters
238  TYPE (type_equilibrium), POINTER :: equilibrium_out(:) !output CPO with sources uploaded from the data base
239  TYPE (type_equilibrium), POINTER :: equilibrium_db(:) !time independent CPO slice
240 
241 
242  CALL fillequilibrium(equilibrium_db, equilibrium_grid, equilibrium_out, interpol)
243 
244 
245  RETURN
246 
247 
248 END SUBROUTINE fc2k_fillequilibrium
249 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
250 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
251 
252 
253 
254 
255 
256 
257 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
258 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
259 SUBROUTINE fc2k_filltoroidfield (TOROIDFIELD, TOROIDFIELD_GRID, TOROIDFIELD_OUT)
260 
261 !--------------------------------------------------------
262 ! This is FC2K wrapper for FILLTOROIDFIELD !
263 !--------------------------------------------------------
264 
265  USE itm_types
266  USE euitm_schemas
267  USE fill_cpos
268 
269  IMPLICIT NONE
270 
271  TYPE (type_toroidfield), POINTER :: toroidfield_out(:)
272  TYPE (type_toroidfield), POINTER :: toroidfield(:)
273  TYPE (type_toroidfield), POINTER :: toroidfield_grid(:)
274 
275 
276  CALL filltoroidfield(toroidfield, toroidfield_grid, toroidfield_out)
277 
278 
279  RETURN
280 
281 END SUBROUTINE fc2k_filltoroidfield
282 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
283 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
284 
285 
286 
287 
288 
289 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
290 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
291 SUBROUTINE fc2k_fillcoreneutrals (CORENEUTRALS_DB, CORENEUTRALS_GRID, CORENEUTRALS_OUT, INTERPOL)
292 
293 !--------------------------------------------------------
294 ! This is FC2K wrapper for FILLCORENEUTRALS !
295 !--------------------------------------------------------
296 
297  USE itm_types
298  USE euitm_schemas
299  USE fill_cpos
300 
301  IMPLICIT NONE
302 
303  INTEGER :: interpol !interpolation index "0"-based on RHO_TOR; all other - based on RHO_TOR_NORM
304 
305  TYPE (type_coreneutrals), POINTER :: coreneutrals_grid(:) !input CPO with internal ETS parameters
306  TYPE (type_coreneutrals), POINTER :: coreneutrals_out(:) !output CPO with profiles uploaded from the data base
307  TYPE (type_coreneutrals), POINTER :: coreneutrals_db(:) !time independent CPO slice
308 
309 
310  CALL fillcoreneutrals(coreneutrals_db, coreneutrals_grid, coreneutrals_out, interpol)
311 
312 
313  RETURN
314 
315 END SUBROUTINE fc2k_fillcoreneutrals
316 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
317 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
318 
319 
320 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
321 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
322 SUBROUTINE fc2k_fillneoclassic (NEOCLASSIC_DB, NEOCLASSIC_GRID, NEOCLASSIC_OUT, INTERPOL)
323 
324 !--------------------------------------------------------
325 ! This is FC2K wrapper for FILLNEOCLASSIC !
326 !--------------------------------------------------------
327 
328  USE itm_types
329  USE euitm_schemas
330  USE fill_cpos
331 
332  IMPLICIT NONE
333 
334  INTEGER :: interpol !interpolation index "0"-based on RHO_TOR; all other - based on RHO_TOR_NORM
335 
336  TYPE (type_neoclassic), POINTER :: neoclassic_grid(:) !input CPO with internal parameters
337  TYPE (type_neoclassic), POINTER :: neoclassic_out(:) !output CPO with profiles uploaded from the data base
338  TYPE (type_neoclassic), POINTER :: neoclassic_db(:) !time independent CPO slice
339 
340 
341  CALL fillneoclassic(neoclassic_db, neoclassic_grid, neoclassic_out, interpol)
342 
343 
344  RETURN
345 
346 END SUBROUTINE fc2k_fillneoclassic
347 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
348 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
349 
subroutine fc2k_fillcoreprof(COREPROF_DB, COREPROF_GRID, COREFAST_IN, COREPROF_OUT, INTERPOL)
subroutine fc2k_fillcoresource(CORESOURCE_DB, CORESOURCE_GRID, CORESOURCE_OUT, INTERPOL)
subroutine fc2k_fillequilibrium(EQUILIBRIUM_DB, EQUILIBRIUM_GRID, EQUILIBRIUM_OUT, INTERPOL)
subroutine fillcoreimpur(COREIMPUR_DB, COREIMPUR_GRID, COREIMPUR_OUT, INTERPOL)
Definition: fill_cpos.f90:1202
subroutine fillcorefast(COREFAST_DB, COREFAST_GRID, COREFAST_OUT, INTERPOL)
Definition: fill_cpos.f90:1116
subroutine filltoroidfield(TOROIDFIELD, TOROIDFIELD_GRID, TOROIDFIELD_OUT)
Definition: fill_cpos.f90:1726
subroutine fillcoresource(CORESOURCE_DB, CORESOURCE_GRID, CORESOURCE_OUT, INTERPOL)
Definition: fill_cpos.f90:943
subroutine fc2k_filltoroidfield(TOROIDFIELD, TOROIDFIELD_GRID, TOROIDFIELD_OUT)
subroutine fillcoreprof(COREPROF_DB, COREPROF_GRID, COREFAST_IN, COREPROF_OUT, INTERPOL)
Definition: fill_cpos.f90:7
subroutine fc2k_fillcorefast(COREFAST_DB, COREFAST_GRID, COREFAST_OUT, INTERPOL)
subroutine fillcoreneutrals(CORENEUTRALS_DB, CORENEUTRALS_GRID, CORENEUTRALS_OUT, INTERPOL)
Definition: fill_cpos.f90:1299
subroutine fc2k_fillcoreneutrals(CORENEUTRALS_DB, CORENEUTRALS_GRID, CORENEUTRALS_OUT, INTERPOL)
subroutine fillcoretransp(CORETRANSP_DB, CORETRANSP_GRID, CORETRANSP_OUT, INTERPOL)
Definition: fill_cpos.f90:768
subroutine fc2k_fillcoreimpur(COREIMPUR_DB, COREIMPUR_GRID, COREIMPUR_OUT, INTERPOL)
subroutine fillequilibrium(EQUILIBRIUM_DB, EQUILIBRIUM_GRID, EQUILIBRIUM_OUT, INTERPOL)
Definition: fill_cpos.f90:1383
subroutine fc2k_fillcoretransp(CORETRANSP_DB, CORETRANSP_GRID, CORETRANSP_OUT, INTERPOL)
subroutine fillcoreprof2(COREPROF_DB, COREPROF_GRID, COREFAST_IN, COREPROF_OUT, INTERPOL, integer_params, real_params, output_flag, diagnostic_info)
Definition: fill_cpos.f90:320
subroutine fc2k_fillneoclassic(NEOCLASSIC_DB, NEOCLASSIC_GRID, NEOCLASSIC_OUT, INTERPOL)
subroutine fc2k_fillcoreprof2(COREPROF_DB, COREPROF_GRID, COREFAST_IN, COREPROF_OUT, INTERPOL, integer_params, real_params, output_flag, diagnostic_info)
subroutine fillneoclassic(NEOCLASSIC_DB, NEOCLASSIC_GRID, NEOCLASSIC_OUT, INTERPOL)
Definition: fill_cpos.f90:1781