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
FGThruster.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGThruster.cpp
4 Author: Jon S. Berndt
5 Date started: 08/23/00
6 Purpose: Encapsulates the thruster object
7
8 ------------- Copyright (C) 2000 Jon S. Berndt (jon@jsbsim.org) -------------
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
27FUNCTIONAL DESCRIPTION
28--------------------------------------------------------------------------------
29
30HISTORY
31--------------------------------------------------------------------------------
3208/23/00 JSB Created
33
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35INCLUDES
36%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
37
38#include <iostream>
39#include <sstream>
40
41#include "FGFDMExec.h"
42#include "input_output/FGPropertyManager.h"
43#include "FGThruster.h"
44#include "input_output/FGXMLElement.h"
45
46using namespace std;
47
48namespace JSBSim {
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51CLASS IMPLEMENTATION
52%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
54
55FGThruster::FGThruster(FGFDMExec *FDMExec, Element *el, int num ): FGForce(FDMExec)
56{
57 Element* thruster_element = el->GetParent();
58 Element* element;
59 FGColumnVector3 location, orientation, pointing;
60
61 Type = ttDirect;
62 SetTransformType(FGForce::tCustom);
63
64 Name = el->GetAttributeValue("name");
65
66 GearRatio = 1.0;
67 EngineNum = num;
68 auto PropertyManager = FDMExec->GetPropertyManager();
69
70// Determine the initial location and orientation of this thruster and load the
71// thruster with this information.
72
73 element = thruster_element->FindElement("location");
74 if (element) location = element->FindElementTripletConvertTo("IN");
75 else cerr << fgred << " No thruster location found." << reset << endl;
76
77 SetLocation(location);
78
79 string property_name, base_property_name;
80 base_property_name = CreateIndexedPropertyName("propulsion/engine", EngineNum);
81
82 property_name = base_property_name + "/x-reference-position";
83 PropertyManager->Tie(property_name.c_str(), (FGForce*)this, &FGForce::GetLocationX);
84 property_name = base_property_name + "/y-reference-position";
85 PropertyManager->Tie(property_name.c_str(), (FGForce*)this, &FGForce::GetLocationY);
86 property_name = base_property_name + "/z-reference-position";
87 PropertyManager->Tie(property_name.c_str(), (FGForce*)this, &FGForce::GetLocationZ);
88 property_name = base_property_name + "/x-position";
89 PropertyManager->Tie(property_name.c_str(), (FGForce*)this, &FGForce::GetActingLocationX, &FGForce::SetActingLocationX);
90 property_name = base_property_name + "/y-position";
91 PropertyManager->Tie(property_name.c_str(), (FGForce*)this, &FGForce::GetActingLocationY, &FGForce::SetActingLocationY);
92 property_name = base_property_name + "/z-position";
93 PropertyManager->Tie(property_name.c_str(), (FGForce*)this, &FGForce::GetActingLocationZ, &FGForce::SetActingLocationZ);
94
95 element = thruster_element->FindElement("pointing");
96 if (element) {
97
98 // This defines a fixed nozzle that has no public interface property to gimbal or reverse it.
99 pointing = element->FindElementTripletConvertTo("RAD"); // The specification of RAD here is superfluous,
100 // and simply precludes a conversion.
101 mT.InitMatrix();
102 mT(1,1) = pointing(1);
103 mT(2,1) = pointing(2);
104 mT(3,1) = pointing(3);
105
106 } else {
107
108 element = thruster_element->FindElement("orient");
109 if (element) orientation = element->FindElementTripletConvertTo("RAD");
110
111 SetAnglesToBody(orientation);
112 property_name = base_property_name + "/pitch-angle-rad";
113 PropertyManager->Tie( property_name.c_str(), (FGForce *)this, &FGForce::GetPitch, &FGForce::SetPitch);
114 property_name = base_property_name + "/yaw-angle-rad";
115 PropertyManager->Tie( property_name.c_str(), (FGForce *)this, &FGForce::GetYaw, &FGForce::SetYaw);
116
117 if (el->GetName() == "direct") // this is a direct thruster. At this time
118 // only a direct thruster can be reversed.
119 {
120 property_name = base_property_name + "/reverser-angle-rad";
121 PropertyManager->Tie( property_name.c_str(), (FGThruster *)this, &FGThruster::GetReverserAngle,
122 &FGThruster::SetReverserAngle);
123 }
124
125 }
126
127 ResetToIC();
128
129 Debug(0);
130}
131
132//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
133
135{
136 Debug(1);
137}
138
139//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
140
141void FGThruster::ResetToIC(void)
142{
143 ReverserAngle = 0.0;
144 Thrust = 0.0;
145 SetActingLocation(vXYZn);
146}
147
148//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
149
150string FGThruster::GetThrusterLabels(int id, const string& delimeter)
151{
152 std::ostringstream buf;
153
154 buf << Name << " Thrust (engine " << id << " in lbs)";
155
156 return buf.str();
157}
158
159//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
160
161string FGThruster::GetThrusterValues(int id, const string& delimeter)
162{
163 std::ostringstream buf;
164
165 buf << Thrust;
166
167 return buf.str();
168}
169
170//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
171// The bitmasked value choices are as follows:
172// unset: In this case (the default) JSBSim would only print
173// out the normally expected messages, essentially echoing
174// the config files as they are read. If the environment
175// variable is not set, debug_lvl is set to 1 internally
176// 0: This requests JSBSim not to output any messages
177// whatsoever.
178// 1: This value explicity requests the normal JSBSim
179// startup messages
180// 2: This value asks for a message to be printed out when
181// a class is instantiated
182// 4: When this value is set, a message is displayed when a
183// FGModel object executes its Run() method
184// 8: When this value is set, various runtime state variables
185// are printed out periodically
186// 16: When set various parameters are sanity checked and
187// a message is printed out when they go out of bounds
188
189void FGThruster::Debug(int from)
190{
191 if (debug_lvl <= 0) return;
192
193 if (debug_lvl & 1) { // Standard console startup message output
194 if (from == 0) { // Constructor
195
196 }
197 }
198 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
199 if (from == 0) cout << "Instantiated: FGThruster" << endl;
200 if (from == 1) cout << "Destroyed: FGThruster" << endl;
201 }
202 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
203 }
204 if (debug_lvl & 8 ) { // Runtime state variables
205 }
206 if (debug_lvl & 16) { // Sanity checking
207 }
208 if (debug_lvl & 64) {
209 if (from == 0) { // Constructor
210 }
211 }
212}
213}
Element * FindElement(const std::string &el="")
Searches for a specified element.
const std::string & GetName(void) const
Retrieves the element name.
FGColumnVector3 FindElementTripletConvertTo(const std::string &target_units)
Composes a 3-element column vector for the supplied location or orientation.
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
Element * GetParent(void)
Returns a pointer to the parent of an element.
This class implements a 3 element column vector.
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
Utility class that aids in the conversion of forces between coordinate systems and calculation of mom...
Definition FGForce.h:222
void SetActingLocation(double x, double y, double z)
Acting point of application.
Definition FGForce.h:256
static char fgred[6]
red text
Definition FGJSBBase.h:166
static char reset[5]
resets text properties
Definition FGJSBBase.h:156
void InitMatrix(void)
Initialize the matrix.
Base class for specific thrusting devices such as propellers, nozzles, etc.
Definition FGThruster.h:77
virtual ~FGThruster()
Destructor.
FGThruster(FGFDMExec *FDMExec, Element *el, int num)
Constructor.