Path: blob/master/Tools/autotest/jsb_sim/rascal_test_template.xml
9640 views
<?xml version="1.0" encoding="utf-8"?>1<?xml-stylesheet type="text/xsl" href="http://jsbsim.sf.net/JSBSimScript.xsl"?>2<runscript xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"3xsi:noNamespaceSchemaLocation="http://jsbsim.sf.net/JSBSimScript.xsd"4name="Testing Rascal110">56<description>7test ArduPlane using Rascal110 and JSBSim8</description>910<use aircraft="Rascal" initialize="reset"/>1112<!-- we control the servos via the jsbsim console13interface on TCP 5124 -->14<input port="%(JSBCONSOLEPORT)s"/>1516<run start="0" end="10000000" dt="0.001">17<property value="0"> simulation/notify-time-trigger </property>1819<event name="start engine">20<condition> simulation/sim-time-sec le 0.01 </condition>21<set name="propulsion/engine[0]/set-running" value="1"/>22<notify/>23</event>2425<event name="Trim">26<condition>simulation/sim-time-sec ge 0.01</condition>27<set name="simulation/do_simple_trim" value="2"/>28<notify/>29</event>30</run>3132</runscript>333435