/[MITgcm]/MITgcm/pkg/atm_compon_interf/atm_store_my_data.F
ViewVC logotype

Contents of /MITgcm/pkg/atm_compon_interf/atm_store_my_data.F

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


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

1 C $Header: /u/gcmpack/MITgcm/pkg/aim_compon_interf/atm_store_my_data.F,v 1.1 2003/12/15 02:44:48 jmc Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CStartOfInterface
7 SUBROUTINE ATM_STORE_MY_DATA( bi,bj,
8 I myIter,
9 I myTime,
10 I myThid )
11 C /==========================================================\
12 C | SUBROUTINE ATM_STORE_MY_DATA |
13 C | o Routine for controlling storage of coupling data to |
14 C | coupler layer. |
15 C |==========================================================|
16 C | This version interfaces to the MITgcm AIMPHYS package. |
17 C \==========================================================/
18 IMPLICIT NONE
19
20 C == Global variables ==
21 #include "SIZE.h"
22 #include "EEPARAMS.h"
23 #include "PARAMS.h"
24
25 C == Routine arguments ==
26 C bi,bj - Current tile indices
27 C myIter - Current timestep number.
28 C myTime - Current internal time.
29 C myThid - Thread number for this instance
30 C of the routine.
31 INTEGER bi,bj
32 INTEGER myIter
33 _RL myTime
34 INTEGER myThid
35 CEndOfInterface
36
37 #ifdef COMPONENT_MODULE
38 C == Local variables ==
39
40 C Store coupling data ready for export
41 CALL ATM_STORE_ATMSLP( bi,bj, myTime, myIter, myThid )
42 CALL ATM_STORE_HEATFLUX( bi,bj, myTime, myIter, myThid )
43 CALL ATM_STORE_QSHORTWAVE( bi,bj, myTime, myIter, myThid )
44 c CALL ATM_STORE_QSENSIBLE( bi,bj, myTime, myIter, myThid )
45 c CALL ATM_STORE_QLATENT( bi,bj, myTime, myIter, myThid )
46 c CALL ATM_STORE_QLONGWAVE( bi,bj, myTime, myIter, myThid )
47 c CALL ATM_STORE_UVELGROUND( bi,bj, myTime, myIter, myThid )
48 c CALL ATM_STORE_VVELGROUND( bi,bj, myTime, myIter, myThid )
49 c CALL ATM_STORE_TAUX( bi,bj, myTime, myIter, myThid )
50 c CALL ATM_STORE_TAUY( bi,bj, myTime, myIter, myThid )
51 CALL ATM_STORE_EVMPR( bi,bj, myTime, myIter, myThid )
52 IF ( useLand ) THEN
53 CALL ATM_STORE_RUNOFF( bi,bj, myTime, myIter, myThid )
54 CALL ATM_STORE_ROENFX( bi,bj, myTime, myIter, myThid )
55 ENDIF
56 IF ( useThSIce ) THEN
57 CALL ATM_STORE_SALTFX( bi,bj, myTime, myIter, myThid )
58 CALL ATM_STORE_SEAICE( bi,bj, myTime, myIter, myThid )
59 ENDIF
60
61 #endif /* COMPONENT_MODULE */
62
63 RETURN
64 END

  ViewVC Help
Powered by ViewVC 1.1.22