1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5 Date started: 6/17/2006
7 ------------- Copyright (C) 2006 Jon S. Berndt (jon@jsbsim.org) -------------
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
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
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.
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.
27 --------------------------------------------------------------------------------
28 Initial code 6/17/2006 JSB
30 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31 COMMENTS, REFERENCES, and NOTES
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39 #include "input_output/FGXMLElement.h"
47 static const char *IdSrc = "$Id: FGPID.cpp,v 1.16 2009/10/24 22:59:30 jberndt Exp $";
48 static const char *IdHdr = ID_PID;
50 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
54 FGPID::FGPID(FGFCS* fcs, Element* element) : FGFCSComponent(fcs, element)
56 string kp_string, ki_string, kd_string;
66 Input_prev = Input_prev2 = 0.0;
69 if ( element->FindElement("kp") ) {
70 kp_string = element->FindElementValue("kp");
71 if (!is_number(kp_string)) { // property
72 if (kp_string[0] == '-') {
73 KpPropertySign = -1.0;
76 KpPropertyNode = PropertyManager->GetNode(kp_string);
78 Kp = element->FindElementValueAsNumber("kp");
82 if ( element->FindElement("ki") ) {
83 ki_string = element->FindElementValue("ki");
84 if (!is_number(ki_string)) { // property
85 if (ki_string[0] == '-') {
86 KiPropertySign = -1.0;
89 KiPropertyNode = PropertyManager->GetNode(ki_string);
91 Ki = element->FindElementValueAsNumber("ki");
95 if ( element->FindElement("kd") ) {
96 kd_string = element->FindElementValue("kd");
97 if (!is_number(kd_string)) { // property
98 if (kd_string[0] == '-') {
99 KdPropertySign = -1.0;
100 kd_string.erase(0,1);
102 KdPropertyNode = PropertyManager->GetNode(kd_string);
104 Kd = element->FindElementValueAsNumber("kd");
108 if (element->FindElement("trigger")) {
109 Trigger = PropertyManager->GetNode(element->FindElementValue("trigger"));
112 FGFCSComponent::bind();
117 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
124 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
126 bool FGPID::Run(void )
128 double I_out_delta = 0.0;
131 Input = InputNodes[0]->getDoubleValue() * InputSigns[0];
133 if (KpPropertyNode != 0) Kp = KpPropertyNode->getDoubleValue() * KpPropertySign;
134 if (KiPropertyNode != 0) Ki = KiPropertyNode->getDoubleValue() * KiPropertySign;
135 if (KdPropertyNode != 0) Kd = KdPropertyNode->getDoubleValue() * KdPropertySign;
138 D_out = (Kd / dt) * (Input - Input_prev);
140 // Do not continue to integrate the input to the integrator if a wind-up
141 // condition is sensed - that is, if the property pointed to by the trigger
142 // element is non-zero. Reset the integrator to 0.0 if the Trigger value
146 double test = Trigger->getDoubleValue();
147 if (fabs(test) < 0.000001) I_out_delta = Ki * dt * Input; // Normal
148 if (test < 0.0) I_out_total = 0.0; // Reset integrator to 0.0
149 } else { // no anti-wind-up trigger defined
150 I_out_delta = Ki * dt * Input;
153 I_out_total += I_out_delta;
155 Output = P_out + I_out_total + D_out;
158 Input_prev2 = Input_prev;
161 if (IsOutput) SetOutput();
166 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
167 // The bitmasked value choices are as follows:
168 // unset: In this case (the default) JSBSim would only print
169 // out the normally expected messages, essentially echoing
170 // the config files as they are read. If the environment
171 // variable is not set, debug_lvl is set to 1 internally
172 // 0: This requests JSBSim not to output any messages
174 // 1: This value explicity requests the normal JSBSim
176 // 2: This value asks for a message to be printed out when
177 // a class is instantiated
178 // 4: When this value is set, a message is displayed when a
179 // FGModel object executes its Run() method
180 // 8: When this value is set, various runtime state variables
181 // are printed out periodically
182 // 16: When set various parameters are sanity checked and
183 // a message is printed out when they go out of bounds
185 void FGPID::Debug(int from)
187 if (debug_lvl <= 0) return;
189 if (debug_lvl & 1) { // Standard console startup message output
190 if (from == 0) { // Constructor
191 if (InputSigns[0] < 0)
192 cout << " INPUT: -" << InputNodes[0]->getName() << endl;
194 cout << " INPUT: " << InputNodes[0]->getName() << endl;
197 for (unsigned int i=0; i<OutputNodes.size(); i++)
198 cout << " OUTPUT: " << OutputNodes[i]->getName() << endl;
202 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
203 if (from == 0) cout << "Instantiated: FGPID" << endl;
204 if (from == 1) cout << "Destroyed: FGPID" << endl;
206 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
208 if (debug_lvl & 8 ) { // Runtime state variables
210 if (debug_lvl & 16) { // Sanity checking
212 if (debug_lvl & 64) {
213 if (from == 0) { // Constructor
214 cout << IdSrc << endl;
215 cout << IdHdr << endl;