summaryrefslogtreecommitdiff
path: root/3720/CH1/EX1.6
diff options
context:
space:
mode:
Diffstat (limited to '3720/CH1/EX1.6')
-rw-r--r--3720/CH1/EX1.6/Ex1_6.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3720/CH1/EX1.6/Ex1_6.sce b/3720/CH1/EX1.6/Ex1_6.sce
new file mode 100644
index 000000000..ef80cc149
--- /dev/null
+++ b/3720/CH1/EX1.6/Ex1_6.sce
@@ -0,0 +1,10 @@
+// Example 1_6
+clc;clear;funcprot(0);
+//Given values
+dv=1.1//The volume of water collected in gal
+dt=45.62;// Time period in s
+
+//Calculation
+V=dv/dt;// gal/s
+V=V*(3.785*10^-3*60);// m^3/min
+printf('The volume flow rate of water through the hose,V=%0.1e m^3/min\n',V);