blob: 10b2d2fff15a3b5091bb5e61d35e7c8da4a47dab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Chapter 3: Thermodynamic and Chemical Equilibrium
//Problem: 9
clc;
//Declaration of Variables
wt = 10 //in g
heat_a = 4.5 //in K
// Solution
m = 10 / 100.0 // mol
d_h = heat_a / m
mprintf("The heat of the reaction is:%d K cal / mol", d_h)
|