! ------------------------------------------------------------------ ! file 'h1db1.inc' ! ! This common block contains the variables representing the soil ! hydrologic properties in WERM for each soil layer. ! ! Parameter include files: p1werm.inc ! ! + + + VARIABLE DECLARATIONS + + + ! real ahrwcw(mnsz, mnsub) real ahrwcf(mnsz, mnsub) real ahrwcs(mnsz, mnsub) real ahrwca(mnsz, mnsub) real ahrwc0(mnhhrs, mnsub) real ahzsnd(mnsub) real ahrwc1(mnsz,mnsub) ! common / h1db1 / & & ahrwcw, ahrwcf, ahrwcs, ahrwca, ahrwc0, ahzsnd, & & ahrwc1 ! ! + + + VARIABLE DEFINITIONS + + + ! ! ahrwcw - Soil layer wilting point water content (kg/kg) ! ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! ! - This variable contains the wilting point soil layer ! gravimetric water content for each of the subregions. ! ! ahrwcf - Soil layer field capacity water content (kg/kg) ! ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! ! - This variable contains the field capacity soil layer ! gravimetric water content for each of the subregions. ! ! ahrwcs - Soil layer saturated water content (kg/kg) ! ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! ! - This variable contains the soil layer saturated ! gravimetric water content for each of the subregions. ! ! ahrwca - Available soil layer water content (kg/kg) ! ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! ! - This variable contains the available gravimetric soil ! layer water content for each of the subregions. ! ! ahrwc0 - surface soil water content (kg/kg) ! ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! ! - This variable contains the hourly gravimetric soil ! surface water content for each of the subregions. ! ! ahzsnd - snow depth (mm) ! ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! ! - This variable contains the depth of snow ! for each of the subregions. ! ! ahrwc1 - Soil layer water content at 0.1 bar (kg/kg) ! ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! ! - This variable contains the 0.1 bar soil layer ! gravimetric water content for each of the subregions. ! ------------------------------------------------------------------