Wind calculation model (Heat Overlay): Difference between revisions
(→Step 7) |
|||
| Line 17: | Line 17: | ||
# Using these values, select the correct formula parameters from the McDonald 2000 table for <math>d</math>, <math>z_w</math>, <math>z_0</math>, <math>A</math> and <math>B</math> | # Using these values, select the correct formula parameters from the McDonald 2000 table for <math>d</math>, <math>z_w</math>, <math>z_0</math>, <math>A</math> and <math>B</math> | ||
# Using the obtained parameters, calculate the wind translation factor. | # Using the obtained parameters, calculate the wind translation factor. | ||
# Obtain the wind speed at <math>u_{1,2}</math> by multiplying the wind translation factor with the <math>u_{10}</math> measured at the weather station. | # Obtain the wind speed at <math>u_{1,2}</math> by multiplying the wind translation factor with the <math>u_{10}</math> measured at the weather station. Since the wind speed can still be too low, apply a correction formula to <math>u_{1,2}</math> to obtain the end result. | ||
==Step 4== | ==Step 4== | ||
Revision as of 15:24, 20 September 2019
The wind speed on streetlevel (1.2 meter) is calculated using a translation of the 10 meter wind speed measured at a weather station. A single reduction field per wind direction can be calculated, which in turn can be multiplied with the 10 meter wind speed to obtain the wind speed at streetlevel. The calculation model is based on the McDonald (2000) method for wind in cities. It uses the vertical surfaces of buildings perpendicular to the wind direction to determine in what way the wind speed is slowed down. The DPRA Heat stress report has extended this method with perpendicular vertical tree surfaces as well.
Implementation
Our implementation differs slightly from the implementation described by DPRA Heat stress report. It does not do cubic interpolation from coarse grids to more detailed grids. We do all operations on a detailed grid.
Our implementation is as followed:
Average window
First of all, the wind window has to be selected. If the wind speed is lower than 1.5 m/s, a window of 175 by 175 is used for averaging. Else a window of 140x280 is taken. See the image below:
Per grid cell
Per wind window grid cell:
- Determine the average obstacle height per square meter. Buildings and trees lower than 2 meters are not taken into account. It is divided by the area of the search window.
- Determine the average vertical building surface perpendicular to the wind direction. Again this is divided by the area of the search window.
- Determine the frontal surface compactness factor Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \lambda} , separately for buildings and trees.
- Determine the average height of trees, with 4 meters as minimum value.
- Using these values, select the correct formula parameters from the McDonald 2000 table for Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle d} , , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle z_0} , and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle B}
- Using the obtained parameters, calculate the wind translation factor.
- Obtain the wind speed at Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle u_{1,2}} by multiplying the wind translation factor with the Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle u_{10}} measured at the weather station. Since the wind speed can still be too low, apply a correction formula to Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle u_{1,2}} to obtain the end result.
Step 4
Calculate the Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \lambda_{cor}} using the Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \lambda_{buildings}} and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \lambda_{foliage}} .
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \lambda_{cor} = 0.6 \cdot \lambda_{buildings} + 0.3 \cdot \lambda_{foliage} + 0.015}
Step 5
Calculate the average obstacle height Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle H} , where a minimum height threshold of 4 is used. This means it is always at least 4 meters high.
Step 6
Select the function parameters Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle d} , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle z_w} , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle z_0} , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle A} and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle B} from the table using Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle H} and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \lambda_{cor}} :
| Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \lambda_{cor}} | Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{d}{H}} | Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{z_w}{H}} | Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{z_0}{H}} | Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{A}{H}} | Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle B} |
|---|---|---|---|---|---|
| 0.05 (<0.08) | 0.066 | 2 | 0.048 | -0.35 | 0.56 |
| 0.11 (<0.135) | 0.26 | 2.5 | 0.071 | -0.35 | 0.50 |
| 0.16 (<0.18) | 0.32 | 2.7 | 0.084 | -0.34 | 0.48 |
| 0.20 (<0.265) | 0.47 | 1.5 | 0.08 | -0.56 | 0.66 |
| 0.33 (>=0.265) | 0.57 | 1.2 | 0.077 | -0.85 | 0.92 |
Step 6
Calculate the translated intermediate wind speeds:
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle u_{zw} = u_{60} \cdot \frac{ \ln (\frac{z_w-d}{z_0})}{ \ln (\frac{60-d}{z_0})}}
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle u^* = 0.4 \cdot \frac{u_{60}}{\ln (\frac{60 - d}{z_0})}}
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle u_{H} = \frac{-u^*}{B} \ln \frac{A+B_{zw}}{A+B_H} +U_{zw}}
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle u_{1.2} = u_{H} \exp(9.8 \cdot \lambda \cdot (\frac{1.2}{H}-1))}
Step 8
The obtained wind speed Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle u_{1.2}} can be too low. Therefore it is corrected with the following formula:
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle u_{1.2 corr} = u_{10} \cdot ((u_{1.2} - 0.0796) \cdot 0.9175 + 0.1254)}
This corrected value is used in the formula for PET.




