1
0
Fork 0
flightgear/src/Systems
2003-05-28 18:48:00 +00:00
..
.cvsignore Forgot to update header. 2002-09-24 13:11:27 +00:00
electrical.cxx At low rpms when the alternator isn't able to generate enough current to charge 2003-05-28 18:47:42 +00:00
electrical.hxx Added very simplistic volt and amp modeling to the electrical model. This 2003-05-27 19:18:14 +00:00
Makefile.am Added pitot system and new airspeed indicator. 2002-09-28 20:48:53 +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 This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:54:17 +00:00
README README for src/Systems/ 2003-01-29 16:03:00 +00:00
static.cxx Modified to use fgGetLowPass from utils.cxx. 2002-09-27 22:04:21 +00:00
static.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:54:17 +00:00
system_mgr.cxx - Added a redundant (left/right) vacuum pump. 2003-05-27 19:25:27 +00:00
system_mgr.hxx Converted to a simple FGSubsystemGroup. 2003-01-29 16:02:46 +00:00
vacuum.cxx Update the suction model as per Alex Perry's recommendations. 2003-05-28 18:48:00 +00:00
vacuum.hxx - Added a redundant (left/right) vacuum pump. 2003-05-27 19:25:27 +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.