diff options
Diffstat (limited to '3648/CH10/EX10.1/Ex10_1.sce')
-rw-r--r-- | 3648/CH10/EX10.1/Ex10_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3648/CH10/EX10.1/Ex10_1.sce b/3648/CH10/EX10.1/Ex10_1.sce new file mode 100644 index 000000000..81086d522 --- /dev/null +++ b/3648/CH10/EX10.1/Ex10_1.sce @@ -0,0 +1,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)
|