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.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGBrussLessDCMotor.h
4 Author: Paolo Becchi
5 Date started: 1-1-2022
6
7 ----- Copyright (C) 2022 Paolo Becchi (pbecchi@aerobusiness.it) --------------
8 This program is free software; you can redistribute it and/or modify it under
9 the terms of the GNU Lesser General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option) any
11 later version.
12
13 This program is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
16 details.
17
18 You should have received a copy of the GNU Lesser General Public License along
19 with this program; if not, write to the Free Software Foundation, Inc., 59
20 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21
22 Further information about the GNU Lesser General Public License can also be
23 found on the world wide web at http://www.gnu.org
24
25HISTORY
26--------------------------------------------------------------------------------
271/01/2022 Created
28
29%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30SENTRY
31%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
32
33#ifndef FGBrushLessDCMotor_H
34#define FGBrushLessDCMotor_H
35
36/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37INCLUDES
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40#include "FGEngine.h"
41
42/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43FORWARD DECLARATIONS
44%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
45
46namespace JSBSim {
47
48/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49CLASS DOCUMENTATION
50%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
51
72// conversion factors
73constexpr double NMtoftpound = 1.3558;
74constexpr double hptowatts = 745.7;
75constexpr double WattperRPMtoftpound = 60 / (2 * M_PI * NMtoftpound);
76
77/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
78CLASS DECLARATION
79%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
80
82{
83public:
85 FGBrushLessDCMotor(FGFDMExec* exec, Element *el, int engine_number, FGEngine::Inputs& input);
88
89 void Calculate(void);
90 double GetPowerAvailable(void) {return (HP * hptoftlbssec);}
91 double CalcFuelNeed(void) { return 0.; }
92 std::string GetEngineLabels(const std::string& delimiter);
93 std::string GetEngineValues(const std::string& delimiter);
94
95private:
96 double ZeroTorqueCurrent; // Zero torque current [A]
97 double CoilResistance; // Internal resistance [Ohm]
98 double PowerWatts; // Maximum engine power
99 double MaxVolts; // Max voltage available from battery [V]
100 double Kv; // Speed constant of brusless DC motors [RPM/V]
101 double HP; // Engine output, in horsepower
102 double Current; // Current [A]
103 void Debug(int from);
104};
105}
106//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
107#endif
void Calculate(void)
Calculates the thrust of the engine, and other engine functions.
double CalcFuelNeed(void)
The fuel need is calculated based on power levels and flow rate for that power level.
Base class for all engines.
Definition FGEngine.h:104
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184