!$Author: wjr $ !$Date: 2012-03-30 09:46:26 -0500 (Fri, 30 Mar 2012) $ !$Revision: 12162 $ !$HeadURL: https://svn.weru.ksu.edu/weru/weps1/trunk/weps.src/src/inc/s1dbh.inc $ ! ------------------------------------------------------------------ ! file 's1dbh.inc' ! ! This common block contains the variables representing intrinsic ! soil properties of particle size (sand, silt, and clay) which are ! used by HYDROLOGY for each soil layer. ! ! Parameter include files: p1werm.inc ! ! + + + VARIABLE DECLARATIONS + + + ! real asoilLayrSand(0:maxSoilLayr, maxNumSubRegs) real asoilLayrSilt(0:maxSoilLayr, maxNumSubRegs) real asoilLayrClay(0:maxSoilLayr, maxNumSubRegs) real asoilLayrRock(0:maxSoilLayr, maxNumSubRegs) real asfvcs(maxSoilLayr, maxNumSubRegs) real asfcs(maxSoilLayr, maxNumSubRegs) real asfms(maxSoilLayr, maxNumSubRegs) real asffs(maxSoilLayr, maxNumSubRegs) real asfvfs(maxSoilLayr, maxNumSubRegs) real asfwdc(maxSoilLayr, maxNumSubRegs) ! Not used - not input in Version 1.0 IFC file ! common / s1dbh / & & asoilLayrSand, asoilLayrSilt, asoilLayrClay, asoilLayrRock,& & asfvcs, asfcs, asfms, asffs, asfvfs, asfwdc save :: /s1dbh/ ! ! + + + VARIABLE DEFINITIONS + + + ! ! asoilLayrSand - Soil layer sand content (Mg/Mg) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical dependent on silt and clay ! ------------ --------- --------- ! ! - This variable contains the soil layer sand content ! for each of the subregions. ! ! asoilLayrSilt - Soil layer silt content (Mg/Mg) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical dependent on clay and sand ! ------------ --------- --------- ! ! - This variable contains the soil layer silt content ! for each of the subregions. ! ! asoilLayrClay - Soil layer clay content (Mg/Mg) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical dependent on sand and silt ! ------------ --------- --------- ! ! - This variable contains the soil layer clay content ! for each of the subregions. ! ! asoilLayrRock - Soil layer coarse fragments (m^3/m^3) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical ! ------------ --------- --------- ! ! - This variable contains the soil layer coarse ! fragment (>2mm) content for each of the subregions. ! ! asfvcs - Soil layer content of very coarse sand (Mg/Mg) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical ! ------------ --------- --------- ! ! - This variable contains the soil layer coarse sand ! (1.0 - x.0 mm) content for each of the subregions. ! ! ! asfcs - Soil layer content of coarse sand (Mg/Mg) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical ! ------------ --------- --------- ! ! - This variable contains the soil layer coarse sand ! (0.5 - 1.0 mm) content for each of the subregions. ! ! asfms - Soil layer content of medium sand (Mg/Mg) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical ! ------------ --------- --------- ! ! - This variable contains the soil layer medium sand ! (0.25 - 0.5 mm) content for each of the subregions. ! ! asffs - Soil layer content of fine sand (Mg/Mg) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical ! ------------ --------- --------- ! ! - This variable contains the soil layer fine sand ! (0.1 - 0.25 mm) content for each of the subregions. ! ! asfvfs - Soil layer content of very fine sand sand (Mg/Mg) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical ! ------------ --------- --------- ! ! - This variable contains the soil layer very fine sand ! (0.05 - 0.1 mm) content for each of the subregions. ! ! asfwdc - Soil layer content of water dispersible clay (Mg/Mg) ! ! range values min max ! ------------ --------- --------- ! fixed 0.0 1.0 ! typical ! ------------ --------- --------- ! ! - This variable contains the soil layer water dispersible ! clay content for each of the subregions. ! ------------------------------------------------------------------