-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBonusAufgabe.py
176 lines (138 loc) · 6.6 KB
/
BonusAufgabe.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
### BONUS AUFGABE ###
import math
import matplotlib.pyplot as plt
import matplotlib
import numpy as np
matplotlib.use("TkAgg")
while True:
try:
h01 = int(input("Bitte geben Sie H01 ein! (in KM): "))
except ValueError:
print("Ich nehme an, Sie wollten 10 KM schreiben...")
h01 = 10
break
else:
if(h01 < 0):
print("Du bist seit lange tot")
elif(h01 > 150):
print("Du willst zu hoch fliegen...so müsstest du die Sinkphase anfangen, bevor du mit der Steigphase fertig bist")
else:
break
while True:
try:
h02 = int(input("Bitte geben Sie H02 ein! (in KM): "))
except ValueError:
print("Ich nehme an, Sie wollten 10 KM schreiben...")
h02 = 10
break
else:
if(h02 < 0):
print("Du bist seit lange tot")
elif(h02 > 150):
print("Du willst zu hoch fliegen...so müsstest du die Sinkphase anfangen, bevor du mit der Steigphase fertig bist")
else:
break
while True:
try:
h03 = int(input("Bitte geben Sie H03 ein! (in KM): "))
except ValueError:
print("Ich nehme an, Sie wollten 10 KM schreiben...")
h03 = 10
break
else:
if(h03 < 0):
print("Du bist seit lange tot")
elif(h03 > 150):
print("Du willst zu hoch fliegen...so müsstest du die Sinkphase anfangen, bevor du mit der Steigphase fertig bist")
else:
break
### ich muss t1,2,3 fuer alle Fluege berechnen!
s1 = 936
s2 = 625
s3 = 936
a1 = 25
a2 = 15
a3 = 25
b1 = 25
b2 = 20
b3 = 15
v1 = 700
v2 = 750
v3 = 650
# bei der t variabeln bedeutet steht s fuer Steigphase, f fuer Flugphase und si fuer Sinkphase
def strecke_steigphase(h, a):
strecke_steigphase = h / math.sin(math.radians(a))
return strecke_steigphase
def strecke_sinkphase(h, b):
strecke_sinkphase = h / math.sin(math.radians(b))
return strecke_sinkphase
def strecke_steigphase_horizontal(strecke_steigphase, a):
return math.cos(math.radians(a)) * strecke_steigphase
def strecke_sinkphase_horizontal(h, b):
return h/math.tan(math.radians(b))
def strecke_flugphase(s, strecke_steigphase_horizontal, strecke_sinkphase_horizontal):
return s - (strecke_steigphase_horizontal + strecke_sinkphase_horizontal)
def dauer(strecke, v):
return strecke/v
t1_s = dauer(strecke_steigphase(h01,a1),v1)
t2_s = dauer(strecke_steigphase(h02,a2),v2)
t3_s = dauer(strecke_steigphase(h03,a3),v3)
t1_si = dauer(strecke_sinkphase(h01,b1),v1)
t2_si = dauer(strecke_sinkphase(h02,b2),v2)
t3_si = dauer(strecke_sinkphase(h03,b3),v3)
t1_f = dauer(strecke_flugphase(s1,strecke_steigphase_horizontal(strecke_steigphase(h01,a1),a1),strecke_sinkphase_horizontal(h01,b1)),v1)
t2_f = dauer(strecke_flugphase(s2,strecke_steigphase_horizontal(strecke_steigphase(h02,a2),a2),strecke_sinkphase_horizontal(h02,b2)),v2)
t3_f = dauer(strecke_flugphase(s3,strecke_steigphase_horizontal(strecke_steigphase(h03,a3),a3),strecke_sinkphase_horizontal(h03,b3)),v3)
print(t1_s + t1_f + t1_si)
print(t2_s + t2_f + t2_si)
print(t3_s + t3_f + t3_si)
def hoehe(h0,v,t,a,b,t1,t2,t3):
if t < t1:
return v*t*math.sin(math.radians(a))
elif t1 <= t < t1+t2:
return h0
elif t1 +t2 <= t <= t1 + t2 + t3:
return h0 - v * (t - t1 - t2) * math.sin(math.radians(b))
def leange(h0,v,t,a,b,t1,t2,t3):
if t < t1:
return v*t*math.cos(math.radians(a))
elif t1 <= t < t1+t2:
return v * t1 * math.cos(math.radians(a)) + v * (t - t1)
elif t1 +t2 <= t <= t1 + t2 + t3:
return v * t1 * math.cos(math.radians(a)) + v * t2 + v * (t - t1 - t2) * math.cos(math.radians(b))
plt.plot([0, strecke_steigphase_horizontal(strecke_steigphase(h01,a1),a1), strecke_sinkphase_horizontal(h01, b1) + strecke_flugphase(s1,strecke_steigphase_horizontal(strecke_steigphase(h01,a1),a1),strecke_sinkphase_horizontal(h01, b1)), s1], [0, h01, h01, 0])
plt.plot([0, strecke_steigphase_horizontal(strecke_steigphase(h02,a2),a2), strecke_sinkphase_horizontal(h02, b2) + strecke_flugphase(s2,strecke_steigphase_horizontal(strecke_steigphase(h02,a2),a2),strecke_sinkphase_horizontal(h02, b2)), s2], [0, h02, h02, 0])
plt.plot([0, strecke_steigphase_horizontal(strecke_steigphase(h03,a3),a3), strecke_sinkphase_horizontal(h03, b3) + strecke_flugphase(s3,strecke_steigphase_horizontal(strecke_steigphase(h03,a3),a3),strecke_sinkphase_horizontal(h03, b3)), s3], [0, h03, h03, 0])
plt.xlabel('Strecke [km]')
plt.ylabel('Flughöhe [km]')
plt.show()
x = np.linspace(0, 0.001, 2)
y = np.sin(x)
plt.ion()
i = 0
while i < 1.856:
plt.plot([0, strecke_steigphase_horizontal(strecke_steigphase(h01, a1), a1),
strecke_sinkphase_horizontal(h01, b1) + strecke_flugphase(s1, strecke_steigphase_horizontal(
strecke_steigphase(h01, a1), a1), strecke_sinkphase_horizontal(h01, b1)), s1], [0, h01, h01, 0])
plt.plot([0, strecke_steigphase_horizontal(strecke_steigphase(h02, a2), a2),
strecke_sinkphase_horizontal(h02, b2) + strecke_flugphase(s2, strecke_steigphase_horizontal(
strecke_steigphase(h02, a2), a2), strecke_sinkphase_horizontal(h02, b2)), s2], [0, h02, h02, 0])
plt.plot([0, strecke_steigphase_horizontal(strecke_steigphase(h03, a3), a3),
strecke_sinkphase_horizontal(h03, b3) + strecke_flugphase(s3, strecke_steigphase_horizontal(
strecke_steigphase(h03, a3), a3), strecke_sinkphase_horizontal(h03, b3)), s3], [0, h03, h03, 0])
if i <= t1_s + t1_f + t1_si:
plt.plot(leange(h01, v1, i, a1, b1, t1_s, t1_f, t1_si),hoehe(h01, v1, i , a1, b1, t1_s, t1_f, t1_si), 'ro')
if i > t1_s + t1_f + t1_si:
plt.plot(leange(h01, v1, t1_s + t1_f + t1_si, a1, b1, t1_s, t1_f, t1_si), hoehe(h01, v1, t1_s + t1_f + t1_si, a1, b1, t1_s, t1_f, t1_si), 'ro')
if i >= 0.083 and i - 0.083 <= t2_s + t2_f + t2_si :
plt.plot(leange(h02, v2, i - 0.083, a2, b2, t2_s, t2_f, t2_si), hoehe(h02, v2, i - 0.083, a2, b2, t2_s, t2_f, t2_si), 'bo')
if i - 0.083 > t2_s + t2_f + t2_si :
plt.plot(leange(h02, v2, t2_s + t2_f + t2_si, a2, b2, t2_s, t2_f, t2_si), hoehe(h02, v2, t2_s + t2_f + t2_si, a2, b2, t2_s, t2_f, t2_si), 'bo')
if i >= 0.4 and i - 0.4 <= t3_s + t3_f + t3_si:
plt.plot(leange(h03, v3, (t3_s + t3_f + t3_si) - (i - 0.4), a3, b3, t3_s, t3_f, t3_si), hoehe(h03, v3, (t3_s + t3_f + t3_si) - (i - 0.4), a3, b3, t3_s, t3_f, t3_si), 'go')
if i - 0.4 > t3_s + t3_f + t3_si:
plt.plot(leange(h03, v3, 0.001, a3, b3, t3_s, t3_f, t3_si), hoehe(h03, v3, 0.001, a3, b3, t3_s, t3_f, t3_si), 'go')
plt.draw()
plt.pause(0.005)
plt.clf()
i = i + 0.005