| 1 |
jscott |
1.2 |
#include "ATM2D_OPTIONS.h" |
| 2 |
jscott |
1.1 |
#ifdef ATM2D_MPI_ON |
| 3 |
|
|
|
| 4 |
|
|
CStartOfInterface |
| 5 |
|
|
SUBROUTINE CPL_RECV_OCN_OCNCONFIG |
| 6 |
|
|
C /==========================================================\ |
| 7 |
|
|
C | SUBROUTINE CPL_RECV_OCN_OCNCONFIG | |
| 8 |
|
|
C | o Routine for receiving ocean config into coupling level.| |
| 9 |
|
|
C |==========================================================| |
| 10 |
|
|
C | This version talks to the MITgcm general circulation | |
| 11 |
|
|
C | model. For now just get the models depth map. | |
| 12 |
|
|
C \==========================================================/ |
| 13 |
|
|
IMPLICIT NONE |
| 14 |
|
|
|
| 15 |
|
|
C == Global variables == |
| 16 |
|
|
#include "OCNSIZE.h" |
| 17 |
|
|
#include "OCNVARS.h" |
| 18 |
|
|
#include "OCNIDS.h" |
| 19 |
|
|
|
| 20 |
|
|
C == Routine arguments == |
| 21 |
|
|
|
| 22 |
|
|
C == Local variables == |
| 23 |
|
|
|
| 24 |
|
|
CEndOfInterface |
| 25 |
|
|
|
| 26 |
|
|
C Get config from ocean component |
| 27 |
|
|
CALL COUPRECV_R8TILES( ocnCompName, |
| 28 |
|
|
I ocnMxlDName, Nx_ocn, Ny_ocn, |
| 29 |
|
|
O OcMxlD_ocn ) |
| 30 |
|
|
|
| 31 |
|
|
RETURN |
| 32 |
|
|
END |
| 33 |
|
|
#endif |