summaryrefslogtreecommitdiff
path: root/3685/CH7/EX7.3/Ex7_3.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3685/CH7/EX7.3/Ex7_3.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3685/CH7/EX7.3/Ex7_3.sce')
-rw-r--r--3685/CH7/EX7.3/Ex7_3.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3685/CH7/EX7.3/Ex7_3.sce b/3685/CH7/EX7.3/Ex7_3.sce
new file mode 100644
index 000000000..c61883f58
--- /dev/null
+++ b/3685/CH7/EX7.3/Ex7_3.sce
@@ -0,0 +1,27 @@
+clc
+// Part (a)
+m = 1 // Mass of ice in kg
+T1 = -5 // Initial temperature of ice in degree Celsius
+T2 = 20// Atmospheric temperature in degree Celsius
+T0 = 0// Phase change temperature of ice in degree Celsius
+cp = 2.093 // Specific heat capacity of ice in kJ/kgK
+cv = 4.187 // Specific heat capacity of water in kJ/kgK
+lf = 333.3 // Latent heat of fusion in kJ/kgK
+
+printf("\n Example 7.3")
+Q = m*cp*(T0-T1)+1*333.3+m*cv*(T2-T0) // Net heat transfer
+Sa = -Q/(T2+273) // Entropy change of surrounding
+Ss1 = m*cp*log((T0+273)/(T1+273)) // entropy change during
+Ss2 = lf/(T0+273) // Entropy change during phase change
+Ss3 = m*cv*log((T2+273)/(T0+273)) // entropy change of water
+St = Ss1+Ss2+Ss3 // total entropy change of ice to convert into water at atmospheric temperature
+Su = St+Sa // Net entropy change of universe
+printf("\n The entropy change of the universe is %f kJ/K",Su)
+
+//The answer provided in the textbook is wrong
+// Part (b)
+S = St // Entropy change of system
+Wmin = (T2+273)*(S)-Q // minimum work required
+printf("\n The minimum work required is %f kJ",Wmin)
+//The answers vary due to round off error
+