ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
dp_dpsi.f90
Go to the documentation of this file.
1 function dp_dpsi(flux) result(f_dp_dpsi)
2 !------------------------------------------------------------------
3 ! the normalized profile of the pressure gradient versus flux
4 ! this routine must be initialized by a call to pressure_profile
5 !------------------------------------------------------------------
6 
7  use itm_types
8  use mod_profiles
9  use helena_spline
10 
11  implicit none
12 
13  real(r8), intent(in) :: flux
14  real(r8) :: f_dp_dpsi
15 
16  real(r8), dimension(3) :: ablt
17  real(r8) :: flux_tmp
18 
19  flux_tmp = flux
20 
21  if (flux >= 1._r8) then
22  flux_tmp = 1._r8
23  end if
24 
25  f_dp_dpsi = spwert(npts, flux_tmp, dp_spline, psivec, ablt, 0)
26 
27 end function dp_dpsi
subroutine flux(psitok, rk, zk, nk)
Definition: EQ1_m.f:786
REAL *8 function spwert(N, XWERT, A, B, C, D, X, ABLTG)
Definition: solution6.f90:155
real(r8) function dp_dpsi(flux)
Definition: dp_dpsi.f90:1