ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fpbisp.f
Go to the documentation of this file.
1  subroutine fpbisp(tx,nx,ty,ny,c,kx,ky,x,mx,y,my,z,wx,wy,lx,ly)
2  implicit none
3 c ..scalar arguments..
4  integer nx,ny,kx,ky,mx,my
5 c ..array arguments..
6  integer lx(mx),ly(my)
7  real*8 tx(nx),ty(ny),c((nx-kx-1)*(ny-ky-1)),x(mx),y(my),z(mx*my),
8  * wx(mx,kx+1),wy(my,ky+1)
9 c ..local scalars..
10  integer kx1,ky1,l,l1,l2,m,nkx1,nky1,i,j,i1,j1
11  real*8 arg,sp,tb,te
12 c ..local arrays..
13  real*8 h(6)
14 c ..subroutine references..
15 c fpbspl
16 c ..
17  kx1 = kx+1
18  nkx1 = nx-kx1
19  tb = tx(kx1)
20  te = tx(nkx1+1)
21  l = kx1
22  l1 = l+1
23  do 40 i=1,mx
24  arg = x(i)
25  if(arg.lt.tb) arg = tb
26  if(arg.gt.te) arg = te
27  10 if(arg.lt.tx(l1) .or. l.eq.nkx1) go to 20
28  l = l1
29  l1 = l+1
30  go to 10
31  20 call fpbspl(tx,nx,kx,arg,l,h)
32  lx(i) = l-kx1
33  do 30 j=1,kx1
34  wx(i,j) = h(j)
35  30 continue
36  40 continue
37  ky1 = ky+1
38  nky1 = ny-ky1
39  tb = ty(ky1)
40  te = ty(nky1+1)
41  l = ky1
42  l1 = l+1
43  do 80 i=1,my
44  arg = y(i)
45  if(arg.lt.tb) arg = tb
46  if(arg.gt.te) arg = te
47  50 if(arg.lt.ty(l1) .or. l.eq.nky1) go to 60
48  l = l1
49  l1 = l+1
50  go to 50
51  60 call fpbspl(ty,ny,ky,arg,l,h)
52  ly(i) = l-ky1
53  do 70 j=1,ky1
54  wy(i,j) = h(j)
55  70 continue
56  80 continue
57  m = 0
58  do 130 i=1,mx
59  l = lx(i)*nky1
60  do 90 i1=1,kx1
61  h(i1) = wx(i,i1)
62  90 continue
63  do 120 j=1,my
64  l1 = l+ly(j)
65  sp = 0.
66  do 110 i1=1,kx1
67  l2 = l1
68  do 100 j1=1,ky1
69  l2 = l2+1
70  sp = sp+c(l2)*h(i1)*wy(j,j1)
71  100 continue
72  l1 = l1+nky1
73  110 continue
74  m = m+1
75  z(m) = sp
76  120 continue
77  130 continue
78 C write(6,*) "Z = ", z(1)
79  return
80  end
81 
subroutine fpbisp(tx, nx, ty, ny, c, kx, ky, x, mx, y, my, z, wx, wy, lx, ly)
Definition: fpbisp.f:1
subroutine fpbspl(t, n, k, x, l, h)
Definition: fpbspl.f:1