Commit 76474608 authored by Gesa Meyer's avatar Gesa Meyer Committed by Joe Melton
Browse files

Make DELZ the same for all sites, correct some comments explaining variables,...

Make DELZ the same for all sites, correct some comments explaining variables, add possible variables to site-level plotting scripts
parent fa32c478
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -485,7 +485,7 @@ Cmossmas = 0.0 ;

// Ground layer thickness (layer)
DELZ = 
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.3, 0.4, 0.5, 1.0, 2.0, 5.0, 16.0, 30.0, 5.0 ;
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.3, 0.4, 0.5, 1.0, 3.0, 5.0, 15.0, 30.0, 5.0 ;

// Soil drainage index
DRN = 0.1 ;
+1 −1
Original line number Diff line number Diff line
@@ -485,7 +485,7 @@ Cmossmas = 0.0 ;

// Ground layer thickness (layer)
DELZ = 
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.5, 1.0, 3.0, 7.0, 15.0, 18.0, 30.0, 5.0 ;
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.3, 0.4, 0.5, 1.0, 3.0, 5.0, 15.0, 30.0, 5.0 ;

// Soil drainage index
DRN = 0.1 ;
+1 −1
Original line number Diff line number Diff line
@@ -485,7 +485,7 @@ Cmossmas = 0.0 ;

// Ground layer thickness (layer)
DELZ = 
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.3, 0.5, 1.0, 2.0, 3.0, 5.0, 15.0, 30.0, 5.0 ;
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.3, 0.4, 0.5, 1.0, 3.0, 5.0, 15.0, 30.0, 5.0 ;

// Soil drainage index
DRN = 0.1 ;
+1 −1
Original line number Diff line number Diff line
@@ -485,7 +485,7 @@ Cmossmas = 0.0 ;

// Ground layer thickness (layer)
DELZ = 
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.3, 0.5, 1.0, 2.0, 4.0, 7.0, 15.0, 30.0, 5.0 ;
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.3, 0.4, 0.5, 1.0, 3.0, 5.0, 15.0, 30.0, 5.0 ;

// Soil drainage index
DRN = 0.1 ;
+4 −4
Original line number Diff line number Diff line
@@ -449,10 +449,10 @@ module ctemStateVars
    real, dimension(ilg)   :: co2conc    !< ATMOS. CO2 CONC. IN PPM
    real, dimension(ilg)   :: ch4conc    !<

    real, dimension(ilg,icc) :: co2i1cg    !< INTERCELLULAR CO2 CONC FOR 8 PFTs FOR CANOPY OVER GROUND SUBAREA (Pa) - FOR SINGLE/SUNLIT LEAF
    real, dimension(ilg,icc) :: co2i1cs    !< SAME AS ABOVE BUT FOR SHADED LEAF (above being co2i1cg)
    real, dimension(ilg,icc) :: co2i2cg    !< INTERCELLULAR CO2 CONC FOR 8 PFTs FOR CANOPY OVER SNOWSUBAREA (Pa) - FOR SINGLE/SUNLIT LEAF
    real, dimension(ilg,icc) :: co2i2cs    !< SAME AS ABOVE BUT FOR SHADED LEAF (above being co2i2cg)
    real, dimension(ilg,icc) :: co2i1cg    !< Intercellular CO2 concentration for CTEM PFTs for canopy over ground subarea (Pa) - for single/sunlit leaf
    real, dimension(ilg,icc) :: co2i1cs    !< Intercellular CO2 concentration for CTEM PFTs for canopy over snow subarea (Pa) - for single/sunlit leaf
    real, dimension(ilg,icc) :: co2i2cg    !< Intercellular CO2 concentration for CTEM PFTs for canopy over ground subarea (Pa) - for shaded leaf
    real, dimension(ilg,icc) :: co2i2cs    !< Intercellular CO2 concentration for CTEM PFTs for canopy over snow subarea (Pa) - for shaded leaf
    real, dimension(ilg,icc) :: ancsveg    !< net photosynthetic rate for ctems 9 pfts for canopy over snow subarea
    real, dimension(ilg,icc) :: ancgveg    !< net photosynthetic rate for ctems 9 pfts for canopy over ground subarea
    real, dimension(ilg,icc) :: rmlcsveg   !< leaf respiration rate for ctems 9 pfts forcanopy over snow subarea
Loading