!$Author: wjr $ !$Date: 2012-03-30 09:46:26 -0500 (Fri, 30 Mar 2012) $ !$Revision: 12162 $ !$HeadURL: https://svn.weru.ksu.edu/weru/weps1/trunk/weps.src/src/inc/w1wind.inc $ ! ------------------------------------------------------------------ ! file 'w1wind.inc' ! This common block contains the state variables relating to ! the daily WERM weather parameters generated by the WIND weather ! generator. ! Parameter include files: p1werm.inc ! + + + VARIABLE DECLARATIONS + + + real windDir real windSped real maxMinWindSpedRatio real dailyMaxWindSped real dailyMinWindSped real dailyAvgWindSped real avgWindSped(maxTimeStepDay) real avgWindDir(maxTimeStepDay) character*80 awwisn common / w1wind / & & windDir, windSped, maxMinWindSpedRatio, & & dailyMaxWindSped, dailyMinWindSped, & & dailyAvgWindSped, avgWindSped, avgWindDir, & & awwisn save :: /w1wind/ ! + + + VARIABLE DEFINITIONS + + + ! windDir - Predominant daily wind direction (degrees) ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! - This variable contains the value of the predominant ! daily wind direction. ! windSped - Hour maximum daily wind speed occurs (hr) ! range values min max ! ------------ --------- --------- ! fixed 1 24 ! typical tmin tmax ! ------------ --------- --------- ! - This variable contains the hour at which the maximum ! daily wind speed occurs. ! maxMinWindSpedRatio - Daily maximum/minimum ratio ! not used ! range values min max ! ------------ --------- --------- ! fixed 0 fmax ! typical tmin tmax ! ------------ --------- --------- ! - This variable contains the ratio of the maximum to ! minimum wind speed for the day. ! dailyMaxWindSped - Maximum daily wind speed (m/s) ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! - This variable contains the value of the maximum daily ! wind speed. ! dailyMinWindSped - Minimum daily wind speed (m/s) ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! - This variable contains the value of the minimum daily ! wind speed. ! dailyAvgWindSped - Average daily wind speed (m/s) ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! - This variable contains the value of the average daily ! wind speed. ! avgWindSped - Average subdaily wind speed (m/s) ! range values min max ! ------------ --------- --------- ! fixed 0 fmax ! typical 0 tmax ! ------------ --------- --------- ! - This variable contains the value of the average subdaily ! wind speeds for the day (valid only when wind speed is ! greater than the threshold velocity). ! avgWindDir - Average subdaily wind direction (degrees) ! range values min max ! ------------ --------- --------- ! fixed fmin fmax ! typical tmin tmax ! ------------ --------- --------- ! - This variable contains the value of the average subdaily ! wind direction corresponding to the average subdaily wind ! speed for the subdaily period. ! ------------------------------------------------------------------