blob: 845984353b7319b8ac4bc5c8f5e81668103ad829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Chapter 13 Thermodynamics Entropy and Free Energy
clc;
clear;
//Initialisation of Variables
F1= 31350 //cal
F2= 26224 //cal
F= 96500 //coloumbs
//CALCULATIONS
F3= -F1+F2
E= F3*4.184/F
//RESULTS
mprintf("Value of E = %.4f cal",E)
|