blob: 217a7fe5f0d647931bd777785d6cbfef26521dfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 1-Properties of Fluid
// Problem 1.23
//Given Data Set in the Problem(SI Units)
p_i=70
p_f=130
dp=p_f-p_i
dV_V=0.15/100 //Using dV/V=-dP/P
//Calculations
//Using K=dP/(-dV/V)
K=dp/(dV_V)
mprintf("The Bulk modulus of elasticity of the liquid is %f N.cm^2",K);
|