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 --- 3819/CH1/EX1.9/Ex1_9.sce | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 3819/CH1/EX1.9/Ex1_9.sce (limited to '3819/CH1/EX1.9') diff --git a/3819/CH1/EX1.9/Ex1_9.sce b/3819/CH1/EX1.9/Ex1_9.sce new file mode 100644 index 000000000..8f33b7da3 --- /dev/null +++ b/3819/CH1/EX1.9/Ex1_9.sce @@ -0,0 +1,24 @@ +// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal +// Chapter 1-Properties of Fluid +// Problem 1.9 + + +//Given Data Set in the Problem +Area=(60*60)/(100*100) +dy=12.5/1000 +u=2.5 +du=u-0 +Force=98.1 +ss=Force/Area + +//Calculations +//1)Dynamic viscosity of Oil in poise + //Shear Stress=(Force/Area)=viscosity*Velocity gradient +Dyn_visc=ss/(du/dy) +mprintf("The Dynamic Viscosity o fthe oil is %f poise \n",Dyn_visc*10) + +//2) Kinematic viscosity of th eoil in stokes in SG of Oil is 0.95 +SG=0.95 +density_oil=SG*1000 +Kin_visc=Dyn_visc/density_oil +mprintf("The Kinematic viscosity of the oil is %f stokes",Kin_visc*10^4) -- cgit