blob: 09a7e0cc4d66a8da8a2be30a5c9bec9682c869d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Chapter 5 Solutions Osmotic Pressure
clc;
clear;
//Initialisation of Variables
T= -0.2 //C
T1= 25 //C
T2= 1.86 //C
R= 0.082 //li-atm per mole per degree
//CALCULATIONS
P= -T*R*(T1+273)/T2
//RESULTS
mprintf("Osmotic pressure= %.2f atm",P)
|