diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3831/CH16/EX16.6 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3831/CH16/EX16.6')
-rw-r--r-- | 3831/CH16/EX16.6/Ex16_6.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3831/CH16/EX16.6/Ex16_6.sce b/3831/CH16/EX16.6/Ex16_6.sce new file mode 100644 index 000000000..771b7dc2b --- /dev/null +++ b/3831/CH16/EX16.6/Ex16_6.sce @@ -0,0 +1,24 @@ +// Example 16_6
+clc;funcprot(0);
+// Given data
+p_os=1.00;// MPa
+T_os=20.0+273.15;// K
+k=1.40;// The specific heat ratio
+p=0.1013;// MPa
+g_c=1;// The gravitational constant
+R=286;// J/kg.K
+
+// Solution
+// (a)
+p_r=p/p_os;// The pressure ratio
+M=((2/(k-1))*(((p_os/p)^((k-1)/k))-1))^(1/2);// The exit Mach number
+// (b)
+T=(T_os/(1+(((k-1)*M^2)/2)))-273.15;// The exit temperature in °C
+// (c)
+V=M*sqrt(k*g_c*R*(T+273.15));// The exit velocity in m/s
+// (d)
+p_throat=p_os*[2/(k+1)]^(k/(k-1));// The pressure at the throat of the nozzle in MPa
+// (e)
+T_throat=T_os*[2/(k+1)];// The temperature at the throat of the nozzle in K
+T_throat=T_throat-273.15;// The temperature at the throat of the nozzle in °C
+printf("\n(a)The exit Mach number,M=%1.2f \n(b)The exit temperature,T=%3.0f°C \n(c)The exit velocity,V=%3.0f m/s \n(d)The pressure at the throat of the nozzle,p_throat=%0.3f MPa \n(e)The temperature at the throat of the nozzle,T_throat=%2.1f°C",M,T,V,p_throat,T_throat);
|