| 1 |
jscott |
1.1 |
COMMON/ATM_GRID/atm_yC,atm_yG |
| 2 |
|
|
REAL*4 atm_yC(jm0) ! center points of atmos grid |
| 3 |
|
|
REAL*4 atm_yG(jm0) ! southern boundary of atmos grid cells |
| 4 |
|
|
|
| 5 |
|
|
COMMON/ATM2OCEAN/hfluxo,hfluxi,dhfodtg,dhfodtgeq, |
| 6 |
|
|
& dhfidtg,dhfidtgeq,precip,evao,evai,devodtg,devodtgeq, |
| 7 |
|
|
& devidtg,devidtgeq,tauu,tauv,arunoff,solarinc_ice,solarnet_ice, |
| 8 |
|
|
& solarinc_ocean,solarnet_ocean,wsocean,co24ocean,ps4ocean,tempr |
| 9 |
|
|
|
| 10 |
|
|
REAL*8 hfluxo(jm0) ! ocean surf. heat flux (W/m2) (+=downward) |
| 11 |
|
|
REAL*8 hfluxi(jm0) ! seaice surf. heat flux (W/m2) (+=downward) |
| 12 |
|
|
REAL*8 dhfodtg(jm0) ! dF/dT ocean, consistent with above units (-) |
| 13 |
|
|
REAL*8 dhfodtgeq(jm0) ! dF/dT ocean, alternative formulation |
| 14 |
|
|
REAL*8 dhfidtg(jm0) ! dF/dT seaice |
| 15 |
|
|
REAL*8 dhfidtgeq(jm0) ! dF/dT seaice alternative formulation |
| 16 |
|
|
REAL*8 precip(jm0) ! precip (mm/day) (+=into ocean) |
| 17 |
|
|
REAL*8 evao(jm0) ! ocean evap. (mm/day) (+=out of ocean) |
| 18 |
|
|
REAL*8 evai(jm0) ! seaice evap. (mm/day) (+=out of ocean) |
| 19 |
|
|
REAL*8 devodtg(jm0) ! dL/dT ocean, consistent with above units (+) |
| 20 |
|
|
REAL*8 devodtgeq(jm0) ! dL/dT ocean, alternative formulation |
| 21 |
|
|
REAL*8 devidtg(jm0) ! dL/dT ice |
| 22 |
|
|
REAL*8 devidtgeq(jm0) ! dL/dT ice, alternative formulation |
| 23 |
|
|
REAL*8 tauu(jm0) ! zonal mom flux at lower boundary (N/m2) |
| 24 |
|
|
REAL*8 tauv(jm0) ! merid. mom flux at lower boundary (N/m2) |
| 25 |
|
|
REAL*8 arunoff(jm0) ! runoff (kg/day) (+=into ocean) |
| 26 |
|
|
REAL*8 solarinc_ice(jm0) ! solar incoming (+=into ocean) |
| 27 |
|
|
REAL*8 solarnet_ice(jm0) ! net solar radation to ice (not used) |
| 28 |
|
|
REAL*8 solarinc_ocean(jm0) ! solar incoming (+=into ocean)(unused) |
| 29 |
|
|
REAL*8 solarnet_ocean(jm0) ! net radiation solar to ocean |
| 30 |
|
|
REAL*8 wsocean(jm0) ! windspeed at ocean surface (m/s) |
| 31 |
|
|
REAL*8 co24ocean(jm0) ! atmospheric CO2 (ppm) |
| 32 |
|
|
REAL*8 ps4ocean(jm0) ! SLP (mb), needs to be normalized(?) |
| 33 |
|
|
REAL*8 tempr(jm0) ! precipitation temp (used over seaice) (C) |
| 34 |
|
|
|
| 35 |
|
|
|
| 36 |
|
|
COMMON/ATM_PROF/sigfl,qyz4ocean,tyz4ocean |
| 37 |
|
|
REAL*8 sigfl(lm0) ! sigma levels of atmospheric model |
| 38 |
|
|
REAL*8 qyz4ocean(jm0,lm0) ! atmos mixing ratio structure (kg/kg) |
| 39 |
|
|
REAL*8 tyz4ocean(jm0,lm0) ! atmos temp structure (K) |
| 40 |
|
|
|
| 41 |
|
|
COMMON/OCDATA/mmsst,mmfice,mmtice,mmco2flux,cflan,mmsAlb, |
| 42 |
|
|
& mmicem, mmtice1, mmtice2, mmsnowm |
| 43 |
|
|
REAL*8 mmsst(jm0) ! zonal mean SST (C) |
| 44 |
|
|
REAL*8 mmfice(jm0) ! fraction of ocean area with seaice cover |
| 45 |
|
|
REAL*8 mmtice(jm0) ! zonal mean seaice TSurf (C) |
| 46 |
|
|
REAL*8 mmco2flux(jm0)! total ocean->atmos CO2 flux (units?) |
| 47 |
|
|
REAL*8 cflan(jm0) ! fraction of land in latitude circle |
| 48 |
|
|
REAL*8 mmsAlb(jm0) ! zonal mean seaice albedo |
| 49 |
|
|
REAL*8 mmicem(jm0) |
| 50 |
|
|
REAL*8 mmtice1(jm0) |
| 51 |
|
|
REAL*8 mmtice2(jm0) |
| 52 |
|
|
REAL*8 mmsnowm(jm0) |
| 53 |
|
|
|
| 54 |
|
|
#ifdef ML_2D |
| 55 |
|
|
common/OCEAN2ATM/osst(jm0),aoice(jm0),foice(jm0), |
| 56 |
|
|
& snowice(jm0),tice1(jm0),tice2(jm0) |
| 57 |
|
|
|
| 58 |
|
|
common /TIME4ML/TOFDAYML,TAUML,IDAYM,JDAYM,JMONTHM,JYEARM,KOCEANM |
| 59 |
|
|
& ,JDATEM |
| 60 |
|
|
character *4 JMONTHM |
| 61 |
|
|
|
| 62 |
|
|
common/mltemp/osst2(jm0),osst3(jm0),rseaice(jm0) |
| 63 |
|
|
& ,CLAND4OCEAN(io0,jm0) |
| 64 |
|
|
common/atmnth/nmonth |
| 65 |
|
|
character *4 nmonth |
| 66 |
|
|
|
| 67 |
|
|
#endif |