-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixed_wing_project.py
435 lines (373 loc) · 18.1 KB
/
fixed_wing_project.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
# -*- coding: utf-8 -*-
from udacidrone.messaging import MsgID
from enum import Enum
from udacidrone.connection import MavlinkConnection
import numpy as np
from plane_drone import Udaciplane
from plane_control import LongitudinalAutoPilot
from plane_control import LateralAutoPilot
from plane_control import FlyingCarPlanner
from plane_control import euler2RM
import time
import sys
class Scenario(Enum):
SANDBOX = 0
TRIM = 1
ALTITUDE = 2
AIRSPEED = 3
CLIMB = 4
LONGITUDINAL = 5
ROLL = 6
TURN = 7
YAW = 8
LINE = 9
ORBIT = 10
LATERAL = 11
FIXEDWING = 12
FLYINGCAR = 13
class FixedWingProject(Udaciplane):
def __init__(self, connection, tlog_name="TLog.txt"):
super().__init__(connection, tlog_name)
self.longitudinal_autopilot = LongitudinalAutoPilot()
self.lateral_autopilot = LateralAutoPilot()
self.flying_car_planner = FlyingCarPlanner()
# Defined as [along_track_distance (meters), altitude (meters)]
self.longitudinal_gates = [np.array([200.0, 200.0]),
np.array([1100.0, 300.0]),
np.array([1400.0, 280.0]),
np.array([2200.0, 200.0])]
self.airspeed_cmd = 41.0
self.altitude_cmd = 450.0
self.throttle_cmd = 0.0
self.elevator_cmd = 0.0
self.pitch_cmd = 0.0
self.aileron_cmd = 0.0
self.rudder_cmd = 0.0
self.roll_cmd = 0.0
self.sideslip_cmd = 0.0
self.yaw_cmd = 0.0
self.roll_ff = 0.0
self.course_cmd = 0.0
self.line_origin = np.array([0.0, 0.0, 0.0])
self.orbit_center = np.array([0.0, 0.0, 0.0])
self.orbit_cw = True
self.waypoints = [np.array([0.0, 500.0, -400.0]),
np.array([2600.0, 500.0, -500.0]),
np.array([2600.0, -2500.0, -400.0]),
np.array([100.0, 500.0, -450.0]),
np.array([100.0, -2000.0, -450.0])]
self.waypoint_tuple = (np.array([0.0, 0.0, 0.0]),
np.array([0.0, 0.0, 0.0]),
np.array([0.0, 0.0, 0.0]))
self.waypoints_flying_car = []
self.scenario = Scenario.SANDBOX
self.time_cmd = 0.0
self.cmd_freq = 100.0
self.last_airspeed_time = None
self.last_position_time = None
self.last_attitude_time = None
# Register all your callbacks here
self.register_callback(MsgID.LOCAL_POSITION,
self.local_position_callback)
self.register_callback(MsgID.LOCAL_VELOCITY, self.airspeed_callback)
self.register_callback(MsgID.STATE, self.state_callback)
self.register_callback(MsgID.ATTITUDE, self.attitude_callback)
# self.register_callback(MsgID.RAW_GYROSCOPE, self.gyro_callback)
# self.register_callback(MsgID.AIRSPEED, self.airspeed_callback)
self._scenario_started = False
def state_callback(self):
if self.scenario == Scenario.SANDBOX:
if self.status != 0:
self.scenario = Scenario(self.status)
self.init_scenario()
if self.scenario != Scenario.SANDBOX:
if not self._scenario_started:
self.take_control()
self.arm()
self._scenario_started = True
print('Start Scenario...')
elif not self.guided:
self.stop()
def airspeed_callback(self):
# Assuming no wind, for now...
self.airspeed = np.linalg.norm(self.local_velocity)
if self.airspeed != 0.0:
rot_mat = euler2RM(self.attitude[0], self.attitude[1],
self.attitude[2])
side_velocity = rot_mat.transpose()[1, 0] * self.local_velocity[0] +\
rot_mat.transpose()[1, 1] * self.local_velocity[1] + \
rot_mat.transpose()[1, 2] * self.local_velocity[2]
self.sideslip = np.arcsin(side_velocity/self.airspeed)
else:
self.sideslip = 0.0
dt = 0.0
if self.last_airspeed_time is not None:
dt = self.local_velocity_time - self.last_airspeed_time
if dt <= 0.0:
return
self.last_airspeed_time = self.local_velocity_time
if not self._scenario_started:
return
if self.scenario == Scenario.AIRSPEED:
self.throttle_cmd = self.longitudinal_autopilot.airspeed_loop(
self.airspeed, self.airspeed_cmd, dt)
self.cmd_longitude_mode(self.elevator_cmd, self.throttle_cmd,
0, 0, self.last_airspeed_time)
if self.scenario == Scenario.CLIMB:
self.pitch_cmd = self.longitudinal_autopilot.airspeed_pitch_loop(
self.airspeed, self.airspeed_cmd, dt)
if (self.scenario == Scenario.LONGITUDINAL) | (self.scenario == Scenario.FIXEDWING):
altitude = -self.local_position[2]
[self.pitch_cmd, self.throttle_cmd] = \
self.longitudinal_autopilot.longitudinal_loop(
self.airspeed, altitude, self.airspeed_cmd,
self.altitude_cmd, dt)
if ((self.scenario == Scenario.ROLL) |
(self.scenario == Scenario.TURN) |
(self.scenario == Scenario.YAW) |
(self.scenario == Scenario.LINE) |
(self.scenario == Scenario.ORBIT) |
(self.scenario == Scenario.LATERAL) |
(self.scenario == Scenario.FIXEDWING)):
self.rudder_cmd = self.lateral_autopilot.sideslip_hold_loop(
self.sideslip, dt)
if self.scenario == Scenario.FLYINGCAR:
# TODO: Insert Flying Car Scenario code here
# Control only during flight mode
if len(self.waypoints_flying_car) != 0 \
and self.waypoints_flying_car[0]['cmd'] == FlyingCarPlanner.WaypointCommand.FLIGHT:
self.rudder_cmd = self.lateral_autopilot.sideslip_hold_loop(
self.sideslip, dt)
altitude = -self.local_position[2]
(self.pitch_cmd, self.throttle_cmd) = \
self.longitudinal_autopilot.longitudinal_loop(
self.airspeed, altitude, self.airspeed_cmd,
self.altitude_cmd, dt)
pass
def attitude_callback(self):
dt = 0.0
if self.last_attitude_time is not None:
dt = self.attitude_time-self.last_attitude_time
self.last_attitude_time = self.attitude_time
if not self._scenario_started:
return
if ((self.scenario == Scenario.ALTITUDE) |
(self.scenario == Scenario.AIRSPEED) |
(self.scenario == Scenario.CLIMB) |
(self.scenario == Scenario.LONGITUDINAL)):
self.elevator_cmd = self.longitudinal_autopilot.pitch_loop(
self.attitude[1], self.gyro_raw[1], self.pitch_cmd)
self.cmd_longitude_mode(self.elevator_cmd, self.throttle_cmd)
if np.abs(self.gyro_raw[1]) >= 1:
print(self.gyro_raw)
if ((self.scenario == Scenario.YAW) |
(self.scenario == Scenario.LINE) |
(self.scenario == Scenario.ORBIT) |
(self.scenario == Scenario.LATERAL) |
(self.scenario == Scenario.FIXEDWING)):
self.roll_cmd = self.lateral_autopilot.yaw_hold_loop(
self.yaw_cmd, self.attitude[2], dt, self.roll_ff)
if ((self.scenario == Scenario.ROLL) |
(self.scenario == Scenario.TURN) |
(self.scenario == Scenario.YAW) |
(self.scenario == Scenario.LINE) |
(self.scenario == Scenario.ORBIT) |
(self.scenario == Scenario.LATERAL)):
self.aileron_cmd = self.lateral_autopilot.roll_attitude_hold_loop(
self.roll_cmd, self.attitude[0], self.gyro_raw[0])
self.cmd_lateral_mode(self.aileron_cmd, self.rudder_cmd,
self.altitude_cmd, self.airspeed_cmd)
if self.scenario == Scenario.FIXEDWING:
self.aileron_cmd = self.lateral_autopilot.roll_attitude_hold_loop(
self.roll_cmd, self.attitude[0], self.gyro_raw[0])
self.elevator_cmd = self.longitudinal_autopilot.pitch_loop(
self.attitude[1], self.gyro_raw[1], self.pitch_cmd)
self.cmd_controls(self.aileron_cmd, self.elevator_cmd, self.rudder_cmd, self.throttle_cmd)
if self.scenario == Scenario.FLYINGCAR:
# TODO: Insert Flying Car Scenario code here
# Control only during flight mode
if len(self.waypoints_flying_car) != 0 \
and self.waypoints_flying_car[0]['cmd'] == FlyingCarPlanner.WaypointCommand.FLIGHT:
self.aileron_cmd = self.lateral_autopilot.roll_attitude_hold_loop(
self.roll_cmd, self.attitude[0], self.gyro_raw[0])
self.elevator_cmd = self.longitudinal_autopilot.pitch_loop(
self.attitude[1], self.gyro_raw[1], self.pitch_cmd)
self.cmd_controls(self.aileron_cmd, self.elevator_cmd, self.rudder_cmd, self.throttle_cmd)
def local_position_callback(self):
dt = 0.0
if self.last_position_time is not None:
dt = self.local_position_time - self.last_position_time
self.last_position_time = self.local_position_time
if dt <= 0.0:
return
if not self._scenario_started:
return
if self.scenario == Scenario.ALTITUDE:
altitude = -self.local_position[2]
self.pitch_cmd = self.longitudinal_autopilot.altitude_loop(
altitude, self.altitude_cmd, dt)
if self.scenario == Scenario.LONGITUDINAL:
along_track = np.linalg.norm(self.local_position[0:2])
if along_track > self.gate_target[0]:
if len(self.longitudinal_gates) == 0:
self.stop()
else:
self.gate_target = self.longitudinal_gates.pop(0)
print('Gate Target: ', self.gate_target)
self.altitude_cmd = self.gate_target[1]
if self.scenario == Scenario.LINE:
self.yaw_cmd = self.lateral_autopilot.straight_line_guidance(
self.line_origin, self.line_course, self.local_position)
self.roll_ff = 0.0
if self.scenario == Scenario.ORBIT:
self.yaw_cmd = self.lateral_autopilot.orbit_guidance(
self.orbit_center, self.orbit_radius, self.local_position,
self.attitude[2], self.orbit_cw)
self.roll_ff = self.lateral_autopilot.coordinated_turn_ff(
self.airspeed_cmd, self.orbit_radius, self.orbit_cw)
if self.scenario == Scenario.LATERAL:
(self.roll_ff, self.yaw_cmd) = self.lateral_autopilot.path_manager(
self.local_position, self.attitude[2], self.airspeed_cmd)
if self.scenario == Scenario.FIXEDWING:
(self.roll_ff, self.yaw_cmd, switch) = self.lateral_autopilot.waypoint_follower(
self.waypoint_tuple, self.local_position[0:2], self.attitude[2], self.airspeed_cmd)
if switch:
if len(self.waypoints) == 0:
next_waypoint = self.waypoint_tuple[2]
else:
next_waypoint = self.waypoints.pop(0)
print('Adding waypoint: ', next_waypoint)
self.waypoint_tuple = (self.waypoint_tuple[1], self.waypoint_tuple[2], next_waypoint)
self.altitude_cmd = -self.waypoint_tuple[0][2]
if self.scenario == Scenario.FLYINGCAR:
# TODO: Insert Flying Car Scenario code here
if len(self.waypoints_flying_car) == 0:
return
(flying_car_cmd, switch) = self.flying_car_planner.waypoint_follower(
target_waypoint=self.waypoints_flying_car[0],
local_position=self.local_position,
yaw=self.attitude[2],
airspeed=self.airspeed_cmd)
if switch:
completed_waypoint = self.waypoints_flying_car.pop(0)
print('Completed waypoint: ', completed_waypoint)
if len(self.waypoints_flying_car) != 0:
print('Next waypoint: ', self.waypoints_flying_car[0])
else:
current_cmd = self.waypoints_flying_car[0]['cmd']
if current_cmd == FlyingCarPlanner.WaypointCommand.TAKEOFF:
print('takeoff', flying_car_cmd)
self.takeoff(flying_car_cmd)
elif current_cmd == FlyingCarPlanner.WaypointCommand.VTOL:
# Use absolute position control
print('cmd_vtol_position', flying_car_cmd)
self.cmd_vtol_position(north=flying_car_cmd[0],
east=flying_car_cmd[1],
altitude=flying_car_cmd[2],
heading=flying_car_cmd[3])
elif current_cmd == FlyingCarPlanner.WaypointCommand.FLIGHT:
# Use straight line guidance
print('straight_line_guidance', flying_car_cmd)
self.yaw_cmd = self.lateral_autopilot.straight_line_guidance(
line_origin=flying_car_cmd[0],
line_course=flying_car_cmd[1],
local_position=self.local_position)
self.roll_ff = 0
elif current_cmd == FlyingCarPlanner.WaypointCommand.LANDING:
print('land')
self.land()
pass
def init_scenario(self):
if self.scenario == Scenario.SANDBOX:
pass
elif self.scenario == Scenario.ALTITUDE:
print('Starting Altitude Hold Scenario')
self.throttle_cmd = 0.66
self.altitude_cmd = 450.0
elif self.scenario == Scenario.AIRSPEED:
print('Starting Airspeed Hold Scenario')
self.elevator_cmd = 0.0
self.airspeed_cmd = 41.0
elif self.scenario == Scenario.CLIMB:
print('Starting Climb Scenario')
self.airspeed_cmd = 41.0
self.throttle_cmd = 1.0
elif self.scenario == Scenario.LONGITUDINAL:
print('Starting Longitudinal Challenge')
self.airspeed_cmd = 41.0
self.gate_target = self.longitudinal_gates.pop(0)
self.altitude_cmd = self.gate_target[1]
elif self.scenario == Scenario.ROLL:
print('Starting Stabilize Roll Scenario')
self.airspeed_cmd = 41.0
self.altitude_cmd = 450.0
self.roll_cmd = 0.0
self.rudder_cmd = 0.0
elif self.scenario == Scenario.TURN:
print('Starting Coordinated Turn Scenario')
self.airspeed_cmd = 41.0
self.altitude_cmd = 450.0
self.roll_cmd = 45.0*np.pi/180.0
self.sideslip_cmd = 0.0
elif self.scenario == Scenario.YAW:
print('Starting Yaw Hold Scenario')
self.airspeed_cmd = 41.0
self.altitude_cmd = 450.0
self.yaw_cmd = 0.0
self.sideslip_cmd = 0.0
self.roll_ff = 0.0
elif self.scenario == Scenario.LINE:
print('Starting Line Following Scenario')
self.airspeed_cmd = 41.0
self.altitude_cmd = 450.0
self.line_course = 0.0
self.line_origin = np.array([0.0, 20.0, 450.0])
elif self.scenario == Scenario.ORBIT:
print('Starting Orbit Following Scenario')
self.airspeed_cmd = 41.0
self.altitude_cmd = 450.0
self.orbit_radius = 500.0
self.orbit_center = np.array([0.0, 500.0, -450.0])
self.orbit_cw = True
elif self.scenario == Scenario.LATERAL:
print('Starting Lateral Challenge')
self.airspeed_cmd = 41.0
self.altitude_cmd = 450.0
elif self.scenario == Scenario.FIXEDWING:
print('Starting Fixed Wing Challenge')
self.airspeed_cmd = 41.0
prev_waypoint = self.waypoints.pop(0)
curr_waypoint = self.waypoints.pop(0)
next_waypoint = self.waypoints.pop(0)
self.waypoint_tuple = (prev_waypoint, curr_waypoint, next_waypoint)
self.altitude_cmd = -self.waypoint_tuple[0][2]
elif self.scenario == Scenario.FLYINGCAR:
# TODO: Insert Flying Car Scenario code here
print('Starting Flying Car Challenge')
self.waypoints_flying_car = self.flying_car_planner.build_waypoints(
start_location=self.local_position,
start_yaw=0,
end_location=self.local_position + np.array([1545, -1816, -80]),
end_yaw=np.pi
)
print('Initial waypoints:', self.waypoints_flying_car)
else:
print('Invalid Scenario')
return
def run_scenario(self,scenario):
self.scenario = scenario
self.init_scenario()
self.start()
if __name__ == "__main__":
conn = MavlinkConnection('tcp:127.0.0.1:5760', threaded=False, PX4=False)
# conn = WebSocketConnection('ws://127.0.0.1:5760')
drone = FixedWingProject(conn)
time.sleep(2)
scenario = 0
if len(sys.argv) > 1:
try:
scenario = float(sys.argv[1][1:(len(sys.argv[1])+1)])
# drone.run_scenario(Scenario(scenario))
except:
print('Scenario argument must be a number')
drone.run_scenario(Scenario(scenario))