2002-09-27 22:03:48 +00:00
|
|
|
// vertical_speed_indicator.hxx - a regular VSI tied to the static port.
|
|
|
|
// Written by David Megginson, started 2002.
|
|
|
|
//
|
|
|
|
// This file is in the Public Domain and comes with no warranty.
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __INSTRUMENTS_VERTICAL_SPEED_INDICATOR_HXX
|
|
|
|
#define __INSTRUMENTS_VERTICAL_SPEED_INDICATOR_HXX 1
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
|
|
|
|
2003-05-06 23:46:24 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/subsystem_mgr.hxx>
|
2002-09-27 22:03:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Model a non-instantaneous VSI tied to the static port.
|
|
|
|
*
|
|
|
|
* Input properties:
|
|
|
|
*
|
2004-10-16 12:37:39 +00:00
|
|
|
* /instrumentation/"name"/serviceable
|
|
|
|
* "static_port"/pressure-inhg
|
2002-09-27 22:03:48 +00:00
|
|
|
*
|
|
|
|
* Output properties:
|
|
|
|
*
|
2004-10-16 12:37:39 +00:00
|
|
|
* /instrumentation/"name"/indicated-speed-fpm
|
2002-09-27 22:03:48 +00:00
|
|
|
*/
|
2003-09-24 17:20:55 +00:00
|
|
|
class VerticalSpeedIndicator : public SGSubsystem
|
2002-09-27 22:03:48 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2004-10-16 12:37:39 +00:00
|
|
|
VerticalSpeedIndicator ( SGPropertyNode *node );
|
2002-09-27 22:03:48 +00:00
|
|
|
virtual ~VerticalSpeedIndicator ();
|
|
|
|
|
|
|
|
virtual void init ();
|
|
|
|
virtual void update (double dt);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
double _internal_pressure_inhg;
|
|
|
|
|
2006-12-06 22:11:43 +00:00
|
|
|
string _name;
|
|
|
|
int _num;
|
|
|
|
string _static_pressure;
|
2004-10-16 12:37:39 +00:00
|
|
|
|
2002-09-27 22:03:48 +00:00
|
|
|
SGPropertyNode_ptr _serviceable_node;
|
|
|
|
SGPropertyNode_ptr _pressure_node;
|
|
|
|
SGPropertyNode_ptr _speed_node;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __INSTRUMENTS_VERTICAL_SPEED_INDICATOR_HXX
|