ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
pSplineEval.f
Go to the documentation of this file.
1  subroutine psplineeval(nr,nz,nCoeff,rpkg,zpkg,fspl,
2  & np,r,z,f,ierr)
3 
4  implicit none
5 
6 C/*--------------------------------------------------------------------
7 C * pSplineEval.f
8 C *
9 C * wrapper to the fortran pSpline evaluation routines from NTCC
10 C *
11 C * Modification history
12 C * --------------------
13 C * 05-June 2008 1.4.3 Created
14 C *
15 C *
16 C *
17 C *-------------------------------------------------------------------*/
18 
19  integer ilinx,iliny,ierr,i,j,k,l,m,iselect(6)
20 C Input requested data
21  integer nr,nz,ncoeff,inf3,np
22  real*8 r(np),z(np)
23 C The input array for the spline fit
24  real*8 fspl(4,4,nr,nz), rpkg(nr,4), zpkg(nz,4), ztol
25  integer iper,imsg,itol,ialg,iwarn
26 C Return data
27  real*8 coeff(ncoeff),rknot(nr),zknot(nz)
28 C Return data
29  real*8 f(np,6)
30 
31  do i=1,6
32  iselect(i) = 0
33  enddo
34  iselect(1) = 1
35  ilinx = 1
36  iliny = 1
37  inf3 = nr
38  iper = 0
39  imsg = 0
40  itol = 0
41  ialg = -3
42  ierr = 0
43  iwarn = 0
44 
45 C Call the spline evaluation routine
46  call r8bcspvec(iselect,np,r,z,np,f,nr,rpkg,nz,zpkg,fspl,nr,
47  & iwarn,ierr)
48 
49 
50 
51  end
52 
subroutine psplineeval(nr, nz, nCoeff, rpkg, zpkg, fspl, np, r, z, f, ierr)
Definition: pSplineEval.f:1