diff options
Diffstat (limited to '1187/CH6/EX6.5/5.sce')
-rwxr-xr-x | 1187/CH6/EX6.5/5.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/1187/CH6/EX6.5/5.sce b/1187/CH6/EX6.5/5.sce new file mode 100755 index 000000000..855726b1d --- /dev/null +++ b/1187/CH6/EX6.5/5.sce @@ -0,0 +1,32 @@ +clc
+
+disp("(a)the dynamic and kinematic viscosities of the oil")
+
+d=0.00475; // m
+g=9.81; // m/s^2
+rho_s=1151; // kg/m^3
+rho=880; // kg/m^3
+u=0.006; // m/s
+
+F=%pi/6*d^3*g*(rho_s-rho);
+
+rat_d=0.25; // ratio of d/D
+rat_F=1.8; // ratio of F/Fo
+
+dynamic=F/(1.8*3*%pi*u*d);
+
+kinematic=dynamic/rho;
+
+disp("Dynamic viscosity = ")
+disp(dynamic)
+disp("kg/m/s")
+
+disp("Kinematic viscosity =")
+disp(kinematic)
+disp("m^2/s")
+
+disp("(b) Reynolds number of sphere =")
+
+Re=rho*u*d/dynamic;
+disp("Reynolds number =")
+disp(Re)
|