summaryrefslogtreecommitdiff
path: root/3428/CH17/EX10.17.12
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /3428/CH17/EX10.17.12
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '3428/CH17/EX10.17.12')
-rw-r--r--3428/CH17/EX10.17.12/Ex10_17_12.sce2
1 files changed, 1 insertions, 1 deletions
diff --git a/3428/CH17/EX10.17.12/Ex10_17_12.sce b/3428/CH17/EX10.17.12/Ex10_17_12.sce
index e6a70010a..7ac174e46 100644
--- a/3428/CH17/EX10.17.12/Ex10_17_12.sce
+++ b/3428/CH17/EX10.17.12/Ex10_17_12.sce
@@ -1,12 +1,12 @@
//Section-10,Example-2,Page no.-CT.41
//To calculate Entropy change(dl_S).
clc;
+R=8.314
n=10
C_v=(3/2)*R
T_2=323
T_1=298
V_2=2
V_1=1
-R=8.314
dl_S=n*((C_v*log(T_2/T_1))+(R*log(V_2/V_1)))
disp(dl_S,'Entropy change(JK^-1)')