]> git.mxchange.org Git - flightgear.git/blob - src/FDM/YASim/PropEngine.cpp
Fix stall widths for the "auxilliary" (reverse flow) stalls so they
[flightgear.git] / src / FDM / YASim / PropEngine.cpp
1 #include "Math.hpp"
2 #include "Propeller.hpp"
3 #include "Engine.hpp"
4 #include "PropEngine.hpp"
5 namespace yasim {
6
7 PropEngine::PropEngine(Propeller* prop, Engine* eng, float moment)
8 {
9     // Start off at 500rpm, because the start code doesn't exist yet
10     _omega = 52.3f;
11     _dir[0] = 1; _dir[1] = 0; _dir[2] = 0;
12
13     _variable = false;
14     _gearRatio = 1;
15
16     _prop = prop;
17     _eng = eng;
18     _moment = moment;
19     _fuel = true;
20     _contra = false;
21 }
22
23 PropEngine::~PropEngine()
24 {
25     delete _prop;
26     delete _eng;
27 }
28
29 void PropEngine::setMagnetos(int pos)
30 {
31     _magnetos = pos;
32 }
33
34 void PropEngine::setAdvance(float advance)
35 {
36     _advance = Math::clamp(advance, 0, 1);
37 }
38
39 void PropEngine::setPropPitch(float proppitch)
40 {
41     // update Propeller property
42     _prop->setPropPitch(proppitch);
43 }
44
45 void PropEngine::setPropFeather(int state)
46 {
47     // toggle prop feathering on/off
48     _prop->setPropFeather(state);
49 }
50
51 void PropEngine::setVariableProp(float min, float max)
52 {
53     _variable = true;
54     _minOmega = min;
55     _maxOmega = max;
56 }
57
58 bool PropEngine::isRunning()
59 {
60     return _eng->isRunning();
61 }
62
63 bool PropEngine::isCranking()
64 {
65     return _eng->isCranking();
66 }
67
68 float PropEngine::getOmega()
69 {
70     return _omega;
71 }
72
73 void PropEngine::setOmega (float omega)
74 {
75     _omega = omega;
76 }
77
78 void PropEngine::getThrust(float* out)
79 {
80     int i;
81     for(i=0; i<3; i++) out[i] = _thrust[i];    
82 }
83
84 void PropEngine::getTorque(float* out)
85 {
86     int i;
87     for(i=0; i<3; i++) out[i] = _torque[i];
88 }
89
90 void PropEngine::getGyro(float* out)
91 {
92     int i;
93     for(i=0; i<3; i++) out[i] = _gyro[i];
94 }
95
96 float PropEngine::getFuelFlow()
97 {
98     return _fuelFlow;
99 }
100
101 void PropEngine::stabilize()
102 {
103     float speed = -Math::dot3(_wind, _dir);
104     _eng->setThrottle(_throttle);
105     _eng->setMixture(_mixture);
106
107     _eng->setStarter(false);
108     _eng->setMagnetos(3);
109
110     bool running_state = _eng->isRunning();
111     _eng->setRunning(true);
112
113     if(_variable) {
114         _omega = _minOmega + _advance * (_maxOmega - _minOmega);
115         _prop->modPitch(1e6); // Start at maximum pitch and move down
116     } else {
117         _omega = 52;
118     }
119
120     bool goingUp = false;
121     float step = 10;
122     while(true) {
123         float ptau, thrust;
124         _prop->calc(_rho, speed, _omega * _gearRatio, &thrust, &ptau);
125         _eng->calc(_pressure, _temp, _omega);
126         _eng->stabilize();
127
128         // Compute torque as seen by the engine's end of the gearbox.
129         // The propeller will be moving more slowly (for gear ratios
130         // less than one), so it's torque will be higher than the
131         // engine's, so multiply by _gearRatio to get the engine-side
132         // value.
133         ptau *= _gearRatio;
134         float etau = _eng->getTorque();
135         float tdiff = etau - ptau;
136         
137         Math::mul3(thrust, _dir, _thrust);
138
139         if(Math::abs(tdiff/(_moment * _gearRatio)) < 0.1)
140             break;
141
142         if(tdiff > 0) {
143             if(!goingUp) step *= 0.5f;
144             goingUp = true;
145             if(!_variable)  _omega += step;
146             else            _prop->modPitch(1+(step*0.005f));
147         } else {
148             if(goingUp) step *= 0.5f;
149             goingUp = false;
150             if(!_variable)  _omega -= step;
151             else            _prop->modPitch(1-(step*0.005f));
152         }
153     }
154
155     // ...and back off
156     _eng->setRunning(running_state);
157 }
158
159 void PropEngine::init()
160 {
161     _omega = 0.01f;
162     _eng->setStarter(false);
163     _eng->setMagnetos(0);
164 }
165
166 void PropEngine::integrate(float dt)
167 {
168     float speed = -Math::dot3(_wind, _dir);
169
170     float propTorque, engTorque, thrust;
171
172     _eng->setThrottle(_throttle);
173     _eng->setStarter(_starter);
174     _eng->setMagnetos(_magnetos);
175     _eng->setMixture(_mixture);
176     _eng->setFuelState(_fuel);
177     
178     _prop->calc(_rho, speed, _omega * _gearRatio, &thrust, &propTorque);
179     if(_omega == 0.0)
180         _omega = 0.001; // hack to get around reports of NaNs somewhere...
181     propTorque *= _gearRatio;
182     _eng->calc(_pressure, _temp, _omega);
183     _eng->integrate(dt);
184     engTorque = _eng->getTorque();
185     _fuelFlow = _eng->getFuelFlow();
186
187     // Turn the thrust into a vector and save it
188     Math::mul3(thrust, _dir, _thrust);
189
190     // We do our "RPM" computations on the engine's side of the
191     // world, so modify the moment value accordingly.
192     float momt = _moment * _gearRatio;
193
194     // Euler-integrate the RPM.  This doesn't need the full-on
195     // Runge-Kutta stuff.
196     float rotacc = (engTorque-propTorque)/Math::abs(momt);
197     _omega += dt * rotacc;
198     if (_omega < 0)
199         _omega = 0 - _omega;    // don't allow negative RPM
200                                 // FIXME: introduce proper windmilling
201
202     // Store the total angular momentum into _gyro, unless the
203     // propeller is a counter-rotating pair (which has zero net
204     // angular momentum, even though it *does* have an MoI for
205     // acceleration purposes).
206     Math::mul3(_contra ? 0 : _omega*momt, _dir, _gyro);
207
208     // Accumulate the engine torque, it acts on the body as a whole.
209     // (Note: engine torque, not propeller torque.  They can be
210     // different, but the difference goes to accelerating the
211     // rotation.  It is the engine torque that is felt at the shaft
212     // and works on the body.) (Note 2: contra-rotating propellers do
213     // not exert net torque on the aircraft).
214     float tau = _moment < 0 ? engTorque : -engTorque;
215     Math::mul3(_contra ? 0 : tau, _dir, _torque);
216
217     // Iterate the propeller governor, if we have one.  Since engine
218     // torque is basically constant with RPM, we want to make the
219     // propeller torque at the target RPM equal to the engine by
220     // varying the pitch.  Assume the the torque goes as the square of
221     // the RPM (roughly correct) and compute a "target" torque for the
222     // _current_ RPM.  Seek to that.  This is sort of a continuous
223     // Newton-Raphson, basically.
224     if(_variable) {
225         float targetPropSpd = _minOmega + _advance*(_maxOmega-_minOmega);
226         float targetOmega = targetPropSpd / _gearRatio; // -> "engine omega"
227         float ratio2 = (_omega*_omega)/(targetOmega*targetOmega);
228         float targetTorque = engTorque * ratio2;
229
230         float mod = propTorque < targetTorque ? 1.04f : (1.0f/1.04f);
231
232         // Convert to an acceleration here, so that big propellers
233         // don't seek faster than small ones.
234         float diff = Math::abs((propTorque - targetTorque) / momt);
235         if(diff < 10) mod = 1 + (mod-1)*(0.1f*diff);
236
237         _prop->modPitch(mod);
238     }
239 }
240
241 }; // namespace yasim