summaryrefslogtreecommitdiff
path: root/3648/CH10/EX10.1/Ex10_1.sce
blob: 81086d522ad67cdf4d1aa7ca2705712890de91f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
 //Example 10_1
clc();
clear;
//To find out the pressure in Lungs
h=6   //units in cm Hg
Pa=76    //Units in cm Hg
Pl=(h+Pa)      //units in cm Hg

Pl=Pl*10^-2   //units in Meters Hg
g=9.8    //Units in Meters/cm^2
H=13600   //Constant   
Pl=Pl*H*g   //Units in Pa
printf("The pressure in the lungs is Pl=%.1f Pa",Pl)