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 /884/CH4/EX4.12 | |
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 '884/CH4/EX4.12')
-rwxr-xr-x | 884/CH4/EX4.12/Example4_12.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/884/CH4/EX4.12/Example4_12.sce b/884/CH4/EX4.12/Example4_12.sce new file mode 100755 index 000000000..657c315e1 --- /dev/null +++ b/884/CH4/EX4.12/Example4_12.sce @@ -0,0 +1,19 @@ +// Redox Titrations
+
+clear;
+clc;
+
+printf("\t Example 4.12\n");
+
+MKMnO4=0.1327;//molarity of KMnO4, M
+VKMnO4=16.42;//volume of KMnO4, mL
+nKMnO4=MKMnO4*VKMnO4/1000;
+
+nFeSO4=5*nKMnO4;
+VFeSO4=25;//volume of FeSO4, mL
+
+MFeSO4=nFeSO4/VFeSO4*1000;
+
+printf("\t the molarity of FeSO4 solution is : %4.4f M\n",MFeSO4);
+
+//End
|