diff options
Diffstat (limited to '629/CH12/EX12.3/example12_3.sce')
-rw-r--r-- | 629/CH12/EX12.3/example12_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/629/CH12/EX12.3/example12_3.sce b/629/CH12/EX12.3/example12_3.sce new file mode 100644 index 000000000..d9e9cb90b --- /dev/null +++ b/629/CH12/EX12.3/example12_3.sce @@ -0,0 +1,9 @@ +clear
+clc
+//Example 12.3 TOTAL TEMPERATURE CALCULATION
+T=273+(-50) //static temperature [K]
+k=1.4;
+M=1.6; //Mach number
+//Total temperature
+Tt=T*(1+(k-1)*M^2/2) //[K]
+printf("\n The surface temperature of the aircraft = %.f K.\n",Tt)
\ No newline at end of file |