1 |
jscott |
1.3 |
C $Header: /u/gcmpack/MITgcm/pkg/atm2d/DRIVER.h,v 1.5 2007/10/15 14:52:29 jscott Exp $ |
2 |
|
|
C $Name: $ |
3 |
|
|
|
4 |
jscott |
1.1 |
COMMON /DRIVER_VARS/ |
5 |
|
|
& dtcouple, dtatm, dtocn, startYear, endYear, taveDump, |
6 |
|
|
& ncall_atm, ncall_ocean |
7 |
|
|
INTEGER dtcouple ! coupling period (hrs) |
8 |
|
|
INTEGER dtatm ! atmos time step (hrs) |
9 |
|
|
INTEGER dtocn ! ocean time step (hrs) |
10 |
|
|
INTEGER startYear ! starting year of simulation (jan 1) |
11 |
|
|
INTEGER endYear ! ending year of simulation (dec 31) |
12 |
jscott |
1.3 |
INTEGER taveDump ! frequency of tave dumps for atm2ocn fluxes (yrs) |
13 |
|
|
INTEGER ncall_atm ! number of atm steps in a coupling period |
14 |
|
|
INTEGER ncall_ocean ! number of ocn steps in a coupling period |
15 |
|
|
|
16 |
|
|
|
17 |
|
|
COMMON /DRIVER_FILENAMES/ |
18 |
|
|
& caruptfile, fnememiss, last_nep |
19 |
|
|
CHARACTER*120 caruptfile, fnememiss, last_nep |
20 |
jscott |
1.1 |
|
21 |
|
|
#ifdef CPL_TEM |
22 |
|
|
COMMON /DRIVER_VAR_TEM/ |
23 |
|
|
& nepan, nepav, n2oann, n2omn, nepmn, |
24 |
|
|
& aocuav, ch4ann, ch4mn, xco2ann, nfile |
25 |
|
|
REAL*4 nepan, nepav, n2oann, n2omn, nepmn |
26 |
|
|
REAL*4 aocuav, ch4ann, ch4mn, xco2ann |
27 |
|
|
INTEGER nfile |
28 |
|
|
#endif |
29 |
|
|
|
30 |
jscott |
1.3 |
#ifdef CPL_OCEANCO2 |
31 |
jscott |
1.2 |
# include "OCM.h" |
32 |
jscott |
1.1 |
COMMON /DRIVER_VAR_CO2/ |
33 |
|
|
& ocumn, ocuptp, fluxco2mn |
34 |
|
|
REAL*4 ocumn |
35 |
|
|
REAL*4 ocuptp |
36 |
|
|
REAL*4 fluxco2mn(jm0) |
37 |
|
|
|
38 |
|
|
COMMON /GARYFLUX/pC_atm, wind_amp, fluxco2 |
39 |
|
|
REAL*4 pC_atm(jm0) |
40 |
|
|
REAL*4 wind_amp |
41 |
|
|
REAL*4 fluxco2(jm0) |
42 |
|
|
#endif |
43 |
|
|
|
44 |
|
|
#ifdef IPCC_EMI |
45 |
|
|
COMMON /DRIVER_VAR_IPCC/nemis |
46 |
|
|
INTEGER nemis |
47 |
|
|
|
48 |
|
|
COMMON/ BACKGRGHG/ghgbgr |
49 |
|
|
REAL*4 ghgbgr(5) |
50 |
|
|
#endif |
51 |
|
|
|
52 |
jscott |
1.3 |
#ifdef CLM |
53 |
jscott |
1.2 |
# include "CLM.h" |
54 |
jscott |
1.3 |
# ifdef CPL_TEM |
55 |
jscott |
1.2 |
# include "TEM.h" |
56 |
jscott |
1.1 |
external tem2climate,updatelcluc,tem,tem_init,lcluc_init, |
57 |
|
|
& temclm_init |
58 |
|
|
# endif |
59 |
|
|
#endif |