blob: 5192ea8a2d3a9d5cae5c1babc09e6068e8c0817a (
plain)
1
2
3
4
5
6
7
8
9
10
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
|