/[MITgcm]/MITgcm/model/src/do_stagger_fields_exchanges.F
ViewVC logotype

Contents of /MITgcm/model/src/do_stagger_fields_exchanges.F

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


Revision 1.6 - (show annotations) (download)
Thu Feb 23 20:55:48 2006 UTC (18 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint58b_post, checkpoint59, checkpoint58f_post, checkpoint58d_post, checkpoint58y_post, checkpoint58t_post, checkpoint58m_post, checkpoint60, checkpoint61, checkpoint58w_post, checkpoint58o_post, checkpoint58p_post, checkpoint58q_post, checkpoint58e_post, mitgcm_mapl_00, checkpoint58r_post, checkpoint58n_post, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint59c, checkpoint59b, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint58k_post, checkpoint58v_post, checkpoint58l_post, checkpoint61f, checkpoint58g_post, checkpoint58x_post, checkpoint59j, checkpoint58h_post, checkpoint58j_post, checkpoint61e, checkpoint58i_post, checkpoint58c_post, checkpoint58u_post, checkpoint58s_post, checkpoint61g, checkpoint61d, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61l, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i
Changes since 1.5: +9 -2 lines
1rst implementation of  Implicit IGW using the 3-D solver (use3Dsolver=T)
 and based on the reference stratification

1 C $Header: /u/gcmpack/MITgcm/model/src/do_stagger_fields_exchanges.F,v 1.5 2004/07/07 22:52:52 jmc Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: DO_STAGGER_FIELDS_EXCHANGES
8 C !INTERFACE:
9 SUBROUTINE DO_STAGGER_FIELDS_EXCHANGES(myTime, myIter, myThid)
10 C !DESCRIPTION: \bv
11 C *==========================================================*
12 C | SUBROUTINE DO_STAGGER_FIELDS_EXCHANGES
13 C | o Exchange edge info of Active tracers fields (U,V)
14 C | (needed when using stagger time Step + multiDimAdvec)
15 C *==========================================================*
16 C \ev
17 C !USES:
18 IMPLICIT NONE
19 C == Global variables ===
20 #include "SIZE.h"
21 #include "EEPARAMS.h"
22 #include "PARAMS.h"
23 #include "DYNVARS.h"
24
25 C !INPUT/OUTPUT PARAMETERS:
26 C == Routine arguments ==
27 C myTime :: Current time in simulation
28 C myIter :: Current iteration number in simulation
29 C myThid :: Thread number for this instance of the routine.
30 _RL myTime
31 INTEGER myIter
32 INTEGER myThid
33 CEOP
34
35 IF ( staggerTimeStep .AND. useMultiDimAdvec) THEN
36 CALL EXCH_UV_XYZ_RL(uVel,vVel,.TRUE.,myThid)
37 IF ( .NOT.implicitIntGravWave )
38 & _EXCH_XYZ_R8( wVel , myThid )
39 ENDIF
40 c #ifdef ALLOW_NONHYDROSTATIC
41 IF ( implicitIntGravWave ) THEN
42 _EXCH_XYZ_R8( gT , myThid )
43 _EXCH_XYZ_R8( gS , myThid )
44 ENDIF
45 c #endif
46
47 RETURN
48 END

  ViewVC Help
Powered by ViewVC 1.1.22