diff options
Diffstat (limited to '1427/CH18/EX18.38')
-rw-r--r-- | 1427/CH18/EX18.38/18_38.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1427/CH18/EX18.38/18_38.sce b/1427/CH18/EX18.38/18_38.sce new file mode 100644 index 000000000..ffc0dc063 --- /dev/null +++ b/1427/CH18/EX18.38/18_38.sce @@ -0,0 +1,14 @@ +//ques-18.38
+//Calculating S and A and G for vaporization of benzene
+clc
+n=2;//moles of benzene
+T=273+80.2;//boiling point (in K)
+g=78;//molar weight of benzene (in g)
+Lv=101;//latent heat of vaporization (in cal/g)
+U=n*g*Lv;
+H=U;
+S=H/T;
+G=H-T*S;
+A=G;
+printf("The entropy change is %.1f cal/K and A=G=%d.",S,A);
+
|