blob: 99a0ebafed81454ad38c83e78783aec6ab714652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 1-Properties of Fluid
// Problem 1.16
//Given Data Set in the Problem(SI Units)
F1=40
F2=200
u1=50/100
//Calculations
//We know, Shear stress=Force/Area=viscosity*(Velocity Gradient)
//ie, F/A=viscosity*(u/y)
//F/u=Viscosity*(A/y)
//F1/u1=F2/u2=constant
u2=F2*u1/F1
mprintf("The Speed of the sleeve when a force of 200N is applied is %f cm/s",u2*100)
|