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