]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGTable.cpp
Change from Norman Vine to avoid breaking G++ 2.95.
[flightgear.git] / src / FDM / JSBSim / FGTable.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Module:       FGTable.cpp
4  Author:       Jon S. Berndt
5  Date started: 1/9/2001
6  Purpose:      Models a lookup table
7
8  ------------- Copyright (C) 2001  Jon S. Berndt (jsb@hal-pc.org) -------------
9
10  This program is free software; you can redistribute it and/or modify it under
11  the terms of the GNU General Public License as published by the Free Software
12  Foundation; either version 2 of the License, or (at your option) any later
13  version.
14
15  This program is distributed in the hope that it will be useful, but WITHOUT
16  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  details.
19
20  You should have received a copy of the GNU General Public License along with
21  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
22  Place - Suite 330, Boston, MA  02111-1307, USA.
23
24  Further information about the GNU General Public License can also be found on
25  the world wide web at http://www.gnu.org.
26
27 FUNCTIONAL DESCRIPTION
28 --------------------------------------------------------------------------------
29 Models a lookup table
30
31 HISTORY
32 --------------------------------------------------------------------------------
33 JSB  1/9/00          Created
34
35 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36 INCLUDES
37 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
38
39 #include "FGTable.h"
40
41 #if defined ( sgi ) && !defined( __GNUC__ )
42 #include <iomanip.h>
43 #else
44 #include <iomanip>
45 #endif
46
47 static const char *IdSrc = "$Id$";
48 static const char *IdHdr = ID_TABLE;
49
50 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51 CLASS IMPLEMENTATION
52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
54 using namespace std;
55
56 FGTable::FGTable(int NRows, int NCols) : nRows(NRows), nCols(NCols)
57 {
58   if (NCols > 1) {
59     Type = tt2D;
60     colCounter = 1;
61     rowCounter = 0;
62   } else if (NCols == 1) {
63     Type = tt1D;
64     colCounter = 0;
65     rowCounter = 1;
66   } else {
67     cerr << "FGTable cannot accept 'Rows=0'" << endl;
68   }
69
70   Data = Allocate();
71
72   Debug(0);
73 }
74
75 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
76
77 FGTable::FGTable(int NRows) : nRows(NRows), nCols(1)
78 {
79   Type = tt1D;
80   colCounter = 0;
81   rowCounter = 1;
82
83   Data = Allocate();
84   Debug(0);
85 }
86
87 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
88
89 double** FGTable::Allocate(void)
90 {
91   Data = new double*[nRows+1];
92   for (int r=0; r<=nRows; r++) {
93     Data[r] = new double[nCols+1];
94     for (int c=0; c<=nCols; c++) {
95       Data[r][c] = 0.0;
96     }
97   }
98   return Data;
99 }
100
101 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
102
103 FGTable::~FGTable()
104 {
105   for (int r=0; r<=nRows; r++) if (Data[r]) delete[] Data[r];
106   if (Data) delete[] Data;
107   Debug(1);
108 }
109
110 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
111
112 double FGTable::GetValue(double key)
113 {
114   double Factor, Value, Span;
115   int r;
116
117   for (r=1; r<=nRows; r++) if (Data[r][0] >= key) break;
118   r = r < 2 ? 2 : (r > nRows ? nRows : r);
119
120   // make sure denominator below does not go to zero.
121
122   Span = Data[r][0] - Data[r-1][0];
123   if (Span != 0.0) {
124     Factor = (key - Data[r-1][0]) / Span;
125     if (Factor > 1.0) Factor = 1.0;
126   } else {
127     Factor = 1.0;
128   }
129
130   Value = Factor*(Data[r][1] - Data[r-1][1]) + Data[r-1][1];
131
132   return Value;
133 }
134
135 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
136
137 double FGTable::GetValue(double rowKey, double colKey)
138 {
139   double rFactor, cFactor, col1temp, col2temp, Value;
140   int r, c;
141
142   for (r=1;r<=nRows;r++) if (Data[r][0] >= rowKey) break;
143   for (c=1;c<=nCols;c++) if (Data[0][c] >= colKey) break;
144
145   c = c < 2 ? 2 : (c > nCols ? nCols : c);
146   r = r < 2 ? 2 : (r > nRows ? nRows : r);
147
148   rFactor = (rowKey - Data[r-1][0]) / (Data[r][0] - Data[r-1][0]);
149   cFactor = (colKey - Data[0][c-1]) / (Data[0][c] - Data[0][c-1]);
150
151   if (rFactor > 1.0) rFactor = 1.0;
152   else if (rFactor < 0.0) rFactor = 0.0;
153
154   if (cFactor > 1.0) cFactor = 1.0;
155   else if (cFactor < 0.0) cFactor = 0.0;
156
157   col1temp = rFactor*(Data[r][c-1] - Data[r-1][c-1]) + Data[r-1][c-1];
158   col2temp = rFactor*(Data[r][c] - Data[r-1][c]) + Data[r-1][c];
159
160   Value = col1temp + cFactor*(col2temp - col1temp);
161
162   return Value;
163 }
164
165 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
166
167 void FGTable::operator<<(FGConfigFile& infile)
168 {
169   int startRow;
170
171   if (Type == tt1D) startRow = 1;
172   else startRow = 0;
173
174   for (int r=startRow; r<=nRows; r++) {
175     for (int c=0; c<=nCols; c++) {
176       if (r != 0 || c != 0) {
177         infile >> Data[r][c];
178       }
179     }
180   }
181 }
182
183 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
184
185 FGTable& FGTable::operator<<(const double n)
186 {
187   Data[rowCounter][colCounter] = n;
188   if (colCounter == nCols) {
189     colCounter = 0;
190     rowCounter++;
191   } else {
192     colCounter++;
193   }
194   return *this;
195 }
196
197 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
198
199 FGTable& FGTable::operator<<(const int n)
200 {
201   *this << (double)n;
202   return *this;
203 }
204
205 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
206
207 void FGTable::Print(void)
208 {
209   int startRow;
210
211   if (Type == tt1D) startRow = 1;
212   else startRow = 0;
213
214   ios::fmtflags flags = cout.setf(ios::fixed); // set up output stream
215   cout.precision(4);
216
217   for (int r=startRow; r<=nRows; r++) {
218     cout << "   ";
219     for (int c=0; c<=nCols; c++) {
220       if (r == 0 && c == 0) {
221       cout << " ";
222       } else {
223       cout << Data[r][c] << "   ";
224       }
225     }
226     cout << endl;
227   }
228   cout.setf(flags); // reset
229 }
230
231 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
232 //    The bitmasked value choices are as follows:
233 //    unset: In this case (the default) JSBSim would only print
234 //       out the normally expected messages, essentially echoing
235 //       the config files as they are read. If the environment
236 //       variable is not set, debug_lvl is set to 1 internally
237 //    0: This requests JSBSim not to output any messages
238 //       whatsoever.
239 //    1: This value explicity requests the normal JSBSim
240 //       startup messages
241 //    2: This value asks for a message to be printed out when
242 //       a class is instantiated
243 //    4: When this value is set, a message is displayed when a
244 //       FGModel object executes its Run() method
245 //    8: When this value is set, various runtime state variables
246 //       are printed out periodically
247 //    16: When set various parameters are sanity checked and
248 //       a message is printed out when they go out of bounds
249
250 void FGTable::Debug(int from)
251 {
252   if (debug_lvl <= 0) return;
253
254   if (debug_lvl & 1) { // Standard console startup message output
255     if (from == 0) { // Constructor
256
257     }
258   }
259   if (debug_lvl & 2 ) { // Instantiation/Destruction notification
260     if (from == 0) cout << "Instantiated: FGTable" << endl;
261     if (from == 1) cout << "Destroyed:    FGTable" << endl;
262   }
263   if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
264   }
265   if (debug_lvl & 8 ) { // Runtime state variables
266   }
267   if (debug_lvl & 16) { // Sanity checking
268   }
269   if (debug_lvl & 64) {
270     if (from == 0) { // Constructor
271       cout << IdSrc << endl;
272       cout << IdHdr << endl;
273     }
274   }
275 }
276
277
278