]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/models/propulsion/FGElectric.cpp
Merge branch 'jsd/atmos' into topic/atmos-merge
[flightgear.git] / src / FDM / JSBSim / models / propulsion / FGElectric.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Module:       FGElectric.cpp
4  Author:       David Culp
5  Date started: 04/07/2004
6  Purpose:      This module models an electric motor
7
8  --------- Copyright (C) 2004  David Culp (davidculp2@comcast.net) -------------
9
10  This program is free software; you can redistribute it and/or modify it under
11  the terms of the GNU Lesser 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 Lesser General Public License for more
18  details.
19
20  You should have received a copy of the GNU Lesser 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 Lesser General Public License can also be found on
25  the world wide web at http://www.gnu.org.
26
27 FUNCTIONAL DESCRIPTION
28 --------------------------------------------------------------------------------
29
30 This class descends from the FGEngine class and models an electric motor based on
31 parameters given in the engine config file for this class
32
33 HISTORY
34 --------------------------------------------------------------------------------
35 04/07/2004  DPC  Created
36 01/06/2005  DPC  Converted to new XML format
37
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39 INCLUDES
40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
41
42 #include "FGElectric.h"
43 #include <models/FGPropulsion.h>
44
45 namespace JSBSim {
46
47 static const char *IdSrc = "$Id$";
48 static const char *IdHdr = ID_ELECTRIC;
49
50 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51 CLASS IMPLEMENTATION
52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
54 FGElectric::FGElectric(FGFDMExec* exec, Element *el, int engine_number)
55   : FGEngine(exec, el, engine_number)
56 {
57   string token;
58
59   Type = etElectric;
60   PowerWatts = 745.7;
61   hptowatts = 745.7;
62
63   dt = State->Getdt();
64
65   if (el->FindElement("power"))
66     PowerWatts = el->FindElementValueAsNumberConvertTo("power","WATTS");
67
68   Debug(0); // Call Debug() routine from constructor if needed
69 }
70
71 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
72
73 FGElectric::~FGElectric()
74 {
75   Debug(1); // Call Debug() routine from constructor if needed
76 }
77
78 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79
80 double FGElectric::Calculate(void)
81 {
82   Throttle = FCS->GetThrottlePos(EngineNumber);
83
84   RPM = Thruster->GetRPM() * Thruster->GetGearRatio();
85
86   HP = PowerWatts * Throttle / hptowatts;
87
88   PowerAvailable = (HP * hptoftlbssec) - Thruster->GetPowerRequired();
89
90   return Thruster->Calculate(PowerAvailable);
91 }
92
93 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
94
95 string FGElectric::GetEngineLabels(string delimeter)
96 {
97   std::ostringstream buf;
98
99   buf << Name << " HP (engine " << EngineNumber << ")" << delimeter
100       << Thruster->GetThrusterLabels(EngineNumber, delimeter);
101
102   return buf.str();
103 }
104
105 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
106
107 string FGElectric::GetEngineValues(string delimeter)
108 {
109   std::ostringstream buf;
110
111   buf << HP << delimeter
112      << Thruster->GetThrusterValues(EngineNumber, delimeter);
113
114   return buf.str();
115 }
116
117 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
118 //
119 //    The bitmasked value choices are as follows:
120 //    unset: In this case (the default) JSBSim would only print
121 //       out the normally expected messages, essentially echoing
122 //       the config files as they are read. If the environment
123 //       variable is not set, debug_lvl is set to 1 internally
124 //    0: This requests JSBSim not to output any messages
125 //       whatsoever.
126 //    1: This value explicity requests the normal JSBSim
127 //       startup messages
128 //    2: This value asks for a message to be printed out when
129 //       a class is instantiated
130 //    4: When this value is set, a message is displayed when a
131 //       FGModel object executes its Run() method
132 //    8: When this value is set, various runtime state variables
133 //       are printed out periodically
134 //    16: When set various parameters are sanity checked and
135 //       a message is printed out when they go out of bounds
136
137 void FGElectric::Debug(int from)
138 {
139   if (debug_lvl <= 0) return;
140
141   if (debug_lvl & 1) { // Standard console startup message output
142     if (from == 0) { // Constructor
143
144       cout << "\n    Engine Name: "         << Name << endl;
145       cout << "      Power Watts: "         << PowerWatts << endl;
146
147     }
148   }
149   if (debug_lvl & 2 ) { // Instantiation/Destruction notification
150     if (from == 0) cout << "Instantiated: FGElectric" << endl;
151     if (from == 1) cout << "Destroyed:    FGElectric" << endl;
152   }
153   if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
154   }
155   if (debug_lvl & 8 ) { // Runtime state variables
156   }
157   if (debug_lvl & 16) { // Sanity checking
158   }
159   if (debug_lvl & 64) {
160     if (from == 0) { // Constructor
161       cout << IdSrc << endl;
162       cout << IdHdr << endl;
163     }
164   }
165 }
166
167 double
168 FGElectric::CalcFuelNeed(void)
169 {
170   return 0;
171 }
172
173 } // namespace JSBSim