2002-09-27 22:03:48 +00:00
|
|
|
// vertical_speed_indicator.cxx - a regular VSI.
|
|
|
|
// Written by David Megginson, started 2002.
|
|
|
|
//
|
|
|
|
// This file is in the Public Domain and comes with no warranty.
|
|
|
|
|
|
|
|
#include <simgear/math/interpolater.hxx>
|
|
|
|
|
|
|
|
#include "vertical_speed_indicator.hxx"
|
|
|
|
#include <Main/fg_props.hxx>
|
|
|
|
#include <Main/util.hxx>
|
|
|
|
|
|
|
|
|
2004-10-16 12:37:39 +00:00
|
|
|
VerticalSpeedIndicator::VerticalSpeedIndicator ( SGPropertyNode *node )
|
|
|
|
: _internal_pressure_inhg(29.92),
|
|
|
|
name("vertical-speed-indicator"),
|
|
|
|
num(0),
|
|
|
|
static_port("/systems/static")
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for ( i = 0; i < node->nChildren(); ++i ) {
|
|
|
|
SGPropertyNode *child = node->getChild(i);
|
|
|
|
string cname = child->getName();
|
|
|
|
string cval = child->getStringValue();
|
|
|
|
if ( cname == "name" ) {
|
|
|
|
name = cval;
|
|
|
|
} else if ( cname == "number" ) {
|
|
|
|
num = child->getIntValue();
|
|
|
|
} else if ( cname == "static-port" ) {
|
|
|
|
static_port = cval;
|
|
|
|
} else {
|
2004-10-24 11:05:14 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_WARN, "Error in vertical-speed-indicator config logic" );
|
2004-10-16 12:37:39 +00:00
|
|
|
if ( name.length() ) {
|
2004-10-24 11:05:14 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_WARN, "Section = " << name );
|
2004-10-16 12:37:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-27 22:03:48 +00:00
|
|
|
VerticalSpeedIndicator::VerticalSpeedIndicator ()
|
|
|
|
: _internal_pressure_inhg(29.92)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
VerticalSpeedIndicator::~VerticalSpeedIndicator ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VerticalSpeedIndicator::init ()
|
|
|
|
{
|
2004-10-16 12:37:39 +00:00
|
|
|
string branch;
|
|
|
|
branch = "/instrumentation/" + name;
|
|
|
|
static_port += "/pressure-inhg";
|
|
|
|
|
|
|
|
SGPropertyNode *node = fgGetNode(branch.c_str(), num, true );
|
|
|
|
_serviceable_node = node->getChild("serviceable", 0, true);
|
|
|
|
_pressure_node = fgGetNode(static_port.c_str(), true);
|
|
|
|
_speed_node = node->getChild("indicated-speed-fpm", 0, true);
|
2003-02-25 20:04:22 +00:00
|
|
|
|
|
|
|
// Initialize at ambient pressure
|
|
|
|
_internal_pressure_inhg = _pressure_node->getDoubleValue();
|
2002-09-27 22:03:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VerticalSpeedIndicator::update (double dt)
|
|
|
|
{
|
2003-01-29 15:30:29 +00:00
|
|
|
// model taken from steam.cxx, with change
|
2002-09-27 22:03:48 +00:00
|
|
|
// from 10000 to 10500 for manual factor
|
|
|
|
if (_serviceable_node->getBoolValue()) {
|
|
|
|
double pressure = _pressure_node->getDoubleValue();
|
|
|
|
_speed_node
|
|
|
|
->setDoubleValue((_internal_pressure_inhg - pressure) * 10500);
|
|
|
|
_internal_pressure_inhg =
|
|
|
|
fgGetLowPass(_internal_pressure_inhg,
|
|
|
|
_pressure_node->getDoubleValue(),
|
|
|
|
dt/6.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// end of vertical_speed_indicator.cxx
|