diff options
Diffstat (limited to '3050/CH5/EX5.1')
-rwxr-xr-x | 3050/CH5/EX5.1/Ex5_1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3050/CH5/EX5.1/Ex5_1.sce b/3050/CH5/EX5.1/Ex5_1.sce new file mode 100755 index 000000000..2ea988a6d --- /dev/null +++ b/3050/CH5/EX5.1/Ex5_1.sce @@ -0,0 +1,9 @@ +//calculating VI
+//Example 5.1
+clc
+clear
+L=674//viscosity of low viscosity index oil
+H=314//viscosity of high viscosity index oil
+U=464//viscosity of test oil in S
+VI=(L-U)*100/(L-H)//viscosity index
+printf('Thus VI of the oil sample under test =%2.2f',VI)
|