]> git.mxchange.org Git - flightgear.git/blob - src/FDM/YASim/PropEngine.cpp
Constant-speed props were seeking to engine speed, not prop speed.
[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
129         // gearbox.
130         ptau *= _gearRatio;
131         float etau = _eng->getTorque();
132         float tdiff = etau - ptau;
133         
134         Math::mul3(thrust, _dir, _thrust);
135
136         if(Math::abs(tdiff/(_moment * _gearRatio)) < 0.1)
137             break;
138
139         if(tdiff > 0) {
140             if(!goingUp) step *= 0.5f;
141             goingUp = true;
142             if(!_variable)  _omega += step;
143             else            _prop->modPitch(1+(step*0.005f));
144         } else {
145             if(goingUp) step *= 0.5f;
146             goingUp = false;
147             if(!_variable)  _omega -= step;
148             else            _prop->modPitch(1-(step*0.005f));
149         }
150     }
151
152     // ...and back off
153     _eng->setRunning(running_state);
154 }
155
156 void PropEngine::init()
157 {
158     _omega = 0.01f;
159     _eng->setStarter(false);
160     _eng->setMagnetos(0);
161 }
162
163 void PropEngine::integrate(float dt)
164 {
165     float speed = -Math::dot3(_wind, _dir);
166
167     float propTorque, engTorque, thrust;
168
169     _eng->setThrottle(_throttle);
170     _eng->setStarter(_starter);
171     _eng->setMagnetos(_magnetos);
172     _eng->setMixture(_mixture);
173     _eng->setFuelState(_fuel);
174     
175     _prop->calc(_rho, speed, _omega * _gearRatio, &thrust, &propTorque);
176     _eng->calc(_pressure, _temp, _omega);
177     _eng->integrate(dt);
178     engTorque = _eng->getTorque();
179     _fuelFlow = _eng->getFuelFlow();
180
181     // Turn the thrust into a vector and save it
182     Math::mul3(thrust, _dir, _thrust);
183
184     // We do our "RPM" computations on the engine's side of the
185     // world, so modify the moment value accordingly.
186     float momt = _moment * _gearRatio;
187
188     // Euler-integrate the RPM.  This doesn't need the full-on
189     // Runge-Kutta stuff.
190     float rotacc = (engTorque-propTorque)/Math::abs(momt);
191     _omega += dt * rotacc;
192     if (_omega < 0)
193         _omega = 0 - _omega;    // don't allow negative RPM
194                                 // FIXME: introduce proper windmilling
195
196     // Store the total angular momentum into _gyro, unless the
197     // propeller is a counter-rotating pair (which has zero net
198     // angular momentum, even though it *does* have an MoI for
199     // acceleration purposes).
200     Math::mul3(_contra ? 0 : _omega*momt, _dir, _gyro);
201
202     // Accumulate the engine torque, it acts on the body as a whole.
203     // (Note: engine torque, not propeller torque.  They can be
204     // different, but the difference goes to accelerating the
205     // rotation.  It is the engine torque that is felt at the shaft
206     // and works on the body.) (Note 2: contra-rotating propellers do
207     // not exert net torque on the aircraft).
208     float tau = _moment < 0 ? engTorque : -engTorque;
209     Math::mul3(_contra ? 0 : tau, _dir, _torque);
210
211     // Iterate the propeller governor, if we have one.  Since engine
212     // torque is basically constant with RPM, we want to make the
213     // propeller torque at the target RPM equal to the engine by
214     // varying the pitch.  Assume the the torque goes as the square of
215     // the RPM (roughly correct) and compute a "target" torque for the
216     // _current_ RPM.  Seek to that.  This is sort of a continuous
217     // Newton-Raphson, basically.
218     if(_variable) {
219         float targetPropSpd = _minOmega + _advance*(_maxOmega-_minOmega);
220         float targetOmega = targetPropSpd / _gearRatio; // -> "engine omega"
221         float ratio2 = (_omega*_omega)/(targetOmega*targetOmega);
222         float targetTorque = engTorque * ratio2;
223
224         float mod = propTorque < targetTorque ? 1.04f : (1.0f/1.04f);
225
226         // Convert to an acceleration here, so that big propellers
227         // don't seek faster than small ones.
228         float diff = Math::abs((propTorque - targetTorque) / momt);
229         if(diff < 10) mod = 1 + (mod-1)*(0.1f*diff);
230
231         _prop->modPitch(mod);
232     }
233 }
234
235 }; // namespace yasim