summaryrefslogtreecommitdiff
path: root/1427/CH24/EX24.6/24_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH24/EX24.6/24_6.sce')
-rw-r--r--1427/CH24/EX24.6/24_6.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH24/EX24.6/24_6.sce b/1427/CH24/EX24.6/24_6.sce
new file mode 100644
index 000000000..19b6df4d0
--- /dev/null
+++ b/1427/CH24/EX24.6/24_6.sce
@@ -0,0 +1,9 @@
+//ques-24.6
+//Calculating amount of oxygen dissolved in 1L of water
+clc
+KH=4.58*10^4;//Henry's constant (in atm)
+p2=0.2;//gas pressure (in atm)
+X2=p2/KH;
+n=(X2*1000)/18;
+oxy=n*32;
+printf("The amount of oxygen dissolved in 1L of water is %.2f mg.",oxy*1000);