/[MITgcm]/MITgcm/pkg/zonal_filt/zonal_filt_apply_ts.F
ViewVC logotype

Contents of /MITgcm/pkg/zonal_filt/zonal_filt_apply_ts.F

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


Revision 1.1.4.1 - (show annotations) (download)
Wed Feb 6 15:48:09 2002 UTC (22 years, 5 months ago) by heimbach
Branch: ecco-branch
CVS Tags: ecco_c50_e32, ecco_c50_e33, ecco_c50_e30, ecco_c50_e31, ecco_c51_e34d, ecco_c51_e34e, ecco_c51_e34f, ecco_c51_e34g, ecco_c51_e34a, ecco_c51_e34b, ecco_c51_e34c, icebear5, icebear4, icebear3, icebear2, ecco_c50_e29, ecco_c50_e28, ecco_c44_e19, ecco_c44_e18, ecco_c44_e17, ecco_c44_e16, ecco_c50_e33a, ecco_c51_e34, ecco_ice2, ecco_ice1, ecco_c44_e22, ecco_c44_e25, ecco_c44_e23, ecco_c44_e20, ecco_c44_e21, ecco_c44_e26, ecco_c44_e27, ecco_c44_e24, ecco-branch-mod2, ecco-branch-mod3, ecco-branch-mod4, ecco-branch-mod5
Branch point for: c24_e25_ice, icebear
Changes since 1.1: +2 -2 lines
Updating ecco-branch-mod1 to checkpoint44.
Will be tagged ecco-branch-mod2.

1 C $Header: /u/gcmpack/MITgcm/pkg/zonal_filt/zonal_filt_apply_ts.F,v 1.1 2001/12/11 14:49:07 jmc Exp $
2 C $Name: checkpoint44 $
3
4 #include "ZONAL_FILT_OPTIONS.h"
5
6 SUBROUTINE ZONAL_FILT_APPLY_TS(
7 U tFld, sFld,
8 I myThid )
9 C /==========================================================\
10 C | S/R ZONAL_FILT_APPLY_TS |
11 C | o Apply FFT filter to a latitude circle. |
12 C \==========================================================/
13 IMPLICIT NONE
14
15 C == Global data ==
16 #include "SIZE.h"
17 #include "EEPARAMS.h"
18 #include "PARAMS.h"
19 #include "GRID.h"
20
21 C == Routine arguments ==
22 _RL tFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
23 _RL sFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
24 INTEGER myThid
25
26 #ifdef ALLOW_ZONAL_FILT
27
28 C == Local data ==
29 INTEGER K,bi,bj
30
31 DO bj=myByLo(myThid),myByHi(myThid)
32 DO bi=myBxLo(myThid),myBxHi(myThid)
33
34 DO k=1,Nr
35 IF ( tempStepping ) CALL ZONAL_FILTER(
36 & tFld, hFacC, 1, sNy, k, k, bi, bj, 1, myThid)
37 IF ( saltStepping ) CALL ZONAL_FILTER(
38 & sFld, hFacC, 1, sNy, k, k, bi, bj, 1, myThid)
39 ENDDO
40
41 ENDDO
42 ENDDO
43
44 #endif /* ALLOW_ZONAL_FILT */
45
46 RETURN
47 END

  ViewVC Help
Powered by ViewVC 1.1.22