source: PSPA/parmelaPSPA/trunk/spl2d1.f @ 465

Last change on this file since 465 was 12, checked in by lemeur, 12 years ago

parmela pspa initial

File size: 804 bytes
Line 
1      subroutine spl2d1 (nbrx,x,nbry,y,f,fx,fy,fxy,idm,ibd,t1,t2,t3)
2c--------------------------------------------------------------------------
3      dimension ibd(6),f(idm,nbrx),fx(idm,nbrx),fy(idm,nbrx),
4     * fxy(idm,nbrx),iloc(2)
5c--------------------------------------------------------------------------
6c*
7      data iloc/1,1/
8      do 1 i=1,nbry
9    1 call spl1d1 (nbrx,x,f(i,1),fx(i,1),ibd(1),idm,t1,t2,t3)
10      do 2 j=1,nbrx
11    2 call spl1d1 (nbry,y,f(1,j),fy(1,j),ibd(3),1,t1,t2,t3)
12      call spl1d1 (nbry,y,fx(1,1),fxy(1,1),ibd(5),1,t1,t2,t3)
13      call spl1d1 (nbry,y,fx(1,nbrx),fxy(1,nbrx),ibd(5),1,t1,t2,t3)
14      do 3 i=1,nbry
15    3 call spl1d1 (nbrx,x,fy(i,1),fxy(i,1),iloc,idm,t1,t2,t3)
16      return
17      end
18c+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Note: See TracBrowser for help on using the repository browser.