true_airspeed_converter
Convert airspeeds: IAS, CAS, EAS, TAS, and Mach. Input speed, altitude, temperature, and position error to compute all equivalent values.
Instructions
Convert between IAS, CAS, EAS, TAS, and Mach number.
Args: speed_value: Input speed value (knots for airspeeds, dimensionless for Mach) speed_type: Input type - "IAS", "CAS", "EAS", "TAS", or "MACH" altitude_ft: Pressure altitude in feet temperature_c: Outside air temperature in Celsius (uses ISA if not provided) position_error_kts: Position error correction in knots (IAS to CAS)
Returns: Formatted string with all equivalent airspeeds (IAS, CAS, EAS, TAS, Mach), dynamic pressure, and atmospheric conditions.
Raises: No exceptions are raised directly; errors are returned as formatted strings.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| speed_value | Yes | ||
| speed_type | Yes | ||
| altitude_ft | Yes | ||
| temperature_c | No | ||
| position_error_kts | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |