diff options
Diffstat (limited to '3819/CH1/EX1.8/Ex1_8.sce')
-rw-r--r-- | 3819/CH1/EX1.8/Ex1_8.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3819/CH1/EX1.8/Ex1_8.sce b/3819/CH1/EX1.8/Ex1_8.sce new file mode 100644 index 000000000..e39a2f019 --- /dev/null +++ b/3819/CH1/EX1.8/Ex1_8.sce @@ -0,0 +1,13 @@ +// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
+// Chapter 1-Properties of Fluid
+// Problem 1.8
+
+//Given data set in the problem
+dy=1.25/100
+visc=14/10
+u=2.5
+
+//Calculations
+ss=visc*((u-0)/dy) //shear stress=viscosity*(velocity gradient across the oil)
+mprintf("The shear stress between the plates is %f N/m^2",ss)
+
|