ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
radial_mesh.f90
Go to the documentation of this file.
1  subroutine radial_mesh(rpsi, zpsi, dzpsi, ddzpsi)
2 !-------------------------------------------------------------------
3 ! function to determine a non-equidistant grid in sqrt(psi).
4 ! grid will be equidistant in rpsi.
5 ! rpsi must be a monotonic function of psi between 0. and 1.
6 !-------------------------------------------------------------------
7 
8  use itm_types
9  use mod_meshacc
10 
11  implicit none
12 
13  real(r8), intent(in) :: rpsi
14 
15  real(r8), intent(out) :: zpsi, dzpsi, ddzpsi
16 
17  real(r8) :: a1, a2
18 
19  zpsi = rpsi**2
20  dzpsi = 2._r8 * rpsi
21  ddzpsi = 2._r8
22 !TODO: remove this redundant re-accumulation of the grid
23  if (imesh == 1) then
24  a1 = amesh
25  a2 = bmesh
26 
27  zpsi = rpsi**2 + a1 * rpsi**3 + a2 * rpsi**4 - (a1 + a2) &
28  * rpsi**5
29  dzpsi = 2._r8 * rpsi + 3._r8 * a1 * rpsi**2 + 4._r8 * a2 &
30  * rpsi**3 - 5._r8 * (a1 + a2) * rpsi**4
31  ddzpsi = 2._r8 + 6._r8 * a1 * rpsi + 12._r8 * a2 * rpsi**2 &
32  - 20._r8 * (a1 + a2) * rpsi**3
33  end if
34 
35  return
36 end subroutine radial_mesh
subroutine radial_mesh(rpsi, zpsi, dzpsi, ddzpsi)
Definition: radial_mesh.f90:1