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 /1478/CH3/EX3.7.12/3_7_12.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 '1478/CH3/EX3.7.12/3_7_12.sce')
-rwxr-xr-x | 1478/CH3/EX3.7.12/3_7_12.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1478/CH3/EX3.7.12/3_7_12.sce b/1478/CH3/EX3.7.12/3_7_12.sce new file mode 100755 index 000000000..5192ea8a2 --- /dev/null +++ b/1478/CH3/EX3.7.12/3_7_12.sce @@ -0,0 +1,11 @@ +//lubricants//
+//example 3.7.12//
+clc
+wt_oil=4.45//weight f oil saponified(gms)//
+volume=2.5//volume of alcoholic KOH consumed to neutralize fatty acids(ml)//
+normality_KOH=0.01//normality of KOH //
+A=volume*normality_KOH*56/wt_oil//formula for acid value//
+printf("\nAcid value of oil is %.3f mgs KOH",A);
+if A<=0.1 then printf("\nOil can be used for lubrication");
+else printf("\nOil cannot be used for lubrication");
+ end
\ No newline at end of file |