You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will install Crazyflow, drone-models, and drone-controllers in editable mode for easy development.
39
+
40
+
In case you want to use another package manager or install the simulator with it's subpackages into another project, simply install all packages manually in your environment:
41
+
```bash
42
+
pip install -e .# Installing Crazyflow
43
+
pip install -e ./submodules/drone-models
44
+
pip install -e ./submodules/drone-controllers
45
+
```
46
+
21
47
22
48
## Architecture
23
49
@@ -30,8 +56,10 @@ The simulation is built as a pipeline of functions that are composed at initiali
30
56
31
57
#### Physics Backends
32
58
Multiple physics models are supported:
33
-
- analytical: A first-principles model based on physical equations
34
-
- sys_id: A system-identified model trained on real drone data
59
+
- first_principles: A first-principles model based on physical equations
60
+
- so_rpy: A system-identified model trained on real drone data
61
+
- so_rpy_rotor: An enhanced system-identified model that includes thrust dynamics
62
+
- so_rpy_rotor_drag: A system-identified model that includes thrust dynamics and drag effects
0 commit comments