From: Erik H. <eh...@us...> - 2016-05-23 09:19:55
|
Update of /cvsroot/jsbsim/JSBSim/scripts In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8815/scripts Added Files: p51_start_test.xml Log Message: Initial p51d startup script --- NEW FILE --- <?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="Paraglider rotate test"> <description>For testing P51d engine start</description> <use aircraft="p51d" initialize="reset00"/> <run start="0.0" end="100" dt="0.00833333"> <event name="Trim"> <condition>simulation/sim-time-sec gt 0.1</condition> <set name="fcs/aileron-cmd-norm" value="0.0"/> <!-- <set name="simulation/do_simple_trim" value="1"/> --> </event> <event name="Start engine: Starter"> <description>The starter for the engine is turned on.</description> <condition>simulation/sim-time-sec ge 1.0</condition> <set name="fcs/throttle-cmd-norm" action="FG_RAMP" value="1.0" tc ="1.0"/> <set name="fcs/mixture-cmd-norm" action="FG_RAMP" value="1.0" tc="1.0"/> <set name="propulsion/magneto_cmd" value="3"/> <set name="propulsion/starter_cmd" value="1"/> <notify> <property>velocities/u-aero-fps</property> <property>velocities/v-aero-fps</property> <property>velocities/w-aero-fps</property> </notify> </event> <event name="Running engine"> <condition>simulation/sim-time-sec ge 3.0</condition> <set name="fcs/throttle-cmd-norm" value="1.0"/> <notify> <property>velocities/u-aero-fps</property> <property>velocities/v-aero-fps</property> <property>velocities/w-aero-fps</property> </notify> </event> </run> </runscript> |