c ------------------------------------------------------------------ c file 'p1unconv.inc' c These parameter variables are used for unit conversion values c within WERM to make the coding more readable and maintainable. c Generally, only common unit conversions likely to be used c throughout the WERM coding should reside here. Conversion units c used locally in the WERM coding should be defined in separate c parameter include files. c These parameter values may be consulted from within any sections c of the WERM code if this file has been included. real mtomm integer hrday c + + + VARIABLE DECLARATIONS + + + parameter (mtomm = 1000.0) parameter (hrday = 24) c + + + VARIABLE DEFINITIONS + + + c mtomm - Unit conversion constant (mm/m) c hrday - Number of hours in a day (hrs/day) c ------------------------------------------------------------------