/[MITgcm]/MITgcm/pkg/aim_v23/aim_aim2dyn_exchanges.F
ViewVC logotype

Contents of /MITgcm/pkg/aim_v23/aim_aim2dyn_exchanges.F

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


Revision 1.3 - (show annotations) (download)
Fri May 21 17:49:59 2004 UTC (20 years ago) by jmc
Branch: MAIN
CVS Tags: checkpoint57t_post, checkpoint58l_post, checkpoint53f_post, checkpoint54a_pre, checkpoint55c_post, checkpoint57b_post, checkpoint57o_post, checkpoint55e_post, checkpoint58e_post, checkpoint57v_post, checkpoint53d_post, checkpoint58u_post, checkpoint57f_post, checkpoint57s_post, checkpoint53c_post, checkpoint57k_post, checkpoint55d_pre, checkpoint57d_post, checkpoint57g_post, checkpoint57c_pre, checkpoint58r_post, checkpoint55j_post, checkpoint56b_post, checkpoint57i_post, checkpoint57y_post, checkpoint58g_post, checkpoint57x_post, checkpoint54a_post, checkpoint57m_post, checkpoint55h_post, checkpoint58n_post, checkpoint58x_post, checkpoint57g_pre, checkpoint54b_post, checkpoint58t_post, checkpoint58h_post, checkpoint57e_post, checkpoint58w_post, checkpoint54d_post, checkpoint56c_post, checkpoint54e_post, checkpoint58j_post, checkpoint55b_post, checkpoint57h_post, checkpoint57y_pre, checkpoint55, checkpoint57f_pre, checkpoint57a_post, checkpoint54, checkpoint58q_post, checkpoint54f_post, checkpoint55g_post, checkpoint55f_post, checkpoint57r_post, checkpoint58, checkpoint57a_pre, checkpoint55i_post, checkpoint57, checkpoint56, eckpoint57e_pre, checkpoint57h_done, checkpoint58f_post, checkpoint53g_post, checkpoint57n_post, checkpoint58d_post, checkpoint58c_post, checkpoint57w_post, checkpoint57p_post, checkpint57u_post, checkpoint58a_post, checkpoint58i_post, checkpoint57q_post, checkpoint58o_post, checkpoint57z_post, checkpoint57c_post, checkpoint58k_post, checkpoint58v_post, checkpoint55a_post, checkpoint53d_pre, checkpoint54c_post, checkpoint58s_post, checkpoint58p_post, checkpoint57j_post, checkpoint58b_post, checkpoint57h_pre, checkpoint58m_post, checkpoint57l_post, checkpoint56a_post, checkpoint55d_post
Changes since 1.2: +13 -1 lines
changes for coupling with ocean (+realFW) using thSIce in atmosphere

1 C $Header: /u/gcmpack/MITgcm/pkg/aim_v23/aim_aim2dyn_exchanges.F,v 1.2 2004/04/22 21:37:07 jmc Exp $
2 C $Name: $
3
4 #include "AIM_OPTIONS.h"
5
6 CStartOfInterface
7 SUBROUTINE AIM_AIM2DYN_EXCHANGES(
8 I myTime, myIter, myThid)
9 C /==========================================================\
10 C | S/R AIM_AIM2DYN_EXCHANGES |
11 C | o Do overlap exchanges for AIM related quantities. |
12 C | AIM does not compute into overlaps so exchanges |
13 C | are needed for AIM quantities. |
14 C \==========================================================/
15 IMPLICIT NONE
16
17 C == Global data ==
18 #include "SIZE.h"
19 #include "EEPARAMS.h"
20 #include "PARAMS.h"
21 c #include "DYNVARS.h"
22
23 #include "AIM2DYN.h"
24
25 #ifdef ALLOW_THSICE
26 # include "THSICE_VARS.h"
27 #endif
28
29 C == Routine arguments ==
30 _RL myTime
31 INTEGER myIter
32 INTEGER myThid
33 CEndOfInterface
34
35 #ifdef ALLOW_AIM
36
37 C == Local variables ==
38 INTEGER bi,bj
39
40 _EXCH_XY_R8( aim_drag, myThid )
41 c _EXCH_XYZ_R8( gT, myThid )
42 c _EXCH_XYZ_R8( gS, myThid )
43 c _EXCH_XYZ_R8( gTNM1, myThid )
44 c _EXCH_XYZ_R8( gSNM1, myThid )
45
46 #ifdef ALLOW_THSICE
47 IF (useThSIce) _EXCH_XY_R8( iceMask, myThid )
48 #endif
49
50 #ifdef COMPONENT_MODULE
51 IF ( useCoupler ) THEN
52 DO bj=myByLo(myThid),myByHi(myThid)
53 DO bi=myBxLo(myThid),myBxHi(myThid)
54 CALL ATM_STORE_TAUX( bi,bj, myTime, myIter, myThid )
55 CALL ATM_STORE_TAUY( bi,bj, myTime, myIter, myThid )
56 ENDDO
57 ENDDO
58 ENDIF
59 #endif /* COMPONENT_MODULE */
60
61 #endif /* ALLOW_AIM */
62
63 RETURN
64 END

  ViewVC Help
Powered by ViewVC 1.1.22