blob: 3db800b4dde4b91e791a75f9b9db97984a17e85a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//Chapter 4 Solutions Nonelectrolytes
clc;
clear;
//Initialisation of Variables
m= 0.0346 //gms
V= 800 //ml
P= 742 //mm
M= 32 //gms
p= 400 //mm
//CALCULATIONS
c= m*1000/V
g= c*760/(P*M)
K= g*22.4
k= c/P
c1= k*p
//RESULTS
mprintf("Concentration of oxygen= %.4f gram per litre",c)
mprintf("\nMoles dissolved = %.4f moles",g)
mprintf("\nBunsen absorption = %.4f litre",K)
mprintf("\nGrams of oxygen dissolved = %.4f gram per litre",c1)
|