c ------------------------------------------------------------------ c file 'main\w1win.inc' c This common block contains the buffers that wingen data is read into C Edit History C 08-Mar-99 wjr created C c Parameter include files: p1werm.inc c + + + VARIABLE DECLARATIONS + + + integer wwd(mndayr) integer wwm(mndayr) integer wwy(mndayr) real wwadir(mndayr) real wwudmx(mndayr) real wwudmn(mndayr) real wwhrmx(mndayr) c New variables for reading in wind_gen2 data real wawu(mntime,mndayr) real wawudav(mndayr) real wewudav(mndayr) real twe(mndayr) common /w1win/ r wwadir, wwudmx, wwudmn, wwhrmx, r wawu, wewudav, wawudav, twe, i wwd, wwm, wwy C the following definitions don't match the variables declared. C this should be fixed. c NOTE: these came directly from w1wind.inc, that is why they are not correct. c LEW - Wed Nov 8 08:54:56 CST 2000 c + + + VARIABLE DEFINITIONS + + + c wwadir - Predominant daily wind direction (degrees) c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c - This variable contains the value of the predominant c daily wind direction. c wwhrmx - Hour maximum daily wind speed occurs (hr) c range values min max c ------------ --------- --------- c fixed 1 24 c typical tmin tmax c ------------ --------- --------- c - This variable contains the hour at which the maximum c daily wind speed occurs. c wwrmxn - Daily maximum/minimum ratio c range values min max c ------------ --------- --------- c fixed 0 fmax c typical tmin tmax c ------------ --------- --------- c - This variable contains the ratio of the maximum to c minimum wind speed for the day. c wwudmx - Maximum daily wind speed (m/s) 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 wind speed. c wwudmn - Minimum daily wind speed (m/s) 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 wind speed. c wawudav - Average daily wind speed (m/s) c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c - This variable contains the value of the average daily c wind speed. c wewudav - Average daily wind speed (m/s) (to obtain the daily wind energy) c range values min max c ------------ --------- --------- c fixed fmin fmax c typical tmin tmax c ------------ --------- --------- c - This variable contains the value of the average daily c wind speed that would generate the total wind energy for the day. c wawu - Subdaily (hourly) wind speeds (m/s) c range values min max c ------------ --------- --------- c fixed 0 fmax c typical 0 tmax c ------------ --------- --------- c - This variable contains the value of the (hourly) subdaily c wind speeds for the day. c twe - Daily total wind energy (KJ) c range values min max c ------------ --------- --------- c fixed 0 fmax c typical 0 tmax c ------------ --------- --------- c - This variable contains the total daily wind energy value. c ------------------------------------------------------------------