summaryrefslogtreecommitdiff
path: root/2504/CH11/EX11.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2504/CH11/EX11.3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2504/CH11/EX11.3')
-rwxr-xr-x2504/CH11/EX11.3/11_3.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2504/CH11/EX11.3/11_3.sce b/2504/CH11/EX11.3/11_3.sce
new file mode 100755
index 000000000..55e867aac
--- /dev/null
+++ b/2504/CH11/EX11.3/11_3.sce
@@ -0,0 +1,22 @@
+clc
+//initialisation of variables
+clear
+a= 154 //degrees
+vbm= 38 //ft/sec
+bom= 147 //degrees
+vwm= -7.78 //ft/sec
+w= 62.4 //lbf/ft^3
+g= 32.2 //ft/sec^2
+vb= 38 //ft/sec
+A= 4.18 //ft^2
+e= 0.95
+//CALCULATIONS
+vat= (vwm-vb)*tand(bom)
+Q= vat*A
+a1= acotd(-vbm/vat)
+imt= a1-a
+C= w*Q*vwm*e/g
+//RESULTS
+printf ('Flow rate = %.1f ft^3',Q)
+printf ('\n Incidence angle= %.f degrees',imt)
+printf ('\n Torque= %.f lbf ft',C)