Initial commit

This commit is contained in:
2016-02-03 18:52:05 +00:00
commit d40505e161
507 changed files with 91383 additions and 0 deletions
@@ -0,0 +1,13 @@
SUBROUTINE addint(uf,uc,res,nf)
INTEGER nf
DOUBLE PRECISION res(nf,nf),uc(nf/2+1,nf/2+1),uf(nf,nf)
CU USES interp
INTEGER i,j
call interp(res,uc,nf)
do 12 j=1,nf
do 11 i=1,nf
uf(i,j)=uf(i,j)+res(i,j)
11 continue
12 continue
return
END