blob: 5e1bc8a3e60091024d77a4a6bb0d350d0075febe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-1,Example 2,Page 7
//Title:Force due to atmospheric air
//================================================================================================================
clear
clc
//INPUT
l=15;//length of the child's head in cm
b=12;//breadth of the child's head in cm
p=101325;//atmospheric pressure in Pa
//CALCULATION
area=(l*b)/(10^4);//calculation of area of the child's head in m^2
force=p*area;//calculation of force exerted on the child's head due to atmospheric air in N
//OUTPUT
mprintf('\n The force exerted on the childs head due to atmospheric air= %f N',force);
//===============================================END OF PROGRAM===================================================
|