JSBSim Propulsion

From FlightGear wiki
Revision as of 23:48, 13 March 2013 by Jentron (talk | contribs) (Stub in the propulsion class. I realized we don't have it documented elsewhere, still needs feed and location tags. FGPropulsion.h needs work, too.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

JSBSim provides a framework for aerodynamics. This page will attempt to explain how to create a propulsion system for the JSBSim framework. Propulsion systems contain engine, thrusters and fuel tanks


Propulsion

Propulsion entity is the container for engine, thrusters and fuel tanks. Engines and thrusters are commonly kept in separate files in the Engines/ directory.

Configuration File Format

   <propulsion>
       <engine file="{string}">
         ... see FGEngine, FGThruster, and class for engine type ...
       </engine>
       ... more engines ...
       <tank type="{FUEL | OXIDIZER}"> 
         ... see FGTank ...
       </tank>
       ... more tanks ...
       <dump-rate unit="{LBS/MIN | KG/MIN}"> {number} </dump-rate>
   </propulsion>