]> git.mxchange.org Git - flightgear.git/blob - src/Systems/vacuum.hxx
Boris Koenig:
[flightgear.git] / src / Systems / vacuum.hxx
1 // vacuum.hxx - a vacuum pump connected to the aircraft engine.
2 // Written by David Megginson, started 2002.
3 //
4 // This file is in the Public Domain and comes with no warranty.
5
6
7 #ifndef __SYSTEMS_VACUUM_HXX
8 #define __SYSTEMS_VACUUM_HXX 1
9
10 #ifndef __cplusplus
11 # error This library requires C++
12 #endif
13
14 #include <simgear/props/props.hxx>
15 #include <simgear/structure/subsystem_mgr.hxx>
16
17
18 /**
19  * Model a vacuum-pump system.
20  *
21  * This first, simple draft is hard-wired to engine #1.
22  *
23  * Input properties:
24  *
25  * "rpm"
26  * /environment/pressure-inhg
27  * /systems/"name"/serviceable
28  *
29  * Output properties:
30  *
31  * /systems/"name"/suction-inhg
32  */
33 class VacuumSystem : public SGSubsystem
34 {
35
36 public:
37
38     VacuumSystem( SGPropertyNode *node );
39     VacuumSystem( int i );
40     virtual ~VacuumSystem ();
41
42     virtual void init ();
43     virtual void bind ();
44     virtual void unbind ();
45     virtual void update (double dt);
46
47 private:
48
49     string name;
50     int num;
51     string rpm;
52     double scale;
53     SGPropertyNode_ptr _serviceable_node;
54     SGPropertyNode_ptr _rpm_node;
55     SGPropertyNode_ptr _pressure_node;
56     SGPropertyNode_ptr _suction_node;
57     
58 };
59
60 #endif // __SYSTEMS_VACUUM_HXX