The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 795 - File: showthread.php PHP 7.4.33 (FreeBSD)
File Line Function
/showthread.php 795 errorHandler->error





Post Reply 
Static Air Temperature Calculator
02-24-2022, 03:17 AM
Post: #1
Static Air Temperature Calculator
This program computes the Static Air temperature of the air an aircraft is flying through. The formula:
SAT = TAT / (1+0.202 * R_c * Mach) is used
where SAT and TAT are kelvin
R_c is the probe recovery coefficient ~0.9-1.0 for most modern jets
Mach is the fraction of the local speed of sound.

In the program IAT is used in place of TAT since the recovery coefficient may not be 1 and thus the temperature is indicated not total.

The inputs and outputs for the program are in degrees Celsius.
Code:

LBL "SAT"
"TAT C?"
PROMPT
273.15
+
"MACH?"
PROMPT
X^2
"RECOVERY COEFF?"
PROMPT
*
0.202
*
1
+
/
273.15
-
FIX 1
"SAT: "
ARCL X
>"C"
AVIEW
END


Attached File(s)
.zip  SAT.zip (Size: 229 bytes / Downloads: 3)
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Static Air Temperature Calculator - WrongWay - 02-24-2022 03:17 AM



User(s) browsing this thread: 1 Guest(s)