ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
pSpline.f
Go to the documentation of this file.
1  subroutine pspline(nr,nz,nCoeff,r,z,rawdata,rpkg,zpkg,fspl,
2  & nwrk,ierr)
3 
4  implicit none
5 
6 C/*--------------------------------------------------------------------
7 C * pSpline.f
8 C *
9 C * wrapper to the fortran pSpline routines from NTCC
10 C *
11 C * Modification history
12 C * --------------------
13 C * 04-June 2008 1.4.3 Created
14 C *
15 C *
16 C *
17 C *-------------------------------------------------------------------*/
18 
19 
20  integer nwrk,ilinx,ilinth,ierr,i,j,k,l,m
21 C Input raw data
22  integer nr,nz,ncoeff
23  real*8 rawdata(ncoeff),r(nr),z(nz)
24 C The input array for the spline fit
25  real*8 fspl(4,4,nr,nz)
26 C Boundary Conditions
27  integer ibcxmin,ibcxmax,ibcthmin,ibcthmax
28  real*8 bcxmin(nz),bcxmax(nz),bcthmin(nr),bcthmax(nr)
29 C Work array for the spline fit
30  real*8 work(nwrk)
31 C Return data
32  real*8 coeff(ncoeff),rpkg(nr,4),zpkg(nz,4),ztol
33 C Package data
34  integer iper,imsg,itol,ialg,iwarn
35 
36 C Fill the input array
37  do i=1,nr
38  do j=1,nz
39  fspl(1,1,i,j) = rawdata(((i-1)*nz)+j)
40  enddo
41  enddo
42 
43 C Set the boundary conditions - Set to "not a knot"
44  ibcxmin = 0
45  ibcxmax = 0
46  ibcthmin = 0
47  ibcthmax = 0
48 
49 C And call the spline fitting routine
50  call r8bcspline(r,nr,z,nz,fspl,nr,ibcxmin,bcxmin,ibcxmax,
51  & bcxmax,ibcthmin,bcthmin,ibcthmax,bcthmax,work,nwrk,ilinx,
52  & ilinth,ierr)
53 
54 C Calculate r and z packages to speed up evaluation later
55  iper = 0
56  imsg = 0
57  itol = 0
58  ialg = -3
59  call r8genxpkg(nr,r,rpkg,iper,imsg,itol,ztol,ialg,ierr)
60  if(ierr .gt. 0) return
61  call r8genxpkg(nz,z,zpkg,iper,imsg,itol,ztol,ialg,ierr)
62  if(ierr .gt. 0) return
63 
64  nr = nr * 4
65  nz = nz * 4
66 
67  end
68 
subroutine pspline(nr, nz, nCoeff, r, z, rawdata, rpkg, zpkg, fspl, nwrk, ierr)
Definition: pSpline.f:1