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

Annotation of /MITgcm/pkg/atm_compon_interf/cpl_export_my_data.F

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


Revision 1.2 - (hide annotations) (download)
Fri May 21 20:00:48 2004 UTC (20 years ago) by jmc
Branch: MAIN
CVS Tags: checkpoint57t_post, checkpoint57o_post, checkpoint58e_post, checkpoint57v_post, checkpoint53d_post, checkpoint54a_pre, checkpoint57f_post, checkpoint55c_post, checkpoint54e_post, checkpoint57s_post, checkpoint53c_post, checkpoint57k_post, checkpoint55d_pre, checkpoint57d_post, checkpoint57g_post, checkpoint57b_post, checkpoint57c_pre, checkpoint55j_post, checkpoint56b_post, checkpoint57i_post, checkpoint57y_post, checkpoint58g_post, checkpoint57x_post, checkpoint54a_post, checkpoint57m_post, checkpoint55h_post, checkpoint57g_pre, checkpoint54b_post, checkpoint55b_post, checkpoint58h_post, checkpoint57e_post, checkpoint54d_post, checkpoint53f_post, checkpoint56c_post, checkpoint57y_pre, checkpoint55, checkpoint57f_pre, checkpoint57a_post, checkpoint54, checkpoint54f_post, checkpoint55g_post, checkpoint58j_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, checkpoint57z_post, checkpoint57c_post, checkpoint55e_post, checkpoint55a_post, checkpoint53d_pre, checkpoint54c_post, checkpoint57j_post, checkpoint58b_post, checkpoint57h_pre, checkpoint57l_post, checkpoint57h_post, checkpoint56a_post, checkpoint55d_post
Changes since 1.1: +24 -22 lines
new version of atmosphere-coupler interface for AIM+thSIce and ocean models

1 jmc 1.2 C $Header: /u/gcmpack/MITgcm/pkg/aim_compon_interf/cpl_export_my_data.F,v 1.1 2003/12/15 02:44:48 jmc Exp $
2     C $Name: $
3 jmc 1.1
4     #include "CPP_OPTIONS.h"
5    
6     CStartOfInterface
7     SUBROUTINE CPL_EXPORT_MY_DATA(
8 jmc 1.2 I myIter, myTime, myThid )
9 jmc 1.1 C /==========================================================\
10     C | SUBROUTINE CPL_EXPORT_MY_DATA |
11     C | o Routine for controlling export of coupling data to |
12     C | coupler layer. |
13     C |==========================================================|
14     C | This version talks to the MIT Coupler. It uses the MIT |
15     C | Coupler "checkpoint1" library calls. |
16     C \==========================================================/
17     IMPLICIT NONE
18    
19     #include "EEPARAMS.h"
20     #include "CPL_PARAMS.h"
21    
22     C == Routine arguments ==
23 jmc 1.2 C myIter - Current timestep number.
24     C myTime - Current internal time.
25     C myThid - Thread number for this instance of the routine.
26     INTEGER myIter
27     _RL myTime
28 jmc 1.1 INTEGER myThid
29     CEndOfInterface
30    
31 jmc 1.2 #ifdef COMPONENT_MODULE
32 jmc 1.1 C == Local variables ==
33    
34     C Send data to coupling layer. Note MIT Coupler checkpoint1
35     C does not allow asynchronous posting of data, so ordering has to be
36     C consistent with coupling layer ordering.
37 jmc 1.2 IF ( (myIter/cplSendFrq_iter)*cplSendFrq_iter .EQ. myIter ) THEN
38     WRITE(0,*) ' Exporting atmospheric fluxes at iter. ', myIter
39     CALL ATM_EXPORT_ATMSLP( myThid )
40     CALL ATM_EXPORT_HEATFLUX( myThid )
41     CALL ATM_EXPORT_QSHORTWAVE( myThid )
42     c CALL ATM_EXPORT_QLATENT( myThid )
43     c CALL ATM_EXPORT_QSENSIBLE( myThid )
44     c CALL ATM_EXPORT_QLONGWAVE( myThid )
45     c CALL ATM_EXPORT_UVELGROUND( myThid )
46     c CALL ATM_EXPORT_VVELGROUND( myThid )
47 jmc 1.1 CALL ATM_EXPORT_TAUX( myThid )
48     CALL ATM_EXPORT_TAUY( myThid )
49     CALL ATM_EXPORT_EVMPR( myThid )
50     CALL ATM_EXPORT_RUNOFF( myThid )
51 jmc 1.2 CALL ATM_EXPORT_ROENFX( myThid )
52     CALL ATM_EXPORT_SALTFX( myThid )
53     CALL ATM_EXPORT_SEAICE( myThid )
54 jmc 1.1 ENDIF
55 jmc 1.2
56     #endif /* COMPONENT_MODULE */
57 jmc 1.1
58     RETURN
59     END

  ViewVC Help
Powered by ViewVC 1.1.22