summaryrefslogtreecommitdiff
path: root/1457/CH12/EX12.3/12_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1457/CH12/EX12.3/12_3.sce')
-rwxr-xr-x1457/CH12/EX12.3/12_3.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1457/CH12/EX12.3/12_3.sce b/1457/CH12/EX12.3/12_3.sce
new file mode 100755
index 000000000..3ab6f5299
--- /dev/null
+++ b/1457/CH12/EX12.3/12_3.sce
@@ -0,0 +1,18 @@
+clc
+//Initialization of variables
+P1=700 //kN/m^2
+P2=400 //kN/m^2
+D2=12.5 //cm
+D1=25 //cm
+C=0.985
+g=9.81
+R=287 //m^2/s^2 K
+T=273+20 //K
+//calculations
+Pr=P2/P1
+Dr=D2/D1
+Y=0.72
+gam1=P1*g/(R*T)
+G=C*Y*%pi/4 *(D2/100)^2 *sqrt(2*g*gam1*(P1-P2)/(1- Dr^4))
+//results
+printf("Weight flow rate = %.4f kN/s",G)