diff options
Diffstat (limited to '3785/CH6/EX6.12/Ex6_12.sce')
-rw-r--r-- | 3785/CH6/EX6.12/Ex6_12.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3785/CH6/EX6.12/Ex6_12.sce b/3785/CH6/EX6.12/Ex6_12.sce new file mode 100644 index 000000000..8e540bd87 --- /dev/null +++ b/3785/CH6/EX6.12/Ex6_12.sce @@ -0,0 +1,12 @@ +// Example 6_12
+clc;funcprot(0);
+// Given data
+// From Example 6_4
+h=0.1;// The gap betwen the shaft and the bearing in mm
+mu=6.7*10^-5;// Viscosity in Pa/s
+rho=8.0*10^2;// kg/m^3
+
+//Calculation
+// (b)
+t=(rho*(h*10^-3)^2)/mu;// s
+printf("\nThe numerical value of t is %0.4f s",t);
|