summaryrefslogtreecommitdiff
path: root/3876/CH13/EX13.3/Ex13_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH13/EX13.3/Ex13_3.sce')
-rw-r--r--3876/CH13/EX13.3/Ex13_3.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3876/CH13/EX13.3/Ex13_3.sce b/3876/CH13/EX13.3/Ex13_3.sce
new file mode 100644
index 000000000..1e0354360
--- /dev/null
+++ b/3876/CH13/EX13.3/Ex13_3.sce
@@ -0,0 +1,17 @@
+//Chapter 13 Thermodynamics Entropy and Free Energy
+
+clc;
+clear;
+
+//Initialisation of Variables
+m= 14 //gms
+M= 28 //gms
+R= 1.99 // cal per mole per degree
+V= 30 //lit
+v1= 10 //lit
+
+//CALCULATIONS
+S1= (m/M)*R*2.303*log10(V/v1)
+
+//RESULTS
+mprintf("Entropy change = %.2f E.U",S1)