From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3758/CH1/EX1.8/Ex1_8.sce | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 3758/CH1/EX1.8/Ex1_8.sce (limited to '3758/CH1/EX1.8/Ex1_8.sce') diff --git a/3758/CH1/EX1.8/Ex1_8.sce b/3758/CH1/EX1.8/Ex1_8.sce new file mode 100644 index 000000000..ac514bcc7 --- /dev/null +++ b/3758/CH1/EX1.8/Ex1_8.sce @@ -0,0 +1,10 @@ +clc; +l=25; //length of plate in centimeter +b=5; //bredth of plate in centimeter +a=(l*b)*10^-4; //calculating area of plate in m^2 +v=2; //velocity with which plate slides in meter/sec +theta=30; //angle of plate with surface in degree +y=0.002 //gap between plate and inclined surface +r=l*sin(theta*(3.14/180));//viscous resistance in kg +u=(r*y)/(v*a); //calculating viscosity of oil +printf('viscosity of oil is %f kg-sec/m^2',u); -- cgit