blob: 52a9f9b3bb3d7aa9f58fb3d0eabe0effd46e1424 (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
disp("Example 3.7")
pgrad= 12500; // pressure gardient in dynes/cm^3
d=0.445; // diameter in metres
mew=0.8; // viscosity in poise
Q= %pi*pgrad*d*d*d*d/(128*mew);
disp(" Volumetric flow rate is ");
disp(Q);
disp(" cc/s and it is ten times the value of the previous question");
|