summaryrefslogtreecommitdiff
path: root/1268/CH2/EX2.4/2_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1268/CH2/EX2.4/2_4.sce')
-rw-r--r--1268/CH2/EX2.4/2_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1268/CH2/EX2.4/2_4.sce b/1268/CH2/EX2.4/2_4.sce
new file mode 100644
index 000000000..8d47ff5f4
--- /dev/null
+++ b/1268/CH2/EX2.4/2_4.sce
@@ -0,0 +1,14 @@
+clc;
+disp("Example 2.4")
+m=0.2
+// thickness in cm
+mew=1 // viscosity in poise
+w= 10
+// width of the plate in cm
+density=1 // density in gm/cc
+g=981 // acceleration due to gravity in cm/s^2
+//Q is the liquid flow rate
+Q=(density*g*m*m*m*w)/(3*mew)
+disp(" The flow rate is ")
+disp(Q)
+disp(" gm/cc")