ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
ddrpack.f90
Go to the documentation of this file.
1 function ddrpack(x, x0, b, t, amp) result(f_ddrpack)
2 !-------------------------------------------------------------------
3 ! second derivative of function rpack
4 !------------------------------------------------------------------
5 !
6 ! attention: ddrpack not continuous !
7 
8  use itm_types
9 
10  implicit none
11 
12  real(r8) :: x, x0, b, t, amp
13  real(r8) :: f_ddrpack
14 
15  real(r8) :: dx, p4
16 
17  dx = abs(x - x0)
18  if (dx < b) then
19  p4 = -2._r8 / b**2
20  else
21  dx = dx - b
22  p4 = -6._r8 / ((t - b)**2) + 12._r8 * dx / (t - b)**3
23  endif
24  f_ddrpack = amp * p4
25  if (x < x0) f_ddrpack = -f_ddrpack
26  if (abs(x - x0) > t) f_ddrpack = 0._r8
27 
28 end function ddrpack
real(r8) function ddrpack(x, x0, b, t, amp)
Definition: ddrpack.f90:1