FlightGear next
pisimplecontroller.hxx
Go to the documentation of this file.
1// pisimplecontroller.hxx - implementation of a simple PI controller
2//
3// Written by Torsten Dreyer
4// Based heavily on work created by Curtis Olson, started January 2004.
5//
6// Copyright (C) 2004 Curtis L. Olson - http://www.flightgear.org/~curt
7// Copyright (C) 2010 Torsten Dreyer - Torsten (at) t3r (dot) de
8//
9// This program is free software; you can redistribute it and/or
10// modify it under the terms of the GNU General Public License as
11// published by the Free Software Foundation; either version 2 of the
12// License, or (at your option) any later version.
13//
14// This program is distributed in the hope that it will be useful, but
15// WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17// General Public License for more details.
18//
19// You should have received a copy of the GNU General Public License
20// along with this program; if not, write to the Free Software
21// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22//
23#ifndef __PISIMPLECONTROLLER_HXX
24#define __PISIMPLECONTROLLER_HXX 1
25
26#ifdef HAVE_CONFIG_H
27# include <config.h>
28#endif
29
30#include "analogcomponent.hxx"
31
32#include <simgear/props/props.hxx>
33#include <simgear/structure/subsystem_mgr.hxx>
34
35namespace FGXMLAutopilot {
36
41{
42
43private:
44 // proportional component data
45 simgear::ValueList _Kp;
46
47 // integral component data
48 simgear::ValueList _Ki;
49 double _int_sum;
50
51protected:
52 virtual bool configure( SGPropertyNode& cfg_node,
53 const std::string& cfg_name,
54 SGPropertyNode& prop_root );
55
56public:
59
60 // Subsystem identification.
61 static const char* staticSubsystemClassId() { return "pi-simple-controller"; }
62
63 void update( bool firstTime, double dt );
64};
65
66}
67
68#endif
AnalogComponent()
A constructor for an analog component.
void update(bool firstTime, double dt)
pure virtual function to be implemented by the derived classes.
virtual bool configure(SGPropertyNode &cfg_node, const std::string &cfg_name, SGPropertyNode &prop_root)
This method configures this analog component from a property node.