1
0
Fork 0
flightgear/src/Systems/vacuum.cxx

64 lines
1.5 KiB
C++
Raw Normal View History

// vacuum.cxx - a vacuum pump connected to the aircraft engine.
// Written by David Megginson, started 2002.
//
// This file is in the Public Domain and comes with no warranty.
#include "vacuum.hxx"
#include <Main/fg_props.hxx>
VacuumSystem::VacuumSystem( int i )
{
num = i;
}
VacuumSystem::~VacuumSystem ()
{
}
void
VacuumSystem::init()
{
// TODO: allow index of engine to be
// configured.
SGPropertyNode *node = fgGetNode("/systems/vacuum", num, true );
_serviceable_node = node->getChild("serviceable", 0, true);
_rpm_node = fgGetNode("/engines/engine[0]/rpm", true);
_pressure_node = fgGetNode("/environment/pressure-inhg", true);
_suction_node = node->getChild("suction-inhg", 0, true);
}
void
VacuumSystem::bind ()
{
}
void
VacuumSystem::unbind ()
{
}
void
VacuumSystem::update (double dt)
{
// Model taken from steam.cxx
double suction;
if (!_serviceable_node->getBoolValue()) {
suction = 0.0;
} else {
double rpm = _rpm_node->getDoubleValue();
double pressure = _pressure_node->getDoubleValue();
// suction = pressure * rpm / (rpm + 5000.0);
// This magic formula yields about 4.1 inhg at 700 rpm and
// about 6.0 inhg at 2200 rpm (numbers by observation)
suction = 5.39 - 1.0 / ( rpm * 0.00111 );
if ( suction < 0.0 ) suction = 0.0;
if ( suction > 5.0 ) suction = 5.0;
}
_suction_node->setDoubleValue(suction);
}
// end of vacuum.cxx