summaryrefslogtreecommitdiff
path: root/1268/CH2/EX2.4/2_4.sce
blob: 8d47ff5f41b4f04455a3eb58c04f08fd9d527dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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")