From: Bertrand <bco...@us...> - 2016-07-10 09:07:41
|
Update of /cvsroot/jsbsim/JSBSim/scripts In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24816/scripts Added Files: L4102.xml Log Message: New script to test the turboprop engines. --- 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="L410 test script"> <description>For testing the L410 electrical system</description> <use aircraft="L410" initialize="reset00"/> <run start="0.0" end="10" dt="0.001"> <property value="1.0"> /controls/gear/gear-down-cond </property> <property value="1.0"> fcs/right-brake-cmd-norm </property> <property value="1.0"> fcs/left-brake-cmd-norm </property> <event name="Engines start"> <condition>simulation/sim-time-sec ge 0.0</condition> <set name="propulsion/set-running" value="-1"/> <notify/> </event> </run> <output name="L410.csv" type="CSV" rate="20"> <rates> ON </rates> <velocities> ON </velocities> <position> ON </position> <atmosphere> ON </atmosphere> <fcs> OFF </fcs> <ground_reactions> OFF </ground_reactions> <propulsion> ON </propulsion> <simulation> ON </simulation> <massprops> OFF </massprops> <forces> ON </forces> <moments> ON </moments> <aerosurfaces> OFF </aerosurfaces> <coefficients> ON </coefficients> </output> </runscript> |