c ------------------------------------------------------------------ c file 'c1glob.inc' c c This common block contains variables representing the crop c database properties for each subregion. These variables c are used to estimate crop geometric properties. c c Parameter include files: p1werm.inc c c + + + VARIABLE DECLARATIONS + + + c real acz(mnsub) real aczrtd(mnsub) real acmst(mnsub) real acmrt(mnsub) real acrahi(mnsub) c common / c1glob / r acz, aczrtd, acmst, acmrt, acrahi c c + + + VARIABLE DEFINITIONS + + + c c acz - Crop height (m) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the daily crop height c for each of the subregions. c c aczrtd - Crop root depth (m) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the daily crop root c depth for each of the subregions. c c acmst - Standing crop mass - above ground (kg) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the daily above ground c standing crop mass for each of the subregions. c c acmrt - Crop root mass (kg) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the daily crop root c mass for each of the subregions. c c acrahi - Adjusted crop harvest index (kg/kg) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the adjusted daily crop c harvest index for each of the subregions. c c ------------------------------------------------------------------