1 |
cnh |
1.1 |
C $Header: /u/u0/gcmpack/MITgcm/pkg/ocn_compon_interf/ocn_import_fwflux.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_IMPORT_FWFLUX( myThid ) |
8 |
|
|
C /==========================================================\ |
9 |
|
|
C | SUBROUTINE OCN_IMPORT_FWFLUX | |
10 |
|
|
C | o Routine for importing fresh water flux into ocean | |
11 |
|
|
C | component from coupling layer. | |
12 |
|
|
C |==========================================================| |
13 |
|
|
C | This version talks to the MIT Coupler. It uses the | |
14 |
|
|
C | MIT Coupler "checkpoint 1" library calls. | |
15 |
|
|
C \==========================================================/ |
16 |
|
|
IMPLICIT NONE |
17 |
|
|
|
18 |
|
|
C == Global variables == |
19 |
|
|
#include "SIZE.h" |
20 |
|
|
#include "EEPARAMS.h" |
21 |
|
|
#include "OCNIDS.h" |
22 |
|
|
#include "OCNCPL.h" |
23 |
|
|
|
24 |
|
|
C == Routine arguments == |
25 |
|
|
C myThid - Thread number for this instance of the routine |
26 |
|
|
INTEGER myThid |
27 |
|
|
CEndOfInterface |
28 |
|
|
|
29 |
|
|
C Receive fresh water flux from coupling layer. |
30 |
|
|
C Data is already interpolated onto ocean model grid by coupling layer |
31 |
|
|
C CALL COMPRECV_R8TILES( ocnFWFluxName, |
32 |
|
|
C I sNx, OLx, sNy, OLy, 1, nSx, nSy, |
33 |
|
|
C O FWFlux ) |
34 |
|
|
|
35 |
|
|
RETURN |
36 |
|
|
END |