-
Notifications
You must be signed in to change notification settings - Fork 0
/
quadend2end.py
183 lines (166 loc) · 5.5 KB
/
quadend2end.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
177
178
179
180
181
182
183
"""
author: Tim Leonard Straube
email: [email protected]
"""
import gymnasium
import numpy
import config as config
import random
import matplotlib.pyplot as plt
from gymnasium import spaces
from quaternion import Quaternion
from quad import Quadcopter
class Quadend2end(gymnasium.Env):
def __init__(self):
"""Famara Gymnasium Umwelt zum Training des Ende-zu-Ende-Modells
"""
super(Quadend2end, self).__init__()
# Quaternionklasse welche Methoden zur Umrechnung von Quaternionen und Kardanwinkeln zur Verfügung stellt
self.quaternion = Quaternion()
# Initialisierung der Quadcopterklasse
self.quad = Quadcopter()
# Initialisierung des Beobachtungsvektors
self.observation = numpy.zeros(
9,
dtype=numpy.float32
)
# Definition des Aktionsraums
self.action_space = spaces.MultiDiscrete(
numpy.concatenate([
config.actionspace_end2end[0] * numpy.ones(4),
[config.actionspace_end2end[1]]
])
)
# Definition des Beobachtungsraums
self.observation_space = spaces.Box(
low = -10,
high = 10,
shape = (9,),
dtype = numpy.float32
)
# Initalisierung der Quadcopterparameter
self.quad.reset()
self.reset()
def reset(self, seed = None):
self.velocity_setsarray_norden = []
self.velocity_setsarray_osten = []
self.velocity_setsarray_unten = []
self.array_norden = []
self.array_osten = []
self.array_unten = []
self.omega1_all = []
self.omega2_all = []
self.omega3_all = []
# Initalisierung der Zeitvariable
self.t = 0
# Schrittweite
self.step_size = config.step_size
# Schritt der aktuellen Episode
self.step_current = 0
# Sollgeschwindigkeit
self.velocity_set = numpy.array([
random.randint(-1, 1),
random.randint(-1, 1),
0
])
self.quad.reset()
# Drehlage = [
# Gierwinkel (rad),
# Nichwinkel (rad),
# Rollwinkel (rad)
# ]
self.attitude = self.quaternion.quaternion2cardan(
self.quad.state[3:7]
)
# Beobachtung bestehend aus der Drehlage, der Geschwindigkeit und der Sollgeschwindigkeit
self.observation[:] = numpy.float32(
numpy.concatenate([
self.attitude,
self.quad.state[7:10],
self.velocity_set
])
)
return self.observation, {}
def step(self, action):
terminated = False
truncated = False
# Das Umweltmodell wird geupdated so oft wie es der Agent will
for _ in range(action[4] + 1):
self.step_current += 1
# Update des Quadcopterzustands
self.quad.update(
self.t,
action
)
# Update der Zeit
self.t += config.step_size
# Drehlage = [
# Gierwinkel (rad),
# Nichwinkel (rad),
# Rollwinkel (rad)
# ]
self.attitude = self.quaternion.quaternion2cardan(
self.quad.state[3:7]
)
self.velocity_setsarray_norden.append(
self.t * self.velocity_set[0]
)
self.velocity_setsarray_osten.append(
self.t * self.velocity_set[1]
)
self.velocity_setsarray_unten.append(
self.t * self.velocity_set[2]
)
self.array_norden.append(self.quad.state[0])
self.array_osten.append(self.quad.state[1])
self.array_unten.append(self.quad.state[2])
self.omega1_all.append(self.attitude[0])
self.omega2_all.append(self.attitude[1])
self.omega3_all.append(self.attitude[2])
# Berechnen der Belohnung im aktuellen Zustand
reward = self.quad.reward()
# if numpy.max(numpy.abs(self.state[0:3])) > 2:
# truncated = True
# Beenden der Episode wenn die maximale Episodenlänge erreicht wurde
if self.step_current >= (config.episode_end_time / config.step_size):
truncated = True
# Zeichnen der Positions- und Drehlagetrajektorien
# print("\033c", end='')
# self.render()
# Beobachtung bestehend aus der Drehlage, der Geschwindigkeit und der Sollgeschwindigkeit
self.observation[:] = numpy.float32(
numpy.concatenate([
self.attitude,
self.quad.state[7:10],
self.velocity_set
])
)
return (
self.observation,
reward,
terminated,
truncated,
{}
)
def render(self):
f, (ax1, ax2, ax3, ax4, ax5, ax6) = plt.subplots(
1,
6,
sharex = True
)
ax1.plot(self.array_norden)
ax1.plot(self.velocity_setsarray_norden)
ax1.set_title('North/m')
ax2.plot(self.array_osten)
ax2.plot(self.velocity_setsarray_osten)
ax2.set_title('East/m')
ax3.plot(self.array_unten)
ax3.plot(self.velocity_setsarray_unten)
ax3.set_title('Down/m')
ax4.plot(self.omega1_all)
ax4.set_title('Roll/rad')
ax5.plot(self.omega2_all)
ax5.set_title('Pitch/rad')
ax6.plot(self.omega3_all)
ax6.set_title('Yaw/rad')
plt.show()