diff options
Diffstat (limited to '2966/CH3/EX3.7.30/3_7_30.sce')
-rw-r--r-- | 2966/CH3/EX3.7.30/3_7_30.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2966/CH3/EX3.7.30/3_7_30.sce b/2966/CH3/EX3.7.30/3_7_30.sce new file mode 100644 index 000000000..3257740af --- /dev/null +++ b/2966/CH3/EX3.7.30/3_7_30.sce @@ -0,0 +1,13 @@ +//lubricants//
+//page 3.30 example 7//
+clc
+vol_oil=7//in ml//
+den_oil=0.88//density of oil in g/ml//
+wt_oil=vol_oil*den_oil//weight f oil saponified(gms)//
+volume=3.8//volume of alcoholic KOH consumed to neutralize fatty acids(ml)//
+normality_KOH=0.02//normality of KOH //
+A=volume*normality_KOH*56/wt_oil//formula for acid value//
+printf("\nAcid value of oil is %.2f 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 |