Compute MIL-spec turbulence parameters for given conditions.
Implements the turbulence intensity and scale length equations from MIL-F-8785C and MIL-HDBK-1797.
For low altitude (h < 1000 ft / 304.8 m):
- L_w = h
- L_u = L_v = h / (0.177 + 0.000823*h)^1.2
- σ_w = 0.1 * W_20
- σ_u = σ_w / (0.177 + 0.000823*h)^0.4
- σ_v = σ_u
For medium/high altitude (h >= 1000 ft / 304.8 m):
- L_u = L_v = L_w = 533.4 m (1750 ft)
- σ_u = σ_v = σ_w (from probability of exceedance)
- Parameters
-
| altitude | Altitude above ground level [m] |
| severity | Turbulence severity level |
- Returns
- TurbulenceParams with appropriate σ and L values