System dependent instruments

From FlightGear wiki
Revision as of 11:07, 18 April 2013 by AndersM (talk | contribs) (Started documentation on system dependent generic instruments)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Electrical

./heading_indicator_dg.cxx: _electrical_node = fgGetNode("/systems/electrical/outputs/DG", true); ./dme.cxx: _electrical_node = fgGetNode("/systems/electrical/outputs/dme", true); ./kr_87.cxx: bus_power(fgGetNode("/systems/electrical/outputs/adf", true)), ./turn_indicator.cxx: fgGetNode("/systems/electrical/outputs/turn-coordinator", true); ./mrg.cxx: _electrical_node = fgGetNode("/systems/electrical/outputs/MRG", true); ./gps.cxx: _electrical_node = fgGetNode("/systems/electrical/outputs/gps", true); ./kt_70.cxx: bus_power = fgGetNode("/systems/electrical/outputs/transponder", true); ./adf.cxx: _electrical_node = fgGetNode("/systems/electrical/outputs/adf", true); ./testgps.cxx: fgSetBool("/systems/electrical/outputs/gps", true); ./mk_viii.cxx: mk_node(power) = fgGetNode(("/systems/electrical/outputs/" + mk->name).c_str(), mk->num, true); ./heading_indicator_fg.cxx: _electrical_node = fgGetNode("/systems/electrical/outputs/DG", true); ./transponder.cxx: busPowerNode = fgGetNode("/systems/electrical/outputs/transponder", true); ./tacan.cxx: _electrical_node = fgGetNode("/systems/electrical/outputs/tacan", true); ./navradio.cxx: fgGetNode(("/systems/electrical/outputs/" + _name).c_str(), true); ./marker_beacon.cxx: bus_power = fgGetNode("/systems/electrical/outputs/nav[0]", true);


Vacuum

./heading_indicator.cxx: _suction(node->getStringValue("suction", "/systems/vacuum/suction-inhg")) ./attitude_indicator.cxx: _suction(node->getStringValue("suction", "/systems/vacuum/suction-inhg")),


Static

./altimeter.cxx:// <static-pressure>/systems/static/pressure-inhg</static-pressure> ./altimeter.cxx: _static_pressure(node->getStringValue("static-pressure", "/systems/static/pressure-inhg")), ./vertical_speed_indicator.cxx: _static_pressure(node->getStringValue("static-pressure", "/systems/static/pressure-inhg")) ./airspeed_indicator.cxx: _static_pressure(node->getStringValue("static-pressure", "/systems/static/pressure-inhg")),


Pitot

./airspeed_indicator.cxx: _total_pressure(node->getStringValue("total-pressure", "/systems/pitot/total-pressure-inhg")),