]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/models/flight_control/FGPID.cpp
Sync. w. JSB CVS as of 15/01/2007
[flightgear.git] / src / FDM / JSBSim / models / flight_control / FGPID.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Module:       FGPID.cpp
4  Author:       Jon S. Berndt
5  Date started: 6/17/2006
6
7  ------------- Copyright (C) 2006 Jon S. Berndt (jsb@hal-pc.org) -------------
8
9  This program is free software; you can redistribute it and/or modify it under
10  the terms of the GNU Lesser General Public License as published by the Free Software
11  Foundation; either version 2 of the License, or (at your option) any later
12  version.
13
14  This program is distributed in the hope that it will be useful, but WITHOUT
15  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
17  details.
18
19  You should have received a copy of the GNU Lesser General Public License along with
20  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21  Place - Suite 330, Boston, MA  02111-1307, USA.
22
23  Further information about the GNU Lesser General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26 HISTORY
27 --------------------------------------------------------------------------------
28 Initial code 6/17/2006 JSB
29
30 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31 COMMENTS, REFERENCES,  and NOTES
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35 INCLUDES
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
37
38 #include "FGPID.h"
39
40 namespace JSBSim {
41
42 static const char *IdSrc = "$Id$";
43 static const char *IdHdr = ID_PID;
44
45 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46 CLASS IMPLEMENTATION
47 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
48
49 FGPID::FGPID(FGFCS* fcs, Element* element) : FGFCSComponent(fcs, element)
50 {
51   dt = fcs->GetState()->Getdt();
52
53   Kp = Ki = Kd = 0.0;
54   P_out = D_out = I_out = 0.0;
55   Input_prev = Input_prev2 = 0.0;
56   Trigger = 0;
57
58   if (element->FindElement("kp")) Kp = element->FindElementValueAsNumber("kp");
59   if (element->FindElement("ki")) Ki = element->FindElementValueAsNumber("ki");
60   if (element->FindElement("kd")) Kd = element->FindElementValueAsNumber("kd");
61   if (element->FindElement("trigger")) {
62     Trigger =  PropertyManager->GetNode(element->FindElementValue("trigger"));
63   }
64
65   FGFCSComponent::bind();
66
67   Debug(0);
68 }
69
70 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71
72 FGPID::~FGPID()
73 {
74   Debug(1);
75 }
76
77 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
78
79 bool FGPID::Run(void )
80 {
81   Input = InputNodes[0]->getDoubleValue() * InputSigns[0];
82
83   P_out = Kp * (Input - Input_prev);
84   I_out = Ki * dt * Input;
85   D_out = (Kd / dt) * (Input - 2*Input_prev + Input_prev2);
86
87   if (Trigger != 0) {
88     double test = Trigger->getDoubleValue();
89     if (fabs(test) > 0.000001) {
90       I_out = 0.0;
91     }
92   }
93
94   Input_prev = Input;
95   Input_prev2 = Input_prev;
96
97   Output += P_out + I_out + D_out;
98
99   Clip();
100   if (IsOutput) SetOutput();
101
102   return true;
103 }
104
105 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
106 //    The bitmasked value choices are as follows:
107 //    unset: In this case (the default) JSBSim would only print
108 //       out the normally expected messages, essentially echoing
109 //       the config files as they are read. If the environment
110 //       variable is not set, debug_lvl is set to 1 internally
111 //    0: This requests JSBSim not to output any messages
112 //       whatsoever.
113 //    1: This value explicity requests the normal JSBSim
114 //       startup messages
115 //    2: This value asks for a message to be printed out when
116 //       a class is instantiated
117 //    4: When this value is set, a message is displayed when a
118 //       FGModel object executes its Run() method
119 //    8: When this value is set, various runtime state variables
120 //       are printed out periodically
121 //    16: When set various parameters are sanity checked and
122 //       a message is printed out when they go out of bounds
123
124 void FGPID::Debug(int from)
125 {
126   if (debug_lvl <= 0) return;
127
128   if (debug_lvl & 1) { // Standard console startup message output
129     if (from == 0) { // Constructor
130       if (InputSigns[0] < 0)
131         cout << "      INPUT: -" << InputNodes[0]->getName() << endl;
132       else
133         cout << "      INPUT: " << InputNodes[0]->getName() << endl;
134
135       if (IsOutput) cout << "      OUTPUT: " << OutputNode->getName() << endl;
136     }
137   }
138   if (debug_lvl & 2 ) { // Instantiation/Destruction notification
139     if (from == 0) cout << "Instantiated: FGPID" << endl;
140     if (from == 1) cout << "Destroyed:    FGPID" << endl;
141   }
142   if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
143   }
144   if (debug_lvl & 8 ) { // Runtime state variables
145   }
146   if (debug_lvl & 16) { // Sanity checking
147   }
148   if (debug_lvl & 64) {
149     if (from == 0) { // Constructor
150       cout << IdSrc << endl;
151       cout << IdHdr << endl;
152     }
153   }
154 }
155 }