ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
q_profile.f90
Go to the documentation of this file.
1 function q_profile(flux) result(f_q_profile)
2 !------------------------------------------------------------------
3 ! the normalized profile of the current density versus flux
4 !------------------------------------------------------------------
5 
6  use itm_types
7  use mod_profiles
8 
9  implicit none
10 
11  real(r8) :: flux
12  real(r8) :: f_q_profile
13 
14  integer(itm_i4) :: nint
15 
16  real(r8) :: dps
17 
18  dps = 1._r8 / dble(npts - 1)
19  nint = int((npts - 1) * sqrt(flux)) + 1
20  if (flux >= 1._r8) nint = npts - 1
21  f_q_profile = q_in(nint) + (sqrt(flux) - dps * (nint - 1)) / dps &
22  * (q_in(nint + 1) - q_in(nint))
23 
24 end function q_profile
real(r8) function q_profile(flux)
Definition: q_profile.f90:1
subroutine flux(psitok, rk, zk, nk)
Definition: EQ1_m.f:786