blob: 71cd1301870b69df288dc46636aa15cc87db820f (
plain)
1
2
3
4
5
6
7
8
|
//Example 2-1 Density, Specific Gravity and Mass of Air in a Room
l = 4 //length [m]
b = 5 //breadth [m]
w = 6 //width [m]
P = 100 //Pressure [kPa]
T = 25 //Temperature [degree celcius]
R = 0.287 //Ideal gas(here air) constant [kJ/kg.K]
rho_water = 1000 //Density of water [kg/m^3]
|