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 /599/CH7/EX7.5/example7_5.sce | |
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 '599/CH7/EX7.5/example7_5.sce')
-rwxr-xr-x | 599/CH7/EX7.5/example7_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/599/CH7/EX7.5/example7_5.sce b/599/CH7/EX7.5/example7_5.sce new file mode 100755 index 000000000..087665597 --- /dev/null +++ b/599/CH7/EX7.5/example7_5.sce @@ -0,0 +1,18 @@ +
+clear;
+clc;
+printf("\t Example 7.5\n");
+
+p1=.3; //percentage of the solute in the solution
+w1=1000; //weight of the solution taken
+w2=142; //molecular weight of Na2SO4.
+M1=(w2/(180+w2)); //solute (Na2SO4) present in the Na2CO3.10H2O solution
+s1=40.8; //solubility of Na2SO4 at 30 degree per 100 gm of water
+s2=9.0; //solubility of Na2SO4 at 10 degree per 100 gm of water
+//percent weight of solute in Na2SO4.10H2O= 144/322
+//let x be the weight of crystal formed
+x=poly([0],'x'); //calc. x the weight of crystal
+t=roots((w1*40.8/140.8)-(.442*x+(w1-x)*(s2/(100+s2))));
+printf("\n the weight of crystal formed after crystallisation :%f kg",t);
+
+//end
\ No newline at end of file |