blob: 4d95d2f3336e421bc7d3c6f02bc6148214df8b41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Chapter 6 Solutions of Electrolytes
clc;
clear;
//Initialisation of Variables
T= 25 //C
R= 0.0821 //li-atm per mole per degree
M= 0.5 //m
n= 2
m= 0.680
V= 1 //lit
//CALCULATIONS
P= R*(273+T)*M*n*m/V
//RESULTS
mprintf("Osmotic pressure= %.2f atm",P)
|