summaryrefslogtreecommitdiff
path: root/3819/CH1/EX1.17
diff options
context:
space:
mode:
Diffstat (limited to '3819/CH1/EX1.17')
-rw-r--r--3819/CH1/EX1.17/Ex1_17.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3819/CH1/EX1.17/Ex1_17.sce b/3819/CH1/EX1.17/Ex1_17.sce
new file mode 100644
index 000000000..e297a278c
--- /dev/null
+++ b/3819/CH1/EX1.17/Ex1_17.sce
@@ -0,0 +1,23 @@
+// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
+// Chapter 1-Properties of Fluid
+// Problem 1.17
+
+
+//Given Data Set in the Problem(SI Units)
+d=15/100
+d_outer=15.10/100
+l=25/100
+T=12
+N=100
+
+
+//Calculations
+u_tang=%pi*d*N/60
+Area_surface=%pi*d*l
+du=u_tang-0
+dy=(d_outer-d)/2
+ //We know, Shear stress=Force/Area=viscosity*(Velocity Gradient)
+ //also, Torque=Force*Diameter/2.......or.. Force=(Torque*2)/Diameter
+ //hence, 2*Torque/(diameter*area)=Viscosity*(Vel. gradient)
+visc=2*T/(d*Area_surface*du/dy)
+mprintf("The Viscosity of the liquid is %f poise",visc*10)