ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_scaleprof.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
3  SUBROUTINE scaleprof (S_psi, S_jpar, S_ne, S_te, S_ni, S_ti, S_vtor, &
4  coreprof_in, coreprof_out)
5  !-------------------------------------------------------!
6  ! This routine rescales profiles from !
7  ! the COREPROF CPO !
8  ! !
9  ! multipliers are expected from the workflow as !
10  ! parameters !
11  !-------------------------------------------------------!
12  ! Source: --- !
13  ! Developers: D.Kalupin !
14  ! Kontacts: Denis.Kalupin@efda.org !
15  ! !
16  ! Comments: created for V&V between ETS and !
17  ! ASTRA !
18  ! !
19  !-------------------------------------------------------!
20 
21 ! +++ Declaration of variables:
22  USE euitm_schemas
23  USE copy_structures
24  USE itm_constants
25 
26  IMPLICIT NONE
27 
28 ! +++ CPO derived types:
29  TYPE (type_coreprof), POINTER :: coreprof_in(:) !input CPO
30  TYPE (type_coreprof), POINTER :: coreprof_out(:) !output CPO
31 
32  REAL (R8) :: s_psi
33  REAL (R8) :: s_jpar
34  REAL (R8) :: s_ne
35  REAL (R8) :: s_te
36  REAL (R8) :: s_ni
37  REAL (R8) :: s_ti
38  REAL (R8) :: s_vtor
39 
40 
41 
42 ! +++ Allocate output CPOs:
43  ALLOCATE(coreprof_out(1))
44 
45 
46 ! +++ Copy input CPOs to output CPOs:
47  CALL copy_cpo(coreprof_in(1), coreprof_out(1))
48 
49 
50 ! +++ Rescale profiles in output CPOs:
51  coreprof_out(1)%psi%value = coreprof_in(1)%psi%value * s_psi
52  coreprof_out(1)%profiles1d%jtot%value = coreprof_in(1)%profiles1d%jtot%value * s_jpar
53 
54  coreprof_out(1)%ne%value = coreprof_in(1)%ne%value * s_ne
55  coreprof_out(1)%te%value = coreprof_in(1)%te%value * s_te
56 
57  coreprof_out(1)%ni%value = coreprof_in(1)%ni%value * s_ni
58  coreprof_out(1)%ti%value = coreprof_in(1)%ti%value * s_ti
59 
60  coreprof_out(1)%vtor%value = coreprof_in(1)%vtor%value * s_vtor
61 
62 
63 
64  RETURN
65 
66 
67  END SUBROUTINE scaleprof
68 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
69 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
70 
71 
72 
subroutine scaleprof(S_psi, S_jpar, S_ne, S_te, S_ni, S_ti, S_vtor, COREPROF_IN, COREPROF_OUT)