1
0
Fork 0
flightgear/src/Systems/static.hxx
mfranz 7e6bc192ba John DENKER:
"This altimetry method is valid to above 100,000 feet, and
correctly handles Kollsman settings"
2007-03-31 09:36:19 +00:00

58 lines
1.1 KiB
C++

// static.hxx - the static air system.
// Written by David Megginson, started 2002.
//
// This file is in the Public Domain and comes with no warranty.
#ifndef __SYSTEMS_STATIC_HXX
#define __SYSTEMS_STATIC_HXX 1
#ifndef __cplusplus
# error This library requires C++
#endif
#include <simgear/props/props.hxx>
#include <simgear/structure/subsystem_mgr.hxx>
/**
* Model a static air system.
*
* Input properties:
*
* /environment/pressure-inhg
* /systems/"name"/serviceable
*
* Output properties:
*
* /systems/"name"/pressure-inhg
*
* TODO: support specific locations
* TODO: support alternate air with errors
*/
class StaticSystem : public SGSubsystem
{
public:
StaticSystem ( SGPropertyNode *node );
StaticSystem ( int i );
virtual ~StaticSystem ();
virtual void init ();
virtual void bind ();
virtual void unbind ();
virtual void update (double dt);
private:
string _name;
int _num;
double _tau;
SGPropertyNode_ptr _serviceable_node;
SGPropertyNode_ptr _pressure_in_node;
SGPropertyNode_ptr _pressure_out_node;
};
#endif // __SYSTEMS_STATIC_HXX