summaryrefslogtreecommitdiff
path: root/1019/CH7/EX7.19/Example_7_19.sce
diff options
context:
space:
mode:
Diffstat (limited to '1019/CH7/EX7.19/Example_7_19.sce')
-rw-r--r--1019/CH7/EX7.19/Example_7_19.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1019/CH7/EX7.19/Example_7_19.sce b/1019/CH7/EX7.19/Example_7_19.sce
new file mode 100644
index 000000000..e9610fc02
--- /dev/null
+++ b/1019/CH7/EX7.19/Example_7_19.sce
@@ -0,0 +1,18 @@
+//Example 7.19
+clear;
+clc;
+
+//Given
+R=82;//gas constant in atm ml K^-1 mol^-1
+w2=2;//mass of solute in g
+M2=69000;//molecular mass of solvent in g mol^-1
+T=300.15;//temperature in K
+V=100;//volume of solution in ml
+
+//To determine the osmotic pressure in cms of (i)water (ii)mercury
+pi=(T*R*w2)/(M2*V);//the osmotic pressure in atm
+h1=(pi*1013250)/(980.67);//the osmotic pressure in cms of (i)water
+h2=pi*76;//the osmotic pressure in cms of (ii)mercury
+mprintf('the osmotic pressure in cms of (i)water = %f cm',h1);
+mprintf('\n the osmotic pressure in cms of (ii)mercury = %f cm',h2);
+//end \ No newline at end of file