ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
dgamma_dpsi.f90
Go to the documentation of this file.
1 function dgamma_dpsi(flux) result(f_dgamma_dpsi)
2 !------------------------------------------------------------------
3 ! the normalized profile of gradient of gamma versus flux
4 !------------------------------------------------------------------
5 
6  use itm_types
7  use mod_profiles
8  use helena_spline
9 
10  implicit none
11 
12  real(r8), intent(in) :: flux
13  real(r8) :: f_dgamma_dpsi
14 
15  real(r8), dimension(3) :: ablt
16  real(r8) :: flux_tmp
17 
18  flux_tmp = flux
19 
20  if (flux >= 1._r8) then
21  flux_tmp = 1._r8
22  end if
23 
24  f_dgamma_dpsi = spwert(npts, flux_tmp, gam_spline, psivec, ablt, 0)
25 
26 end function dgamma_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 dgamma_dpsi(flux)
Definition: dgamma_dpsi.f90:1