summaryrefslogtreecommitdiff
path: root/1280/CH8/EX8.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1280/CH8/EX8.2
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 '1280/CH8/EX8.2')
-rwxr-xr-x1280/CH8/EX8.2/8_2.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1280/CH8/EX8.2/8_2.sce b/1280/CH8/EX8.2/8_2.sce
new file mode 100755
index 000000000..3b52dd062
--- /dev/null
+++ b/1280/CH8/EX8.2/8_2.sce
@@ -0,0 +1,10 @@
+clc
+//Initialization ogf variables
+Q=25 //gpm
+A=.533 //in^2
+//Calculations
+nu=Q*19.25/(A*60) //Fluid velocity
+nucylinder=Q*19.25/12.56 //Cylinder velocity
+//Results
+printf ('Fluid velocity = %.2f',nu)
+printf ('\n Cylinder velocity = %.2f',nucylinder)