Revision e75a39881befb1d84749919b28e0dd03f1a03efb authored by Felix Ruess on 29 May 2012, 20:27:07 UTC, committed by Felix Ruess on 29 May 2012, 20:27:07 UTC
* currently only used for rotorcrafts
* created and imu_nps implementation instead of using the sim arch to implement simulation of every IMU separately
* updated makefiles and airframe files to new nps simulator
1 parent fedf204
Raw File
muret_for.xml
<!DOCTYPE flight_plan SYSTEM "flight_plan.dtd">

<flight_plan alt="250" ground_alt="185" lat0="43.46223" lon0="1.27289" max_dist_from_home="1000" name="example - Muret for loops" qfu="270" security_height="25">

  <waypoints utm_x0="360284.8" utm_y0="4813595.5">
    <waypoint alt="250." lat="43.4625000078" lon="1.27288231142" name="HOME" x="0.0" y="30.0"/>
  </waypoints>

  <blocks>
    <block name="init">
      <while cond="(!launch)"/>
      <heading course="QFU" throttle="0.8" pitch="10" until="(estimator_flight_time > 8)" vmode="throttle"/>
      <heading climb="3.0" course="QFU" pitch="10" until="(estimator_z > SECURITY_ALT)" vmode="climb"/>
    </block>
    <block name="for">
      <for from="0" to="3" var="i">
        <circle alt="ground_alt+50+50*$i" radius="75" until="stage_time>10" wp="HOME"/>
      </for>
      <circle wp="HOME" radius="50"/>
    </block>
   </blocks>
</flight_plan>
back to top