ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_changepsi.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
3  SUBROUTINE fc2k_changepsi (EQUILIBRIUM_IN, &
4  coreprof_in, coreprof_out)
5 
6 ! +++ Declaration of variables:
7  USE itm_types
8  USE euitm_schemas
9  USE copy_structures
10  USE euitm_routines
11 
12 
13 ! +++ CPO derived types:
14  TYPE (type_equilibrium), POINTER :: equilibrium_in(:) !input CPO
15 
16  TYPE (type_coreprof), POINTER :: coreprof_in(:) !input CPO
17  TYPE (type_coreprof), POINTER :: coreprof_out(:) !output CPO
18  REAL(R8) :: rho_tor_rescale
19 
20 
21 ! +++ Allocate output CPOs:
22  ALLOCATE(coreprof_out(1))
23 
24 
25 ! +++ Copy input CPOs to output CPOs:
26  CALL copy_cpo(coreprof_in(1), coreprof_out(1))
27 
28 
29 ! +++ Copy input CPOs to output CPOs:
30  rho_tor_rescale = equilibrium_in(1)%profiles_1d%rho_tor(SIZE(equilibrium_in(1)%profiles_1d%rho_tor)) / &
31  coreprof_out(1)%rho_tor(SIZE(coreprof_out(1)%rho_tor))
32  WRITE(*,*) 'RHO_TOR COREPROF rescale factor = ', rho_tor_rescale
33  coreprof_out(1)%rho_tor = coreprof_out(1)%rho_tor * rho_tor_rescale
34 
35 ! +++ Modify psi:
36  CALL l3interp(equilibrium_in(1)%profiles_1d%psi, equilibrium_in(1)%profiles_1d%rho_tor, SIZE(equilibrium_in(1)%profiles_1d%rho_tor),&
37  coreprof_out(1)%psi%value, coreprof_out(1)%rho_tor, SIZE(coreprof_out(1)%rho_tor))
38 
39  RETURN
40 
41  END SUBROUTINE fc2k_changepsi
42 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
43 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
44 
45 
46 
47 
48 
49 
50 
subroutine l3interp(y_in, x_in, nr_in, y_out, x_out, nr_out)
Definition: l3interp.f90:1
subroutine fc2k_changepsi(EQUILIBRIUM_IN, COREPROF_IN, COREPROF_OUT)