summaryrefslogtreecommitdiff
path: root/1484/CH6/EX6.27
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1484/CH6/EX6.27
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 '1484/CH6/EX6.27')
-rwxr-xr-x1484/CH6/EX6.27/6_27.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/1484/CH6/EX6.27/6_27.sce b/1484/CH6/EX6.27/6_27.sce
new file mode 100755
index 000000000..e3e73b32a
--- /dev/null
+++ b/1484/CH6/EX6.27/6_27.sce
@@ -0,0 +1,19 @@
+
+clc
+//initialisation of variables
+d= 6 //in
+W= 1100 //lbs/in^2
+w= 62.4 //lbs/ft^3
+f= 0.01
+v= 3 //ft/sec
+W2= 1000 //lbs/in^2
+g=32.2
+//CALCULATIONS
+W1= w*%pi*(d/12)^2*v/4
+ph= W2*144/w
+HP= W1*ph/550
+e= W2/W
+hf= W2*144/(w*10)
+l= hf*(d/12)*2*g/(4*f*v^2)
+//RESULTS
+printf ('l= %.f ft',l)