summaryrefslogtreecommitdiff
path: root/629/CH12/EX12.3
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /629/CH12/EX12.3
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '629/CH12/EX12.3')
-rw-r--r--629/CH12/EX12.3/ex12_3.txt2
-rw-r--r--629/CH12/EX12.3/example12_3.sce9
2 files changed, 11 insertions, 0 deletions
diff --git a/629/CH12/EX12.3/ex12_3.txt b/629/CH12/EX12.3/ex12_3.txt
new file mode 100644
index 000000000..b9f026826
--- /dev/null
+++ b/629/CH12/EX12.3/ex12_3.txt
@@ -0,0 +1,2 @@
+
+ The surface temperature of the aircraft = 337 K. \ No newline at end of file
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