diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3159/CH7/EX7.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3159/CH7/EX7.3')
-rwxr-xr-x | 3159/CH7/EX7.3/Ex7_3.sce | 8 | ||||
-rwxr-xr-x | 3159/CH7/EX7.3/Ex7_3.txt | 3 |
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 |