summaryrefslogtreecommitdiff
path: root/1019/CH6/EX6.4/Example_6_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1019/CH6/EX6.4/Example_6_4.sce')
-rw-r--r--1019/CH6/EX6.4/Example_6_4.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1019/CH6/EX6.4/Example_6_4.sce b/1019/CH6/EX6.4/Example_6_4.sce
new file mode 100644
index 000000000..cfbb530b4
--- /dev/null
+++ b/1019/CH6/EX6.4/Example_6_4.sce
@@ -0,0 +1,16 @@
+//Example 6.4
+clear;
+clc;
+
+//Given
+delHfus=6.0;//heatoffusion of water in kJ mol^-1
+T=273;//temperature in K
+k=1.38*(10^(-23));//in J K^-1
+NA=6.023*(10^23);//avogadros number
+
+//To calculate the number of distinguishable states of water at 273 K
+delS=(1000*delHfus)/(NA*T);//entropy change in J mol^-1 K^-1
+w=delS/(2.303*k);//w=log10(W)
+W=10^(w);//number of distinguishable states
+mprintf('number of distinguishable states = %i',W);
+//end \ No newline at end of file