blob: 5f69f90bb08c2898430acaac82b908f4b65c339f (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
clear all
tw = 6; // Time taken by water in seconds
ta = 3.6; // Time taken by alcohol in seconds
rhow= 1e3; // Density of water in Kg per meter cube
rhoa = 800; // Density of alcohol in Kg per cubic meter
n1 = 8.9e-4; // Viscosity of water in Newton second per meter square
n2 = (ta/tw)*(rhoa/rhow)*n1;//The viscosity of alcohol
disp('N.s/m^2',n2,'The viscosity of alcohol is')
|