blob: 56fe204c482098a940f84314653e5f1e1198e92a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
clear;
clc;
// Stoichiometry
// Chapter 2
// Basic Chemical Calculations
// Example 2.6
// Page 19
printf("Example 2.6, Page 19 \n \n");
// solution
// AlCl3
v = 3 // valency of Al ion
eq = 3*3 // [mol]
printf("no. of equivalents in 3 kmol of AlCl3 is "+string(eq)+" keq.")
|