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 /2165/CH6/EX6.5/6_5.sce | |
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 '2165/CH6/EX6.5/6_5.sce')
-rwxr-xr-x | 2165/CH6/EX6.5/6_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2165/CH6/EX6.5/6_5.sce b/2165/CH6/EX6.5/6_5.sce new file mode 100755 index 000000000..923614b66 --- /dev/null +++ b/2165/CH6/EX6.5/6_5.sce @@ -0,0 +1,18 @@ +clc
+//initialisation of variables
+d=2.15//in^2
+a=0.98//dry
+p=100//lb/in^2
+p1=11000//lb
+P=0.58*p//lb/in^2
+H=24//C.H.U/lb
+D=0.947//lb
+s=7.407//ft^3
+//CALCULATION
+V=sqrt(2*32.2*1400*H)//ft/sec
+V1=V*(d/144)//ft^3
+T=V1/(s*D)//lb
+A=(p1/3600)//lb
+C=A/T//lb
+//RESULTS
+printf('the coefficient of discharge for the nozzles=% f lb',C)
|