JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGBrushLessDCMotor.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGBrushLessDCMotor.cpp
4 Autor Paolo Becchi
5 1st release 1/1/2022
6 Purpose: This module models an BLDC electric motor
7
8 ------------- Copyright (C) 2022 Paolo Becchi (pbecchi@aerobusinees.it) -------------
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
12 Software Foundation; either version 2 of the License, or (at your option) any
13 later 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
21 with this program; if not, write to the Free Software Foundation, Inc., 59
22 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 Further information about the GNU Lesser General Public License can also be
25 found on the world wide web at http://www.gnu.org
26
27FUNCTIONAL DESCRIPTION
28--------------------------------------------------------------------------------
29Following code represent a new BrushLess DC motor to be used as alternative
30to basic electric motor.
31BLDC motor code is based on basic "3 constant motor equations"
32It require 3 basic physical motor properties:
33Kv speed motor constant [RPM/Volt]
34Rm internal coil resistance [Ohms]
35I0 no load current [Amperes]
36
37REFERENCE:
38http://web.mit.edu/drela/Public/web/qprop/motor1_theory.pdf
39
40HISTORY
41--------------------------------------------------------------------------------
421/01/2022 Created
43
44%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
45INCLUDES
46%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
47
48#include <iostream>
49#include <sstream>
50#include <math.h>
51
52#include "FGFDMExec.h"
53#include "FGBrushLessDCMotor.h"
54#include "FGPropeller.h"
55#include "input_output/FGXMLElement.h"
56
57using namespace std;
58
59namespace JSBSim {
60
61/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
62CLASS IMPLEMENTATION
63%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
64
65FGBrushLessDCMotor::FGBrushLessDCMotor(FGFDMExec* exec, Element* el, int engine_number, struct FGEngine::Inputs& input)
66 : FGEngine(engine_number, input)
67{
68 Load(exec, el);
69
70 Type = etElectric;
71
72 if (el->FindElement("maxvolts"))
73 MaxVolts = el->FindElementValueAsNumberConvertTo("maxvolts", "VOLTS");
74 else {
75 cerr << el->ReadFrom()
76 << "<maxvolts> is a mandatory parameter" << endl;
77 throw BaseException("Missing parameter");
78 }
79
80 if (el->FindElement("velocityconstant"))
81 Kv = el->FindElementValueAsNumber("velocityconstant");
82 else {
83 cerr << el->ReadFrom()
84 << "<velocityconstant> is a mandatory parameter" << endl;
85 throw BaseException("Missing parameter");
86 }
87
88 if (el->FindElement("coilresistance"))
89 CoilResistance = el->FindElementValueAsNumberConvertTo("coilresistance", "OHMS");
90 else {
91 cerr << el->ReadFrom()
92 << "<coilresistance> is a mandatory parameter" << endl;
93 throw BaseException("Missing parameter");
94 }
95 if (el->FindElement("noloadcurrent"))
96 ZeroTorqueCurrent = el->FindElementValueAsNumberConvertTo("noloadcurrent", "AMPERES");
97 else {
98 cerr << el->ReadFrom()
99 << "<noloadcurrent> is a mandatory parameter" << endl;
100 throw BaseException("Missing parameter");
101 }
102
103 double MaxCurrent = MaxVolts / CoilResistance + ZeroTorqueCurrent;
104
105 PowerWatts = MaxCurrent * MaxVolts;
106
107 string base_property_name = CreateIndexedPropertyName("propulsion/engine", EngineNumber);
108 auto pm = exec->GetPropertyManager();
109 pm->Tie(base_property_name + "/power-hp", &HP);
110 pm->Tie(base_property_name + "/current-amperes", &Current);
111
112 Debug(0); // Call Debug() routine from constructor if needed
113}
114
115//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
116
118{
119 Debug(1); // Call Debug() routine from constructor if needed
120}
121
122//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
123
125{
126 RunPreFunctions();
127
128 if (Thruster->GetType() == FGThruster::ttPropeller) {
129 ((FGPropeller*)Thruster)->SetAdvance(in.PropAdvance[EngineNumber]);
130 ((FGPropeller*)Thruster)->SetFeather(in.PropFeather[EngineNumber]);
131 }
132
133 double RPM = Thruster->GetRPM();
134 double V = MaxVolts * in.ThrottlePos[EngineNumber];
135
136 Current = (V - RPM / Kv) / CoilResistance; // Equation (4) from Drela's document
137
138 // Compute torque from current with Kq=1/Kv considering NoLoadCurrent deadband
139 // The "zero torque current" is by definition the current necessary for the
140 // motor to overcome internal friction : it is always resisting the torque and
141 // consequently has an opposite to the current.
142
143 double Torque = 0;
144
145 if (Current >= ZeroTorqueCurrent)
146 Torque = (Current - ZeroTorqueCurrent) / Kv * WattperRPMtoftpound;
147 if (Current<=-ZeroTorqueCurrent)
148 Torque = (Current + ZeroTorqueCurrent) / Kv * WattperRPMtoftpound;
149
150 // EnginePower must be non zero when accelerating from RPM == 0.0
151 double EnginePower = ((2 * M_PI) * max(RPM, 0.0001) * Torque) / 60; //units [#*ft/s]
152 HP = EnginePower / hptowatts * NMtoftpound; // units[HP]
153 LoadThrusterInputs();
154 Thruster->Calculate(EnginePower);
155
156 RunPostFunctions();
157}
158
159//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
160
161string FGBrushLessDCMotor::GetEngineLabels(const string& delimiter)
162{
163 std::ostringstream buf;
164
165 buf << Name << " HP (engine " << EngineNumber << ")" << delimiter
166 << Thruster->GetThrusterLabels(EngineNumber, delimiter);
167
168 return buf.str();
169}
170
171//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
172
173string FGBrushLessDCMotor::GetEngineValues(const string& delimiter)
174{
175 std::ostringstream buf;
176
177 buf << HP << delimiter
178 << Thruster->GetThrusterValues(EngineNumber, delimiter);
179
180 return buf.str();
181}
182
183//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
184//
185// The bitmasked value choices are as follows:
186// unset: In this case (the default) JSBSim would only print
187// out the normally expected messages, essentially echoing
188// the config files as they are read. If the environment
189// variable is not set, debug_lvl is set to 1 internally
190// 0: This requests JSBSim not to output any messages
191// whatsoever.
192// 1: This value explicity requests the normal JSBSim
193// startup messages
194// 2: This value asks for a message to be printed out when
195// a class is instantiated
196// 4: When this value is set, a message is displayed when a
197// FGModel object executes its Run() method
198// 8: When this value is set, various runtime state variables
199// are printed out periodically
200// 16: When set various parameters are sanity checked and
201// a message is printed out when they go out of bounds
202
203void FGBrushLessDCMotor::Debug(int from)
204{
205 if (debug_lvl <= 0) return;
206
207 if (debug_lvl & 1) { // Standard console startup message output
208 if (from == 0) { // Constructor
209
210 cout << "\n Engine Name: " << Name << endl;
211 cout << " Power Watts: " << PowerWatts << endl;
212 cout << " Speed Factor: " << Kv << endl;
213 cout << " Coil Resistance: " << CoilResistance << endl;
214 cout << " NoLoad Current: " << ZeroTorqueCurrent << endl;
215 }
216 }
217 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
218 if (from == 0) cout << "Instantiated: FGBrushLessDCMotor" << endl;
219 if (from == 1) cout << "Destroyed: FGBrushLessDCMotor" << endl;
220 }
221 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
222 }
223 if (debug_lvl & 8 ) { // Runtime state variables
224 }
225 if (debug_lvl & 16) { // Sanity checking
226 }
227 if (debug_lvl & 64) {
228 if (from == 0) { // Constructor
229 }
230 }
231}
232
233} // namespace JSBSim
Element * FindElement(const std::string &el="")
Searches for a specified element.
std::string ReadFrom(void) const
Return a string that contains a description of the location where the current XML element was read fr...
double FindElementValueAsNumberConvertTo(const std::string &el, const std::string &target_units)
Searches for the named element and converts and returns the data belonging to it.
double FindElementValueAsNumber(const std::string &el="")
Searches for the named element and returns the data belonging to it as a number.
void Calculate(void)
Calculates the thrust of the engine, and other engine functions.
FGBrushLessDCMotor(FGFDMExec *exec, Element *el, int engine_number, FGEngine::Inputs &input)
Constructor.
Base class for all engines.
Definition FGEngine.h:104
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
std::shared_ptr< FGPropertyManager > GetPropertyManager(void) const
Returns a pointer to the property manager object.
Definition FGFDMExec.h:421
FGPropeller models a propeller given the tabular data for Ct (thrust) and Cp (power),...