summaryrefslogtreecommitdiff
path: root/3876/CH5/EX5.1
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH5/EX5.1')
-rw-r--r--3876/CH5/EX5.1/Ex5_1.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3876/CH5/EX5.1/Ex5_1.sce b/3876/CH5/EX5.1/Ex5_1.sce
new file mode 100644
index 000000000..b74f9ef17
--- /dev/null
+++ b/3876/CH5/EX5.1/Ex5_1.sce
@@ -0,0 +1,17 @@
+//Chapter 5 Solutions Osmotic Pressure
+
+clc;
+clear;
+
+//Initialisation of Variables
+T= 20 //C
+R= 0.082 //li-atm per mole per degree
+V= 2 //lit
+m= 6 //gms
+M= 60 //gms
+
+//CALCULATIONS
+P= m*R*(273+T)/(M*V)
+
+//RESULTS
+mprintf("Osmotic pressure= %.1f atm",P)