Convert from one of other two airspeeds to equivalent airspeed (EAS), calibrated airspeed (CAS), or true airspeed (TAS)
outputAirpseed
=
correctairspeed(inputAirspeed
, speedOfSound
, pressure0
, inputAirspeedType
, outputAirspeedType
)
outputAirpseed
=
correctairspeed(inputAirspeed
, speedOfSound
, pressure0
, inputAirspeedType
, outputAirspeedType
, method
)
computes
the conversion factor from specified input airspeed to specified output
airspeed using speed of sound and static pressure. The function applies
the conversion factor to the input airspeed to produce the output
in the desired airspeed.outputAirpseed
=
correctairspeed(inputAirspeed
, speedOfSound
, pressure0
, inputAirspeedType
, outputAirspeedType
)
uses
the specified method to compute the conversion factor.outputAirpseed
=
correctairspeed(inputAirspeed
, speedOfSound
, pressure0
, inputAirspeedType
, outputAirspeedType
, method
)
|
Floating-point array of size | ||||||
|
Floating-point array of size | ||||||
|
Floating-point array of size | ||||||
|
Input airspeed, specified as a string. Supported airspeeds are:
| ||||||
|
Output airspeed, specified as a string. Supported airspeeds are:
| ||||||
|
Specify a method, as a string, for computing the conversion factor.
The
|
|
Floating-point array of size |
Convert three airspeeds from true airspeed ('TAS'
) to equivalent airspeed
('EAS'
) at 1,000 ms using the
'TableLookup'
method:
ain = [25.7222; 10.2889; 3.0867]; as = correctairspeed(ain,336.4,89874.6,'TAS','CAS','TableLookup') as = 24.5077 9.8024 2.9407
Convert airspeeds from calibrated airspeed ('CAS'
) to equivalent airspeed
('EAS'
) at 1,000 m and 0 m using the
'Equation'
method:
ain = [25.7222; 10.2889; 3.0867]; sos = [336.4; 340.3; 340.3]; P0 = [ 89874.6; 101325; 101325]; as = correctairspeed(ain,sos,P0,'CAS','EAS','Equation') as = 25.7199 10.2889 3.0867
Convert airspeed from true airspeed ('TAS'
) to equivalent
airspeed ('EAS'
) at 15,000 meters. Use the
atmoscoesa
function to first calculate the speed of sound
(sos
) and static air pressure
(P0
):
ain = 376.25; [~, sos, P0, ~] = atmoscoesa(15000); as = correctairspeed( ain, sos, P0, 'EAS', 'TAS') as = 149.6042
This function assumes that air flow is compressible dry air with constant specific heat ratio (gamma).
Lowry, J.T., Performance of Light Aircraft, AIAA Education Series, Washington, D.C., 1999
Aeronautical Vestpocket Handbook, United Technologies Pratt & Whitney, August1986
Gracey, William, Measurement of Aircraft Speed and Altitude, NASA Reference Publication 1046, 1980.
airspeed
| atmoscoesa
| atmosisa
| atmoslapse
| atmosnonstd