diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1019/CH6/EX6.4/Example_6_4.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1019/CH6/EX6.4/Example_6_4.sce')
-rw-r--r-- | 1019/CH6/EX6.4/Example_6_4.sce | 16 |
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 |