diff options
Diffstat (limited to '3718/CH14/EX14.9/Ex14_9.sce')
-rw-r--r-- | 3718/CH14/EX14.9/Ex14_9.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3718/CH14/EX14.9/Ex14_9.sce b/3718/CH14/EX14.9/Ex14_9.sce new file mode 100644 index 000000000..913c70ab7 --- /dev/null +++ b/3718/CH14/EX14.9/Ex14_9.sce @@ -0,0 +1,14 @@ +//Chapter 14: Water Treatment
+//Problem: 9
+clc;
+
+//Given Constants For Specific Elements
+Fe = 56
+S = 32
+O = 16
+
+//Solution
+hardness = Fe + S + O * 4
+hardn= (hardness * 215 )/100
+
+mprintf("215 ppm of hardness is : %.1f ppm of FeSO4",hardn)
|