summaryrefslogtreecommitdiff
path: root/3159/CH7/EX7.3
diff options
context:
space:
mode:
Diffstat (limited to '3159/CH7/EX7.3')
-rwxr-xr-x3159/CH7/EX7.3/Ex7_3.sce8
-rwxr-xr-x3159/CH7/EX7.3/Ex7_3.txt3
2 files changed, 11 insertions, 0 deletions
diff --git a/3159/CH7/EX7.3/Ex7_3.sce b/3159/CH7/EX7.3/Ex7_3.sce
new file mode 100755
index 000000000..11c138b41
--- /dev/null
+++ b/3159/CH7/EX7.3/Ex7_3.sce
@@ -0,0 +1,8 @@
+// Calculate amount of pure water that can be extracted from sea water
+clc
+L = 23.3 // % composition of L
+a = 3.5 // concentration of Nacl in sea water
+ice = 0 // % composition of ice
+printf("\n Example 7.3")
+f_ice = (L-a)/(L-ice)
+printf("\n Fractional amount of pure water that can be extracted from sea water is %0.2f",f_ice)
diff --git a/3159/CH7/EX7.3/Ex7_3.txt b/3159/CH7/EX7.3/Ex7_3.txt
new file mode 100755
index 000000000..242be1655
--- /dev/null
+++ b/3159/CH7/EX7.3/Ex7_3.txt
@@ -0,0 +1,3 @@
+
+ Example 7.3
+ Fractional amount of pure water that can be extracted from sea water is 0.85 \ No newline at end of file