Drone Env
cbfpy.envs.drone_env
Drone Environment
This is a wrapper around the gym-pybullet-drones environment, using velocity control.
DroneEnv
Bases: BaseEnv
Drone Environment class
This provides an environment where the drone is contained to lie within a safe box, and must avoid a movable obstacle.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
xyz_min
|
ArrayLike
|
Minimum bounds of the safe region, shape (3,) |
(-0.5, -0.5, 0.5)
|
xyz_max
|
ArrayLike
|
Maximum bounds of the safe region, shape (3,) |
(0.5, 0.5, 1.5)
|
Source code in cbfpy/envs/drone_env.py
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 |
|
_update_color(robot_pos)
Update the color of the box depending on if the robot is inside or not (Green inside, red outside)
Source code in cbfpy/envs/drone_env.py
94 95 96 97 98 99 100 101 102 103 104 105 106 |
|
_test_env()
Test the environment behavior under an unsafe nominal controller
Source code in cbfpy/envs/drone_env.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
|