blob: 5b79aff98a3a2a74b01457c944bc3876255c921c (
plain)
1
2
3
4
5
6
7
8
9
|
//clc()
Na = 23;//gm/mol
MNa = 100;//kg
N = MNa * 1000 / Na ;//g-atoms
NNa2SO4 = N / 2;
disp("kmol",NNa2SO4,"(a) moles of sodium sulphate = ")
MNa2SO4 = 142.06;
m = NNa2SO4 * MNa2SO4/1000;
disp("kg",m,"(b)kilograms of sodium sulphate = ")
|