summaryrefslogtreecommitdiff
path: root/1427/CH18/EX18.14/18_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH18/EX18.14/18_14.sce')
-rw-r--r--1427/CH18/EX18.14/18_14.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH18/EX18.14/18_14.sce b/1427/CH18/EX18.14/18_14.sce
new file mode 100644
index 000000000..6e84aabb3
--- /dev/null
+++ b/1427/CH18/EX18.14/18_14.sce
@@ -0,0 +1,9 @@
+//ques-18.14
+//Calculating increase in entropy in evaporation of water
+clc
+n=1;//moles of water
+L=540;//latent heat of vapourosation (in cal/g)
+T=100;//temperature (in degree celsius)
+q=L*n*18;//heat (reversible)
+S=q/(T+273);//increase in entropy
+printf("The increase in entropy is %.3f cal/mol/K.",S);