]> git.mxchange.org Git - flightgear.git/blob - src/Systems/electrical.cxx
Refactored some of the navlist code and removed the built in "fail to find"
[flightgear.git] / src / Systems / electrical.cxx
1 // electrical.cxx - a flexible, generic electrical system model.
2 //
3 // Written by Curtis Olson, started September 2002.
4 //
5 // Copyright (C) 2002  Curtis L. Olson  - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #include <simgear/misc/exception.hxx>
25 #include <simgear/misc/sg_path.hxx>
26
27 #include <Main/fg_props.hxx>
28 #include <Main/globals.hxx>
29
30 #include "electrical.hxx"
31
32
33 FGElectricalComponent::FGElectricalComponent() :
34     kind(-1),
35     name(""),
36     value(0.0)
37 {
38 }
39
40
41 FGElectricalSupplier::FGElectricalSupplier ( SGPropertyNode *node ) {
42     kind = FG_SUPPLIER;
43
44     // cout << "Creating a supplier" << endl;
45     name = node->getStringValue("name");
46     string _model = node->getStringValue("kind");
47     // cout << "_model = " << _model << endl;
48     if ( _model == "battery" ) {
49         model = FG_BATTERY;
50     } else if ( _model == "alternator" ) {
51         model = FG_ALTERNATOR;
52     } else if ( _model == "external" ) {
53         model = FG_EXTERNAL;
54     } else {
55         model = FG_UNKNOWN;
56     }
57     volts = node->getDoubleValue("volts");
58     amps = node->getDoubleValue("amps");
59
60     int i;
61     for ( i = 0; i < node->nChildren(); ++i ) {
62         SGPropertyNode *child = node->getChild(i);
63         // cout << " scanning: " << child->getName() << endl;
64         if ( (string)child->getName() == "prop" ) {
65             string prop = child->getStringValue();
66             // cout << "  Adding prop = " << prop << endl;
67             add_prop( prop );
68             fgSetDouble( prop.c_str(), amps );
69         }
70     }
71
72     _rpm_node = fgGetNode("/engines/engine[0]/rpm", true);
73 }  
74
75
76 double FGElectricalSupplier::get_output() {
77     if ( model == FG_BATTERY ) {
78         // cout << "battery amps = " << amps << endl;
79         return amps;
80     } else if ( model == FG_ALTERNATOR ) {
81         // scale alternator output for rpms < 600.  For rpms >= 600
82         // give full output.  This is just a WAG, and probably not how
83         // it really works but I'm keeping things "simple" to start.
84         double rpm = _rpm_node->getDoubleValue();
85         double factor = rpm / 600.0;
86         if ( factor > 1.0 ) {
87             factor = 1.0;
88         }
89         // cout << "alternator amps = " << amps * factor << endl;
90         return amps * factor;
91     } else if ( model == FG_EXTERNAL ) {
92         // cout << "external amps = " << 0.0 << endl;
93         return 0.0;
94     } else {
95         SG_LOG( SG_ALL, SG_ALERT, "unknown supplier type" );
96     }
97
98     return 0.0;
99 }
100
101
102 FGElectricalBus::FGElectricalBus ( SGPropertyNode *node ) {
103     kind = FG_BUS;
104
105     name = node->getStringValue("name");
106     int i;
107     for ( i = 0; i < node->nChildren(); ++i ) {
108         SGPropertyNode *child = node->getChild(i);
109         if ( (string)child->getName() == "prop" ) {
110             string prop = child->getStringValue();
111             add_prop( prop );
112         }
113     }
114 }  
115
116
117 FGElectricalOutput::FGElectricalOutput ( SGPropertyNode *node ) {
118     kind = FG_OUTPUT;
119
120     name = node->getStringValue("name");
121     int i;
122     for ( i = 0; i < node->nChildren(); ++i ) {
123         SGPropertyNode *child = node->getChild(i);
124         if ( (string)child->getName() == "prop" ) {
125             string prop = child->getStringValue();
126             add_prop( prop );
127         }
128     }
129 }  
130
131
132 FGElectricalConnector::FGElectricalConnector ( SGPropertyNode *node,
133                                                FGElectricalSystem *es ) {
134     kind = FG_CONNECTOR;
135     name = "connector";
136     int i;
137     for ( i = 0; i < node->nChildren(); ++i ) {
138         SGPropertyNode *child = node->getChild(i);
139         string cname = child->getName();
140         string cval = child->getStringValue();
141         // cout << "  " << cname << " = " << cval << endl;
142         if ( cname == "input" ) {
143             FGElectricalComponent *s = es->find( child->getStringValue() );
144             if ( s != NULL ) {
145                 add_input( s );
146                 if ( s->get_kind() == FG_SUPPLIER ) {
147                     s->add_output( this );
148                 } else if ( s->get_kind() == FG_BUS ) {
149                     s->add_output( this );
150                 } else {
151                     SG_LOG( SG_ALL, SG_ALERT,
152                             "Attempt to connect to something that can't provide an output: " 
153                             << child->getStringValue() );
154                 }
155             } else {
156                 SG_LOG( SG_ALL, SG_ALERT, "Can't find named source: " 
157                         << child->getStringValue() );
158             }
159         } else if ( cname == "output" ) {
160             FGElectricalComponent *s = es->find( child->getStringValue() );
161             if ( s != NULL ) {
162                 add_output( s );
163                 if ( s->get_kind() == FG_BUS ) {
164                     s->add_input( this );
165                 } else if ( s->get_kind() == FG_OUTPUT ) {
166                     s->add_input( this );
167                 } else {
168                     SG_LOG( SG_ALL, SG_ALERT,
169                             "Attempt to connect to something that can't provide an input: " 
170                             << child->getStringValue() );
171                 }
172             } else {
173                 SG_LOG( SG_ALL, SG_ALERT, "Can't find named source: " 
174                         << child->getStringValue() );
175             }
176         } else if ( cname == "switch" ) {
177             // set default value of switch to true
178             // cout << "Switch = " << child->getStringValue() << endl;
179             fgSetBool( child->getStringValue(), true );
180             add_switch( fgGetNode( child->getStringValue(), true ) );
181         }
182     }
183 }  
184
185
186 // return true if all switches are true, false otherwise.  A connector
187 // could have multiple switches, but they all need to be true(closed)
188 // for current to get through.
189 bool FGElectricalConnector::get_state() {
190     unsigned int i;
191     for ( i = 0; i < switches.size(); ++i ) {
192         if ( ! switches[i]->getBoolValue() ) {
193             return false;
194         }
195     }
196
197     return true;
198 }
199
200
201 FGElectricalSystem::FGElectricalSystem () :
202     enabled(false)
203 {
204 }
205
206
207 FGElectricalSystem::~FGElectricalSystem () {
208 }
209
210
211 void FGElectricalSystem::init () {
212     config_props = new SGPropertyNode;
213
214     SGPropertyNode *path_n = fgGetNode("/sim/systems/electrical/path");
215
216     if (path_n) {
217         SGPath config( globals->get_fg_root() );
218         config.append( path_n->getStringValue() );
219
220         SG_LOG( SG_ALL, SG_ALERT, "Reading electrical system model from "
221                 << config.str() );
222         try {
223             readProperties( config.str(), config_props );
224
225             if ( build() ) {
226                 enabled = true;
227             } else {
228                 SG_LOG( SG_ALL, SG_ALERT,
229                         "Detected an internal inconsistancy in the electrical");
230                 SG_LOG( SG_ALL, SG_ALERT,
231                         " system specification file.  See earlier errors for" );
232                 SG_LOG( SG_ALL, SG_ALERT,
233                         " details.");
234                 exit(-1);
235             }        
236         } catch (const sg_exception& exc) {
237             SG_LOG( SG_ALL, SG_ALERT, "Failed to load electrical system model: "
238                     << config.str() );
239         }
240
241     } else
242         SG_LOG( SG_ALL, SG_ALERT,
243                 "No electrical model specified for this model!");
244
245     delete config_props;
246 }
247
248
249 void FGElectricalSystem::bind () {
250 }
251
252
253 void FGElectricalSystem::unbind () {
254 }
255
256
257 void FGElectricalSystem::update (double dt) {
258     if ( !enabled ) {
259         return;
260     }
261
262     // cout << "Updating electrical system" << endl;
263
264     unsigned int i;
265
266     // zero everything out before we start
267     for ( i = 0; i < suppliers.size(); ++i ) {
268         suppliers[i]->set_value( 0.0 );
269     }
270     for ( i = 0; i < buses.size(); ++i ) {
271         buses[i]->set_value( 0.0 );
272     }
273     for ( i = 0; i < outputs.size(); ++i ) {
274         outputs[i]->set_value( 0.0 );
275     }
276     for ( i = 0; i < connectors.size(); ++i ) {
277         connectors[i]->set_value( 0.0 );
278     }
279
280     // for each supplier, propogate the electrical current
281     for ( i = 0; i < suppliers.size(); ++i ) {
282         // cout << " Updating: " << suppliers[i]->get_name() << endl;
283         propogate( suppliers[i], 0.0, " " );
284     }
285
286 }
287
288
289 bool FGElectricalSystem::build () {
290     SGPropertyNode *node;
291     int i;
292
293     int count = config_props->nChildren();
294     for ( i = 0; i < count; ++i ) {
295         node = config_props->getChild(i);
296         string name = node->getName();
297         // cout << name << endl;
298         if ( name == "supplier" ) {
299             FGElectricalSupplier *s =
300                 new FGElectricalSupplier( node );
301             suppliers.push_back( s );
302         } else if ( name == "bus" ) {
303             FGElectricalBus *b =
304                 new FGElectricalBus( node );
305             buses.push_back( b );
306         } else if ( name == "output" ) {
307             FGElectricalOutput *o =
308                 new FGElectricalOutput( node );
309             outputs.push_back( o );
310         } else if ( name == "connector" ) {
311             FGElectricalConnector *c =
312                 new FGElectricalConnector( node, this );
313             connectors.push_back( c );
314         } else {
315             SG_LOG( SG_ALL, SG_ALERT, "Unknown component type specified: " 
316                     << name );
317             return false;
318         }
319     }
320
321     return true;
322 }
323
324
325 // propogate the electrical current through the network
326 void FGElectricalSystem::propogate( FGElectricalComponent *node, double val,
327                                     string s ) {
328     s += " ";
329
330     // determine the current to carry forward
331     double current = 0.0;
332     if ( node->get_kind() == FG_SUPPLIER ) {
333         // cout << s << " is a supplier" << endl;
334         current = ((FGElectricalSupplier *)node)->get_output();
335     } else if ( node->get_kind() == FG_BUS ) {
336         // cout << s << " is a bus" << endl;
337         current = val;
338     } else if ( node->get_kind() == FG_OUTPUT ) {
339         // cout << s << " is an output" << endl;
340         current = val;
341     } else if ( node->get_kind() == FG_CONNECTOR ) {
342         // cout << s << " is a connector" << endl;
343         if ( ((FGElectricalConnector *)node)->get_state() ) {
344             current = val;
345         } else {
346             current = 0.0;
347         }
348         // cout << s << "  val = " << current << endl;
349     } else {
350         SG_LOG( SG_ALL, SG_ALERT, "unkown node type" );
351     }
352
353     if ( current > node->get_value() ) {
354         node->set_value( current );
355     }
356
357     int i;
358
359     // publish values to specified properties
360     for ( i = 0; i < node->get_num_props(); ++i ) {
361         fgSetDouble( node->get_prop(i).c_str(), node->get_value() );
362     }
363     // cout << s << node->get_name() << " -> " << node->get_value() << endl;
364
365     // propogate to all children
366     for ( i = 0; i < node->get_num_outputs(); ++i ) {
367         propogate( node->get_output(i), current, s );
368     }
369 }
370
371
372 // search for the named component and return a pointer to it, NULL otherwise
373 FGElectricalComponent *FGElectricalSystem::find ( const string &name ) {
374     unsigned int i;
375     string s;
376
377     // search suppliers
378     for ( i = 0; i < suppliers.size(); ++i ) {
379         s = suppliers[i]->get_name();
380         // cout <<  "    " << s << endl;
381         if ( s == name ) {
382             return suppliers[i];
383         }
384     }
385
386     // then search buses
387     for ( i = 0; i < buses.size(); ++i ) {
388         s = buses[i]->get_name();
389         // cout <<  "    " << s << endl;
390         if ( s == name ) {
391             return buses[i];
392         }
393     }
394
395     // then search outputs
396     for ( i = 0; i < outputs.size(); ++i ) {
397         s = outputs[i]->get_name();
398         // cout <<  "    " << s << endl;
399         if ( s == name ) {
400             return outputs[i];
401         }
402     }
403
404     // nothing found
405     return NULL;
406 }