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 /3685/CH17/EX17.3 | |
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 '3685/CH17/EX17.3')
-rw-r--r-- | 3685/CH17/EX17.3/Ex17_3.sce | 44 | ||||
-rw-r--r-- | 3685/CH17/EX17.3/Ex17_3.txt | 14 |
2 files changed, 58 insertions, 0 deletions
diff --git a/3685/CH17/EX17.3/Ex17_3.sce b/3685/CH17/EX17.3/Ex17_3.sce new file mode 100644 index 000000000..97f9045ab --- /dev/null +++ b/3685/CH17/EX17.3/Ex17_3.sce @@ -0,0 +1,44 @@ +clc
+M2 = 2.197 // Mach number
+P2P0 = 0.0939 // pressure ratio
+T2T0 = 0.5089 // Temperature ratio
+P0 = 1 // Stagnation pressure in MPa
+T0 = 360 // Stagnation temperature in K
+g = 1.4 // Heat capacity ratio
+R = 0.287 // Gas constant
+P2 = P2P0*P0*1e3 // Static Pressure
+T2 = T2T0*T0 // Static temperature
+c2 = sqrt(g*R*T2*1000)
+V2 = c2*M2 //velocity at the exit from the nozzle
+// for air
+P_P0 = 0.528 // pressure ratio
+T_T0 = 0.833 // Temperature ratio
+P_ = P_P0*P0*1e3 // Static Pressure
+T_ = T_T0*T0 //Static temperature
+rho_ = P_/(R*T_) // density
+V_ = sqrt(g*R*T_*1000) // Velocity at the exit from the nozzle
+At = 500e-06 // throat area
+w = At*V_*rho_// Maximum flow rate of air
+
+printf("\n Example 17.3\n")
+printf("\n When divergent section act as a nozzle")
+printf("\n Maximum flow rate of air is %f kg/s",w)
+printf("\n Static temperature is %f K",T2)
+printf("\n Static Pressure is %f kPa",P2)
+printf("\n Velocity at the exit from the nozzle is %f m/s",V2)
+//The answers vary due to round off error
+
+// Part (b)
+Mb = 0.308 // Mach number
+P2P0b = 0.936 // Pressure ratio
+T2T0b = 0.9812 // Temperature ratio
+P2b = P2P0b*P0*1e3//Static Pressure
+T2b = T2T0b*T0 // Static temperature
+c2b = sqrt(g*R*T2b*1000) // Velocity
+V2b = c2b*Mb //Velocity at the exit from the nozzle
+printf("\n\n When divergent section act as a diffuser")
+printf("\n Maximum flow rate of air is %f kg/s",w)
+printf("\n Static temperature is %f K",T2b)
+printf("\n Static Pressure is %d kPa",P2b)
+printf("\n Velocity at the exit from the nozzle is %d m/s",V2b)
+
diff --git a/3685/CH17/EX17.3/Ex17_3.txt b/3685/CH17/EX17.3/Ex17_3.txt new file mode 100644 index 000000000..c06b09a63 --- /dev/null +++ b/3685/CH17/EX17.3/Ex17_3.txt @@ -0,0 +1,14 @@ +
+ Example 17.3
+
+ When divergent section act as a nozzle
+ Maximum flow rate of air is 1.064764 kg/s
+ Static temperature is 183.204000 K
+ Static Pressure is 93.900000 kPa
+ Velocity at the exit from the nozzle is 596.077184 m/s
+
+ When divergent section act as a diffuser
+ Maximum flow rate of air is 1.064764 kg/s
+ Static temperature is 353.232000 K
+ Static Pressure is 936 kPa
+ Velocity at the exit from the nozzle is 116 m/s
\ No newline at end of file |