c ------------------------------------------------------------------ c file 'manage/tcrop.inc' c c This common block consists of variables that contain the crop c property values that are "eventually" going to be moved into the c "decomp" pools. Thus, these are used for temporary storage c before that transfer occurs, ie. like a "temporary" pool. c c Management "effects" that will deposit crop material (values) c into the "temporary" pool variables are: c c cut - standing live crop mass to temporary crop flat mass c flat - standing live crop mass to temporary crop flat mass c (does the same thing as cut at a height of zero) c kill - all crop biomass pools are moved to the temporary c mass pools. c c The "transfer" management effect then moves the values from the c temporary pool variables to the "decomp" pool variables. c c Parameter include files required: p1werm.inc c c + + + VARIABLE DECLARATIONS + + + c real tczht(mnsub) real tczrtd(mnsub) real tcmst(mnsub) real tcmf(mnsub) real tcmbg(mnsub) real tcmrt(mnsub) real tcmbgz(mnsz,mnsub) real tcmrtz(mnsz,mnsub) real tcmyld(mnsub) real tcdstm(mnsub) real tcxstm(mnsub) c common / tcrop / r tczht, tczrtd, r tcmst, tcmf, tcmrt, tcmbg, r tcmbgz,tcmrtz, tcmyld, r tcdstm,tcxstm c + + + VARIABLE DEFINITIONS + + + c c tczht - Temporary 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 temporary crop height c for each of the subregions. c c tczrtd - Temporary 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 temporary crop root c depth for each of the subregions. c c tcmst - Temporary standing crop mass - above ground (kg/m^2) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the temporary above ground c standing crop mass for each of the subregions. c c tcmf - Temporary crop flat mass (kg/m^2) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the temporary crop flat c mass for each of the subregions. c c tcmrt - Temporary total crop root mass (kg/m^2) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the temporary total crop root c mass for each of the subregions. c c tcmbg - Temporary total crop below ground biomass (kg/m^2) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the temporary total crop below c ground biomass for each of the subregions. c c tcmbgz - Temporary crop buried mass by soil layer (kg/m^2) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the temporary crop buried c mass in each soil layer for each of the subregions. c c tcmrtz - Temporary crop root mass by soil layer (kg/m^2) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the temporary crop root c mass in each soil layer for each of the subregions. c c c tcmyld - Temporary crop yield mass (kg/m^2) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the temporary crop yield c mass (reproductive components) for each of c the subregions. A flag value specifies whether c the "yield" is above ground or below ground. c See "acyflg" c1db1.inc. c c tcdstm - Number of crop stems in temporary pool (#/m^2) c c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c c - This variable contains the number of crop stems c per unit area (m^2) for each of the subregions. c It is computed by taking the tillering factor c times the plant density. c c tcxstm - Diameter of stems in temporary pool (m) c c range values min max c ------------ --------- --------- c fixed 0.0 0.05 c typical tmin tmax c ------------ --------- --------- c c - This variable specifies a typical stem diameter c for the crop at maturity for each of the subregions. c c ------------------------------------------------------------------