C $Header: /home/ubuntu/mnt/e9_copy/MITgcm/pkg/ocn_compon_interf/Attic/cpl_export_my_data.F,v 1.1 2003/12/15 02:49:09 jmc Exp $ C $Name: $ #include "CPP_OPTIONS.h" CStartOfInterface SUBROUTINE CPL_EXPORT_MY_DATA( I myCurrentIter, myCurrentTime, myThid ) C /==========================================================\ C | SUBROUTINE CPL_EXPORT_MY_DATA | C | o Routine for controlling export of coupling data to | C | coupler layer. | C |==========================================================| C | This version talks to the MIT Coupler. It uses the MIT | C | Coupler "checkpoint1" library calls. | C \==========================================================/ IMPLICIT NONE C == Routine arguments == C myCurrentIter - Current timestep number. C myCurrentTime - Current internal time. C myThid - Thread number for this instance C of the routine. INTEGER myCurrentIter _RL myCurrentTime INTEGER myThid CEndOfInterface C == Local variables == C Send data to coupling layer. Note MIT Coupler checkpoint1 C does not allow asynchronous posting of data, so ordering has to be C consistent with coupling layer ordering. CALL OCN_EXPORT_SST ( myThid ) RETURN END