summaryrefslogtreecommitdiff
path: root/2966/CH3/EX3.6.30/3_6_30.sce
diff options
context:
space:
mode:
Diffstat (limited to '2966/CH3/EX3.6.30/3_6_30.sce')
-rw-r--r--2966/CH3/EX3.6.30/3_6_30.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2966/CH3/EX3.6.30/3_6_30.sce b/2966/CH3/EX3.6.30/3_6_30.sce
new file mode 100644
index 000000000..4e6898cdc
--- /dev/null
+++ b/2966/CH3/EX3.6.30/3_6_30.sce
@@ -0,0 +1,13 @@
+//lubricants//
+//page 3.30 example 6//
+clc
+vol_oil=20//in ml//
+den_oil=0.86//density of oil in g/ml//
+wt_oil=vol_oil*den_oil//weight f oil saponified(gms)//
+volume=2.8//volume of alcoholic KOH consumed to neutralize fatty acids(ml)//
+normality_KOH=1/10//normality of KOH //
+A=volume*normality_KOH*56/wt_oil//formula for acid value//
+printf("\nAcid value of oil is %.3f mg/g",A);
+if A<=0.1 then printf("\nAs the acid value is less than 0.1, oil can be used for lubrication");
+else printf("\nAs the acid value is more than 0.1, oil cannot be used for lubrication");
+ end \ No newline at end of file