diff options
Diffstat (limited to '3876/CH6/EX6.1/Ex6_1.sce')
-rw-r--r-- | 3876/CH6/EX6.1/Ex6_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3876/CH6/EX6.1/Ex6_1.sce b/3876/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..4d95d2f33 --- /dev/null +++ b/3876/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,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) |