ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
rpack.f90
Go to the documentation of this file.
1 function rpack(x, x0, b, t, amp) result(f_rpack)
2 !-------------------------------------------------------------------
3 ! polynomial to describe local changes of the radial coordinate
4 ! x0 : central x value
5 ! b : the position of the maximum
6 ! t : the total halfwidth
7 !------------------------------------------------------------------
8 
9  use itm_types
10 
11  implicit none
12 
13  real(r8) :: x, x0, b, t, amp
14  real(r8) :: f_rpack
15 
16  real(r8) :: dx, p4
17 
18  dx = abs(x - x0)
19  if (dx < b) then
20  p4 = 2._r8 * dx / b - (dx / b)**2
21  else
22  dx = dx - b
23  p4 = 1._r8 - 3._r8 * (dx / (t - b))**2 + 2._r8 * (dx &
24  / (t - b))**3
25  end if
26  f_rpack = amp * p4
27  if (x < x0) f_rpack = -f_rpack
28  if (abs(x - x0) > t) f_rpack = 0._r8
29 
30 end function rpack
real(r8) function rpack(x, x0, b, t, amp)
Definition: rpack.f90:1