diff options
Diffstat (limited to '1019/CH8/EX8.4/Example_8_4.sce')
-rw-r--r-- | 1019/CH8/EX8.4/Example_8_4.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1019/CH8/EX8.4/Example_8_4.sce b/1019/CH8/EX8.4/Example_8_4.sce new file mode 100644 index 000000000..59a7c2273 --- /dev/null +++ b/1019/CH8/EX8.4/Example_8_4.sce @@ -0,0 +1,18 @@ +//Example 8.4
+clear;
+clc;
+
+//Given
+v=2;
+p=1;//pressure in atm
+V=1;//volume in L
+R=0.082;// gas constant in L atm K^-1 mol^-1
+T=298.15;// temperature in K
+w=3.176;// weight of N2O4 taken in g
+
+// To determine degree of dissociation a
+m1=(2*14)+(4*16);//molecular mass of N2O4 in g mol^-1
+m2=(w*R*T)/(p*V);//in g mol^-1
+a=(m1-m2)/m2((v-1));//degree of dissociation
+mprintf('Degree of dissociation = %f ',a);
+//end
\ No newline at end of file |