1 // inst_vertical_speed_indicator.cxx
2 // -- Instantaneous VSI (emulation calibrated to standard atmosphere).
4 // Started September 2004.
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 #include <simgear/math/interpolater.hxx>
26 #include "inst_vertical_speed_indicator.hxx"
27 #include <Main/fg_props.hxx>
28 #include <Main/util.hxx>
31 // Altitude based on pressure difference from sea level.
33 // See http://www.pdas.com/programs/atmos.f90, the tables match exactly
34 // environment.cxx (Standard 1976).
36 // - at 27900 m the level is 20 km :
37 // geopotential altitude 27.9 x 6369 / ( 27.9 + 6369) = 27.778 km.
38 // - deltah = 27.778 - 20 = 7.778 km and tbase 216.65 degK.
39 // - delta = 5.403295E-2 x exp( -34.163195 x 7.778 / 216.65 ) = 0.016.
40 // - pressure = (1 - delta ) x 29.92 = 29.44 inhg.
41 // - to construct the tables, round delta to 3 digits.
43 // altitude ft, pressure step inHG
44 static double pressure_data[][2] = {
45 { 0.00, 3.33 }, // guess !
83 // pressure difference inHG, altitude ft
84 static double altitude_data[][2] = {
119 { 29.62, 100393.70 },
125 #define SEA_LEVEL_INHG 29.92
127 // A higher number means more responsive.
128 #define RESPONSIVENESS 5.0
130 // External environment
131 #define MAX_INHG_PER_S 0.0002
134 InstVerticalSpeedIndicator::InstVerticalSpeedIndicator ( SGPropertyNode *node ) :
135 _name(node->getStringValue("name", "inst-vertical-speed-indicator")),
136 _num(node->getIntValue("number", 0)),
137 _internal_pressure_inhg( SEA_LEVEL_INHG ),
138 _internal_sea_inhg( SEA_LEVEL_INHG ),
139 _speed_ft_per_s( 0 ),
140 _pressure_table(new SGInterpTable),
141 _altitude_table(new SGInterpTable)
144 for ( i = 0; pressure_data[i][0] != -1; i++)
145 _pressure_table->addEntry( pressure_data[i][0], pressure_data[i][1] );
147 for ( i = 0; altitude_data[i][0] != -1; i++)
148 _altitude_table->addEntry( altitude_data[i][0], altitude_data[i][1] );
152 InstVerticalSpeedIndicator::~InstVerticalSpeedIndicator ()
154 delete _pressure_table;
155 delete _altitude_table;
159 void InstVerticalSpeedIndicator::init ()
161 SGPropertyNode *node = fgGetNode("/instrumentation", true)->getChild(_name, _num, true);
164 node->getNode("serviceable", true);
166 fgGetNode("/sim/freeze/master", true);
168 // A real IVSI is operated by static pressure changes.
169 // It operates like a conventional VSI, except that an internal sensor
170 // detects load factors, to momentarily alters the static pressure
172 // It appears lag free at subsonic speed; at high altitude indication may
173 // be less than 1/3 of actual conditions.
175 fgGetNode("/environment/pressure-inhg", true);
177 fgGetNode("/environment/pressure-sea-level-inhg", true);
179 fgGetNode("/sim/speed-up", true);
181 node->getNode("indicated-speed-fps", true);
183 node->getNode("indicated-speed-fpm", true);
185 // Initialize at ambient pressure
186 _internal_pressure_inhg = _pressure_node->getDoubleValue();
190 void InstVerticalSpeedIndicator::update (double dt)
192 if (_serviceable_node->getBoolValue())
194 // avoids hang, when freeze
195 if( !_freeze_node->getBoolValue() && std::numeric_limits<double>::min() < fabs(dt))
197 double pressure_inhg = _pressure_node->getDoubleValue();
198 double sea_inhg = _sea_node->getDoubleValue();
199 double speed_up = _speed_up_node->getDoubleValue();
201 // must work by speed up
207 // limit effect of external environment
208 double rate_sea_inhg_per_s = ( sea_inhg - _internal_sea_inhg ) / dt;
210 if( rate_sea_inhg_per_s > - MAX_INHG_PER_S && rate_sea_inhg_per_s < MAX_INHG_PER_S )
212 double rate_inhg_per_s = ( pressure_inhg - _internal_pressure_inhg ) / dt;
214 // IVSI determines alone the current altitude, without altimeter setting.
215 // Altimeter setting is 29.92 above 10000 or 18000 ft.
216 // Below this level, the slope is slightly wrong.
217 double altitude_ft = _altitude_table->interpolate( SEA_LEVEL_INHG - pressure_inhg );
218 double slope_inhg = _pressure_table->interpolate( altitude_ft );
221 double last_speed_ft_per_s = _speed_ft_per_s;
224 _speed_ft_per_s = - rate_inhg_per_s * 2952.75591 / slope_inhg;
227 _speed_ft_per_s = fgGetLowPass( last_speed_ft_per_s, _speed_ft_per_s,
228 dt * RESPONSIVENESS );
231 _speed_node->setDoubleValue( _speed_ft_per_s );
232 _speed_min_node->setDoubleValue( _speed_ft_per_s * 60.0 );
235 _internal_pressure_inhg = pressure_inhg;
236 _internal_sea_inhg = sea_inhg;
241 // end of inst_vertical_speed_indicator.cxx