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 /3856/CH5/EX5.5 | |
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 '3856/CH5/EX5.5')
-rw-r--r-- | 3856/CH5/EX5.5/Ex5_5.sce | 23 | ||||
-rw-r--r-- | 3856/CH5/EX5.5/Ex5_5.txt | 1 |
2 files changed, 24 insertions, 0 deletions
diff --git a/3856/CH5/EX5.5/Ex5_5.sce b/3856/CH5/EX5.5/Ex5_5.sce new file mode 100644 index 000000000..8c1ea4536 --- /dev/null +++ b/3856/CH5/EX5.5/Ex5_5.sce @@ -0,0 +1,23 @@ +//Calucate the Entopy change for Fusion and Vaporization
+
+//Example 5.5
+
+clc;
+
+clear;
+
+delfusH=6.01; //Molar Enthalpy of fusion in kJ mol^-1
+
+Tf=273; //Melting point of ice in K
+
+delfusS=(delfusH*1000)/Tf; //Entropy change for fusion in J K^-1 mol^-1
+
+printf("Entropy change for Fusion = %.1f J K^-1 mol^-1",delfusS);
+
+delvapH=40.79; //Molar enthalpy of vaporization in kJ mol^-1
+
+Tb=373; //Boiling point of water in K
+
+delvapS=(delvapH*1000)/Tb; //Entropy change for vaporization in J K^-1 mol^-1
+
+printf("\Enentropy change for Vaporization = %.1f J K^-1 mol^-1",delvapS);
diff --git a/3856/CH5/EX5.5/Ex5_5.txt b/3856/CH5/EX5.5/Ex5_5.txt new file mode 100644 index 000000000..4b982acd5 --- /dev/null +++ b/3856/CH5/EX5.5/Ex5_5.txt @@ -0,0 +1 @@ + Entropy change for Fusion = 22.0 J K^-1 mol^-1Enentropy change for Vaporization = 109.4 J K^-1 mol^-1
\ No newline at end of file |