c ------------------------------------------------------------------ c file 'h1temp.inc' c This common block contains the state variables relating to c the soil temperature values by layer generated within HYDROLOGY. c Parameter include files: c + + + VARIABLE DECLARATIONS + + + real ahtsav(mnsz,mnsub) real ahtsmx(mnsz,mnsub) real ahtsmn(mnsz,mnsub) common / h1temp / r ahtsav, ahtsmx, ahtsmn c + + + VARIABLE DEFINITIONS + + + c ahtsav - Mean daily soil temperature (deg C) c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c - This variable contains the value of the mean daily c soil temperature. c ahtsmx - Maximum daily soil temperature (deg C) c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c - This variable contains the value of the maximum daily c soil temperature. c ahtsmn - Minimum daily soil temperature (deg C) c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c - This variable contains the value of the minimum daily c soil temperature. c ------------------------------------------------------------------