4 coreprof_in, coreprof_out)
14 TYPE (type_equilibrium
),
POINTER :: equilibrium_in(:)
16 TYPE (type_coreprof
),
POINTER :: coreprof_in(:)
17 TYPE (type_coreprof
),
POINTER :: coreprof_out(:)
18 REAL(R8) :: rho_tor_rescale
22 ALLOCATE(coreprof_out(1))
26 CALL copy_cpo(coreprof_in(1), coreprof_out(1))
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
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))
subroutine l3interp(y_in, x_in, nr_in, y_out, x_out, nr_out)
subroutine fc2k_changepsi(EQUILIBRIUM_IN, COREPROF_IN, COREPROF_OUT)