diff options
Diffstat (limited to '3819/CH1/EX1.16/Ex1_16.sce')
-rw-r--r-- | 3819/CH1/EX1.16/Ex1_16.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3819/CH1/EX1.16/Ex1_16.sce b/3819/CH1/EX1.16/Ex1_16.sce new file mode 100644 index 000000000..99a0ebafe --- /dev/null +++ b/3819/CH1/EX1.16/Ex1_16.sce @@ -0,0 +1,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)
+
+
|