1
0
Fork 0
flightgear/src/Systems
ehofman 6d76e9da80 Vivian Meazza:
I had to reverse a number of signs to get it right. I took the opportunity
to add roll to the submodel so that droptanks will come off with the right
orientation. I have neither added the rotational speed to the submodel, nor
yaw, so if you release droptanks with  significant roll rate or yaw angle on
the aircraft the submodel will not be quite right. Straight and level, or
nearly so, is fine.
2004-09-17 16:32:58 +00:00
..
.cvsignore Forgot to update header. 2002-09-24 13:11:27 +00:00
electrical.cxx Alternator should still put out some output when RPM < 800. (Yes I know this 2004-06-14 21:36:10 +00:00
electrical.hxx Added code to support a richer switch definition syntax. Currently we only 2003-11-17 21:10:47 +00:00
Makefile.am David Culp: 2004-08-22 16:22:18 +00:00
pitot.cxx Simplify the pitot system and ASI -- the indicated airspeed should be 2003-03-12 20:28:54 +00:00
pitot.hxx Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups 2003-09-24 17:20:55 +00:00
README README for src/Systems/ 2003-01-29 16:03:00 +00:00
static.cxx Clean up various compiler warnings that have crept into the code. This 2004-04-01 15:27:53 +00:00
static.hxx Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups 2003-09-24 17:20:55 +00:00
submodel.cxx Vivian Meazza: 2004-09-17 16:32:58 +00:00
submodel.hxx Vivian Meazza: 2004-09-17 16:32:58 +00:00
system_mgr.cxx Vivan Meazza: 2004-09-14 08:27:55 +00:00
system_mgr.hxx Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups 2003-09-24 17:20:55 +00:00
vacuum.cxx Eliminate divide-by-zero error. AI should spin down gradually again. 2003-07-22 02:05:50 +00:00
vacuum.hxx Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups 2003-09-24 17:20:55 +00:00

src/Systems/ - support code for aircraft systems

This directory contains support code for major aircraft systems,
including the static, pitot, electrical, and vacuum systems.  The file
system_mgr.[ch]xx contains a subsystem group that holds all of the
individual systems.  Every system should extend FGSubsystem, and then
should be added to the group in the FGSystemMgr constructor.

Eventually, there will be an XML configuration file to select what
system modules should be available, so that different aircraft (i.e. a
twin plane with two vacuum systems) can have appropriate support.