/[MITgcm]/MITgcm/pkg/land/LAND_PARAMS.h
ViewVC logotype

Diff of /MITgcm/pkg/land/LAND_PARAMS.h

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

revision 1.1 by jmc, Thu Jun 12 17:54:22 2003 UTC revision 1.4 by jmc, Fri May 14 16:14:48 2004 UTC
# Line 11  C     |   - vertical discretization Line 11  C     |   - vertical discretization
11  C     *==========================================================*  C     *==========================================================*
12    
13  C--   COMMON /LAND_PAR_L/: logical parameters  C--   COMMON /LAND_PAR_L/: logical parameters
14  C     land_calc_grT :: step forward ground Temperature  C     land_calc_grT  :: step forward ground Temperature
15  C     land_calc_grW :: step forward soil moiture  C     land_calc_grW  :: step forward soil moiture
16    C     land_impl_grT  :: solve ground Temperature implicitly
17    C     land_calc_snow :: step forward snow thickness
18    C     land_calc_alb  :: compute albedo of snow over land
19    C     land_oldPickup :: restart from an old pickup (= before checkpoint 52l_pre)
20        COMMON /LAND_PAR_L/        COMMON /LAND_PAR_L/
21       &  land_calc_grT, land_calc_grW       &    land_calc_grT, land_calc_grW,
22         &    land_impl_grT, land_calc_snow,
23         &    land_calc_alb, land_oldPickup
24        LOGICAL land_calc_grT        LOGICAL land_calc_grT
25        LOGICAL land_calc_grW        LOGICAL land_calc_grW
26          LOGICAL land_impl_grT
27          LOGICAL land_calc_snow
28          LOGICAL land_calc_alb
29          LOGICAL land_oldPickup
30    
31    C--   COMMON /LAND_PAR_C/: Character valued parameters
32    C     land_grT_iniFile  :: File containing initial ground Temp.
33    C     land_grW_iniFile  :: File containing initial ground Water.
34    C     land_snow_iniFile :: File containing initial snow thickness.
35          COMMON /LAND_PAR_C/
36         &    land_grT_iniFile, land_grW_iniFile, land_snow_iniFile
37          CHARACTER*(MAX_LEN_FNAM) land_grT_iniFile
38          CHARACTER*(MAX_LEN_FNAM) land_grW_iniFile
39          CHARACTER*(MAX_LEN_FNAM) land_snow_iniFile
40    
41  C--   COMMON /LAND_PAR_R/: real-type parameters  C--   COMMON /LAND_PAR_R/: real-type parameters
42  C     land_deltaT     :: land model time-step  C     land_deltaT     :: land model time-step
43  C     land_taveFreq   :: Frequency^-1 for time-Aver. output (s)  C     land_taveFreq   :: Frequency^-1 for time-Aver. output (s)
44  C     land_diagFreq   :: Frequency^-1 for diagnostic output (s)  C     land_diagFreq   :: Frequency^-1 for diagnostic output (s)
45  C     land_grdLambda  :: Thermal conductivity of the ground (W.m-1.K-1)  C     land_monFreq    :: Frequency^-1 for monitor    output (s)
46  C     land_heatCs     :: Heat capacity of dry soil (J.m-3.k_1)  C     land_grdLambda  :: Thermal conductivity of the ground (W/m/K)
47  C     land_heatCw     :: Heat capacity of water    (J.m-3.k_1)  C     land_heatCs     :: Heat capacity of dry soil (J/m3/K)
48    C     land_CpWater    :: Heat capacity of water    (J/kg/K)
49  C     land_wTauDiff   :: soil moisture diffusion time scale (s)  C     land_wTauDiff   :: soil moisture diffusion time scale (s)
50  C     land_waterCap   :: field capacity per meter of soil (1)  C     land_waterCap   :: field capacity per meter of soil (1)
51  C     land_fractRunOff:: fraction of water in excess which run-off (1)  C     land_fractRunOff:: fraction of water in excess which run-off (1)
52    C     land_rhoSnow    :: density of snow (kg/m3)
53    C     land_rhoLiqW    :: density of liquid water (kg/m3)
54    C     land_Lfreez     :: Latent heat of freezing (J/kg)
55    C     recip_Lfreez    :: reciprol of Latent heat (kg/J)
56    C     land_hMaxSnow   :: Maximum snow-thickness  (m)
57    C     diffKsnow       :: thermal conductivity of snow (W/m/K)
58    C     timeSnowAge     :: snow aging time scale   (s)
59    C     hNewSnowAge     :: new snow thickness that refreshes snow-age (by 1/e)
60    C     albColdSnow     :: albedo of cold (=dry) new snow (Tsfc < -10)
61    C     albWarmSnow     :: albedo of warm (=wet) new snow (Tsfc = 0)
62    C     albOldSnow      :: albedo of old snow (snowAge > 35.d)
63    C     hAlbSnow        :: snow thickness for albedo transition: snow/ground
64    
65        COMMON /LAND_PAR_R/        COMMON /LAND_PAR_R/
66       &    land_deltaT, land_taveFreq, land_diagFreq,       &    land_deltaT, land_taveFreq, land_diagFreq, land_monFreq,
67       &    land_grdLambda, land_heatCs, land_heatCw,       &    land_grdLambda, land_heatCs, land_CpWater,
68       &    land_wTauDiff, land_waterCap, land_fractRunOff       &    land_wTauDiff, land_waterCap, land_fractRunOff,
69         &    land_rhoLiqW,
70         &    land_rhoSnow, land_Lfreez, recip_Lfreez,
71         &    land_hMaxSnow, diffKsnow, timeSnowAge, hNewSnowAge,
72         &    albColdSnow, albWarmSnow, albOldSnow, hAlbSnow
73    
74        _RL land_deltaT, land_taveFreq, land_diagFreq        _RL land_deltaT, land_taveFreq, land_diagFreq, land_monFreq
75        _RL land_grdLambda, land_heatCs, land_heatCw        _RL land_grdLambda, land_heatCs, land_CpWater
76        _RL land_wTauDiff, land_waterCap, land_fractRunOff        _RL land_wTauDiff, land_waterCap, land_fractRunOff
77          _RL land_rhoLiqW
78          _RL land_rhoSnow, land_Lfreez, recip_Lfreez
79          _RL land_hMaxSnow, diffKsnow, timeSnowAge, hNewSnowAge
80          _RL albColdSnow, albWarmSnow, albOldSnow, hAlbSnow
81    
82  C--   COMMON /LAND_GRID_R/: layer dependent parameters  C--   COMMON /LAND_GRID_R/: layer dependent parameters
83  C     land_dzF        :: layer thickness  C     land_dzF        :: layer thickness

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.22