sudo apt install cm-super
- launch ipython console from root
- call:
from runpy import run_path
run_path('./examples/ex_00.py')
- for restaring the simulation:
basic_aircraft.reset_fpl()
# (ex_00) orac.reset_fpl()
# (ex_01)
-
after first run of the simulation, log data area available via:
sim.log['name_of_key']
-
to check currenly available keys run:
for key in sim.logs.keys():
print(key)
- S_ prefix - system state vector variables
- R_ prefix - roll regulator
- L1_ prefix - L1 navigation regulator
Sim coordinate frame convention:
- Y is North
- X is East
- phi is measured from Y to the right (normal heading convention)
- this simplifies the use of plotting modules
APM coordinate frame convention:
- NED:
- X is North
- Y is East
- Z is Down
Visualization of simulator states from example ex_02_into_wind_customRegs.py
is shown below.