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 /2789/CH11/EX11.4 | |
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 '2789/CH11/EX11.4')
-rwxr-xr-x | 2789/CH11/EX11.4/Ex11_4.sce | 22 |
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);
|