summaryrefslogtreecommitdiff
path: root/821/CH4/EX4.5/4_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '821/CH4/EX4.5/4_5.sce')
-rwxr-xr-x821/CH4/EX4.5/4_5.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/821/CH4/EX4.5/4_5.sce b/821/CH4/EX4.5/4_5.sce
new file mode 100755
index 000000000..224dc4db9
--- /dev/null
+++ b/821/CH4/EX4.5/4_5.sce
@@ -0,0 +1,8 @@
+TP=746;//Total pressure of gas at 298K in mm of Hg//
+PP=24;//Partial pressure of Water vapour at 298K in mm of Hg//
+PPG=TP-PP;//partial pressure of gas at 298K in mm of Hg//
+printf('partial pressure of dry gas at 298k=%fmm of Hg',PPG);
+V=200;//Volume occupied by gas at 298K in millilitres//
+P1=760;
+V1=(PPG*V)/P1;//Volume of dry gas at a pressure of 760mm Hg//
+printf('\nVolume of dry gas at pressure 760mm of Hg=V1=%fml',V1);