diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /896/CH8/EX8.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '896/CH8/EX8.3')
-rwxr-xr-x | 896/CH8/EX8.3/3.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/896/CH8/EX8.3/3.sce b/896/CH8/EX8.3/3.sce new file mode 100755 index 000000000..886353065 --- /dev/null +++ b/896/CH8/EX8.3/3.sce @@ -0,0 +1,8 @@ +clc
+//Example 8.3
+//Calculate the temperature of the gas where is mach number is 2
+Ma=2//dimentionless (Mach number)
+k=1.4//dimentionless
+T1=528//R (Rankine temperature scale)
+T2=T1/((Ma^2*(k-1)/2)+1)//R (Rankine temperature scale)
+printf("The temperature of the gas when mach number is 2 is %f R",T2);
\ No newline at end of file |