UNPKG

jsbsim.js

Version:

JSBSim flight dynamics model ported to JavaScript

23 lines (22 loc) 1.1 kB
<?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="http://jsbsim.sf.net/JSBSimScript.xsl"?> <runscript xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://jsbsim.sf.net/JSBSimScript.xsd" name="blank aircraft taxi run"> <description>This run is for testing a null aircraft for taxiing behaviour</description> <use aircraft="blank" initialize="reset00"/> <run start="0.0" end="100" dt="0.00833333"> <event name="event name"> <condition>simulation/sim-time-sec ge 0.25</condition> <set name="propulsion/starter_cmd" action="FG_STEP" type="FG_VALUE" value="1" tc="0.05"/> </event> <event name="event name"> <condition>simulation/sim-time-sec ge 5.0</condition> <set name="propulsion/cutoff_cmd" action="FG_STEP" type="FG_VALUE" value="0" tc="0.05"/> </event> <event name="event name"> <condition>simulation/sim-time-sec ge 6.0</condition> <set name="fcs/throttle-cmd-norm" action="FG_RAMP" type="FG_VALUE" value="1.0" tc="0.5"/> </event> </run> </runscript>