blob: 825f021aafdab9a9422f527d7987746f3a95d802 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Variable declaration:
X = 7.0 //Coordinate X of H2SO4
Y = 24.8 //Coordinate Y of H2SO4
S = 45 //Slope
//Calculations:
//From the figure C.1 we found the intersection of curves mu = 12cP
mu = 12
//Results:
disp("Absolute viscosity of a 98% sulfuric acid solution at 45° C is :")
disp(mu*10**-2)
disp(" g/cm.s")
|