-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindcheck.py
64 lines (52 loc) · 2.28 KB
/
windcheck.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# SL100 Preflight Wind check
import math
import sys
assert sys.version_info.major == 3, "Must be run in Python 3"
def psf_to_inhg(psf):
"""Convert lb/ft^2 to inches of mercury."""
return psf * 0.014139030952735
def inhg_to_psf(inhg):
"""Convert inches of mercury to lb/ft^2."""
return inhg * 70.72620488228
def pres_to_elev(inhg):
"""Given a pressure in inHg, determine the altitude (MSL) it normally
occurs at (distance from 29.92)."""
return inhg * 100
def elev_to_pres(elev):
"""Given an elevation in feet, determine the pressure level it normally
occurs at."""
return elev / 100
def determine_suitable_lda(displace_elev, margin):
"""Given a displacement elevation and safety marign, determine the
minimum acceptable LDA settings."""
return displace_elev * margin
def main():
wind_speed = float(input("Enter wind speed in miles per hour: "))
lda_alt = float(input("Enter launch detect altitude in feet: "))
margin = float(input("Enter safety margin in percent: ")) / 100 + 1
lda_alt *= margin
wind_pres = wind_speed**2 * 0.00256 # lb/ft^2
wind_pres = psf_to_inhg(wind_pres) # inHg
displace_elev = pres_to_elev(wind_pres) # feet
print("===========================================")
print("Debug/verification information:")
print("lda_alt: {} ft".format(lda_alt))
print("wind_pres: {} inHg".format(wind_pres))
print("displace_elev: {} ft".format(displace_elev))
print("===========================================")
print("Launch advice:")
if displace_elev*margin > 300:
print("Displacement elevation outside tolerable standards; abort launch")
elif displace_elev > lda_alt:
print("Displacement elevation greater than current lauch detection altitude;"
" increase LDA to {} or greater".format(
determine_suitable_lda(displace_elev, margin)))
else:
max_wind_pres = inhg_to_psf(elev_to_pres(lda_alt * margin))
max_wind_speed = math.sqrt(max_wind_pres / 0.00256)
max_wind_speed = math.floor(max_wind_speed)
print("Launch conditions acceptable. "
"Maximum wind for given LDA is {} mph".format(max_wind_speed))
print("===========================================")
if __name__ == '__main__':
main()