/[MITgcm]/MITgcm_contrib/jscott/igsm/src/fltr4tem.F
ViewVC logotype

Annotation of /MITgcm_contrib/jscott/igsm/src/fltr4tem.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Fri Aug 11 19:35:30 2006 UTC (18 years, 11 months ago) by jscott
Branch: MAIN
CVS Tags: HEAD
atm2d package

1 jscott 1.1 subroutine fltr4tem(z,iy)
2     dimension z(iy),zt(iy)
3     do j=2,iy-2
4     zt(j)=0.25*(z(j-1)+2.*z(j)+z(j+1))
5     enddo
6     do j=2,iy-1
7     z(j)=zt(j)
8     enddo
9     return
10     end

  ViewVC Help
Powered by ViewVC 1.1.22