blob: f4d652dba082df02d99273a81165b26973e504dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 1-Properties of Fluid
// Problem 1.11
//Given Data Set in the Problem
visc=0.05/10
kin_visc=0.035/(10^4)
dens_water=1000
//Calculations
dens_oil=visc/kin_visc
SG=dens_oil/dens_water
mprintf("The Specifc Gravity of Oil is %f \n",SG)
|