summaryrefslogtreecommitdiff
path: root/2789/CH11/EX11.4/Ex11_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '2789/CH11/EX11.4/Ex11_4.sce')
-rwxr-xr-x2789/CH11/EX11.4/Ex11_4.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2789/CH11/EX11.4/Ex11_4.sce b/2789/CH11/EX11.4/Ex11_4.sce
new file mode 100755
index 000000000..eaaea04b9
--- /dev/null
+++ b/2789/CH11/EX11.4/Ex11_4.sce
@@ -0,0 +1,22 @@
+clear;
+clc;
+
+//page no. 420
+
+b = 6;//in
+d = 3;//in
+p = 20;//psi
+del_p = 6;//in. of mercury
+p_bar = 14.70;//psia
+T = 60;//degreeF
+
+k = (p + p_bar - b*(p_bar/29.92))/(p+p_bar);
+gam1 = (p+p_bar)*144/53.3 /(T+460);
+A2 = 0.0491;//sqft
+Y = 0.949;
+Cv = 0.98;
+G = Y*Cv*A2*gam1*sqrt(2*32.2*b*10*A2*144/gam1) /(sqrt(1-0.25^2));
+Cv_true = 0.981;
+G_true = G*Cv_true/Cv;
+
+printf('G = %.2f lb/sec',G);