/[MITgcm]/MITgcm/pkg/atm_ocn_coupler/cpl_recv_atm_fields.F
ViewVC logotype

Contents of /MITgcm/pkg/atm_ocn_coupler/cpl_recv_atm_fields.F

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


Revision 1.4 - (show annotations) (download)
Mon Jun 18 21:20:35 2007 UTC (16 years, 11 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63g, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint64, checkpoint65, checkpoint60, checkpoint61, checkpoint62, checkpoint63, checkpoint65p, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65o, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint59j, checkpoint62c, checkpoint62b, checkpoint62a, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62d, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62s, checkpoint62r, checkpoint62q, checkpoint62p, checkpoint62w, checkpoint62v, checkpoint62u, checkpoint62t, checkpoint62z, checkpoint62y, checkpoint62x, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61n, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61q, checkpoint61z, checkpoint61x, checkpoint61y
Changes since 1.3: +44 -18 lines
import/export DIC fields from/to Atmospheric component.

1 C $Header: /u/gcmpack/MITgcm/pkg/atm_ocn_coupler/cpl_recv_atm_fields.F,v 1.3 2006/06/15 23:29:17 jmc Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: CPL_RECV_ATM_FIELDS
8 C !INTERFACE:
9 SUBROUTINE CPL_RECV_ATM_FIELDS
10
11 C !DESCRIPTION: \bv
12 C *==========================================================*
13 C | SUBROUTINE CPL_RECV_ATM_FIELDS
14 C | o Routine for receiving fluxes from atmos. component
15 C *==========================================================*
16 C | This version talks to the MITgcm general circulation
17 C | model.
18 C *==========================================================*
19 C \ev
20
21 C !USES:
22 IMPLICIT NONE
23
24 C == Global variables ==
25 #include "ATMSIZE.h"
26 #include "ATMVARS.h"
27 #include "ATMIDS.h"
28
29 C !INPUT/OUTPUT PARAMETERS:
30
31 C !LOCAL VARIABLES:
32
33 CEOP
34
35 C- Receive Sea Level atmos. pressure from atmos. component
36 CALL COUPRECV_R8TILES( atmCompName, atmSLPrName,
37 I Nx_atm, Ny_atm,
38 O atmSLPr_atm )
39
40 C- Receive (net) Heat Flux from atmos. component
41 CALL COUPRECV_R8TILES( atmCompName, atmHeatFluxName,
42 I Nx_atm, Ny_atm,
43 O HeatFlux_atm )
44
45 C- Receive net shortwave radiation from atmos. component
46 CALL COUPRECV_R8TILES( atmCompName, atmQshortWaveName,
47 I Nx_atm, Ny_atm,
48 O qShortwave_atm )
49
50 C- Receive Zonal momentum flux from atmos. component
51 CALL COUPRECV_R8TILES( atmCompName, atmTauXName,
52 I Nx_atm, Ny_atm,
53 O TauX_atm )
54
55 C- Receive Meridional momentum flux from atmos. component
56 CALL COUPRECV_R8TILES( atmCompName, atmTauYName,
57 I Nx_atm, Ny_atm,
58 O TauY_atm )
59
60 C- Receive fresh water flux (=Evap-Precip) from atmos. component
61 CALL COUPRECV_R8TILES( atmCompName, atmEvMPrName,
62 I Nx_atm, Ny_atm,
63 O EvMPr_atm )
64
65 C- Receive fresh water flux (=RunOff) from atmos. component
66 CALL COUPRECV_R8TILES( atmCompName, atmRunOffName,
67 I Nx_atm, Ny_atm,
68 O RunOff_atm )
69
70 C- Receive Energy carried by RunOff from atmos. component
71 CALL COUPRECV_R8TILES( atmCompName, atmROEnFxName,
72 I Nx_atm, Ny_atm,
73 O ROEnFx_atm )
74
75 C- Receive salt flux (<- sea-ice) from atmos. component
76 CALL COUPRECV_R8TILES( atmCompName, atmSaltFxName,
77 I Nx_atm, Ny_atm,
78 O SaltFlx_atm )
79
80 C- Receive sea-ice mass from atmos. component
81 CALL COUPRECV_R8TILES( atmCompName, atmSeaIceName,
82 I Nx_atm, Ny_atm,
83 O sIceMass_atm )
84
85 IF ( atmCpl_exchange_DIC ) THEN
86
87 C- Receive atmos CO2 from atmos. component
88 CALL COUPRECV_R8TILES( atmCompName, atmAirCO2Name,
89 I Nx_atm, Ny_atm,
90 O aCO2_atm )
91
92 C- Receive surface wind speed from atmos. component
93 CALL COUPRECV_R8TILES( atmCompName, atmWSpdName,
94 I Nx_atm, Ny_atm,
95 O wSpeed_atm )
96
97 C- Receive seaice fraction from atmos. component
98 CALL COUPRECV_R8TILES( atmCompName, atmFIceName,
99 I Nx_atm, Ny_atm,
100 O sIceFrac_atm )
101
102 ENDIF
103
104 RETURN
105 END

  ViewVC Help
Powered by ViewVC 1.1.22