blob: a59b66cd59000aa8387753c96a9f0d5c023fa337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Chapter 13 Thermodynamics Entropy and Free Energy
clc;
clear;
//Initialisation of Variables
H= 540 //cal per gram
m= 9 //gms
T= 100 //C
//CALCULATIONS
S= H*m/(273+T)
//RESULTS
mprintf("Entropy change = %.2f E.U",S)
|