blob: e39a2f019965e2c9ef072a338429035d263d4273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)
|