1 |
C $Header: /u/u0/gcmpack/MITgcm/pkg/ocn_compon_interf/ocn_export_ocnconfig.F,v 1.1 2003/12/15 02:49:09 jmc Exp $ |
2 |
C $Name: $ |
3 |
|
4 |
#include "CPP_OPTIONS.h" |
5 |
|
6 |
CStartOfInterface |
7 |
SUBROUTINE OCN_EXPORT_OCNCONFIG( myThid ) |
8 |
C /==========================================================\ |
9 |
C | SUBROUTINE OCN_EXPORT_OCNCONFIG | |
10 |
C | o Routine for exporting ocean config to coupling level. | |
11 |
C |==========================================================| |
12 |
C | This version talks to the MIT Coupler. It uses the MIT | |
13 |
C | Coupler "checkpoint1" library calls. | |
14 |
C \==========================================================/ |
15 |
IMPLICIT NONE |
16 |
|
17 |
C == Global variables == |
18 |
#include "SIZE.h" |
19 |
#include "EEPARAMS.h" |
20 |
#include "GRID.h" |
21 |
#include "OCNIDS.h" |
22 |
|
23 |
C == Routine arguments == |
24 |
C myThid - Thread number for this instance of the routine |
25 |
INTEGER myThid |
26 |
CEndOfInterface |
27 |
|
28 |
C == Local variables == |
29 |
|
30 |
C Send my configuration information to the coupler |
31 |
C o Send ocean model bathymetry map |
32 |
C CALL COMPSEND_R8TILES( ocnBathyName, |
33 |
C I sNx, OLx, sNy, OLy, 1, nSx, nSy, R_low ) |
34 |
|
35 |
RETURN |
36 |
END |