summaryrefslogtreecommitdiff
path: root/3718/CH14/EX14.11/Ex14_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH14/EX14.11/Ex14_11.sce')
-rw-r--r--3718/CH14/EX14.11/Ex14_11.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3718/CH14/EX14.11/Ex14_11.sce b/3718/CH14/EX14.11/Ex14_11.sce
new file mode 100644
index 000000000..9604f5186
--- /dev/null
+++ b/3718/CH14/EX14.11/Ex14_11.sce
@@ -0,0 +1,11 @@
+//Chapter 14: Water Treatment
+//Problem: 11
+clc;
+
+//Initialisation of Variables
+C = 16.5 //in ppm for CO3-2
+
+//Solution
+Molarity = C * 10 ** - 6 / 60.
+
+mprintf("Molarity of CO3-2 is : %.1e mol/L",Molarity)