summaryrefslogtreecommitdiff
path: root/3821/CH7/EX7.5/Example7_5.sce
blob: 3e24903b72d6438ebf4c004fdd36c6c5184fbfd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
///Chapter No 7 Fluid Mechanics
///Find viscosity of the liquid 
///Example 7.5 Page No:116
//Input data
clc;
clear;
v=4*10^-4;    ///kinematic viscosity is 4 stoke inm**2/s
S=1.2;         //specific gravity
dow=1000;      ///density of water Kg/m**3


///Calculation
rho=S*dow;     
vol=rho*v;     //viscosity of the liquid in Ns/m**2 or poise

///Output
printf('viscosity of the liquid= %f Ns/m^2 \n',vol);