summaryrefslogtreecommitdiff
path: root/1427/CH8/EX8.1/8_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH8/EX8.1/8_1.sce')
-rw-r--r--1427/CH8/EX8.1/8_1.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH8/EX8.1/8_1.sce b/1427/CH8/EX8.1/8_1.sce
new file mode 100644
index 000000000..fe9d10124
--- /dev/null
+++ b/1427/CH8/EX8.1/8_1.sce
@@ -0,0 +1,8 @@
+//ques-8.1
+//Calculating acid value of a lubricating oil
+clc
+m=100;//mass of oil used (in g)
+v=5;//volume of KOH (in mL)
+n=1/20;//normality of KOH
+a=(v*10*n*5.6)/m;//acid value
+printf("Acid value required is %.2f.",a);