diff options
Diffstat (limited to '1187/CH6/EX6.6')
-rwxr-xr-x | 1187/CH6/EX6.6/6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1187/CH6/EX6.6/6.sce b/1187/CH6/EX6.6/6.sce new file mode 100755 index 000000000..2144a3761 --- /dev/null +++ b/1187/CH6/EX6.6/6.sce @@ -0,0 +1,16 @@ +clc
+
+D=0.120; // m
+h=0.08; // m
+c=0.001; // m
+t=0.01875; // m
+rev=65; // revolutions per min
+T=4*10^-3; // N.m
+
+K1=%pi*h/4/c;
+K2=%pi/32/t;
+
+u=T/(rev*2*%pi/60)/(K1*D^3+K2*D^4);
+disp("viscosity of the liquid =")
+disp(u)
+disp("Pa.s")
\ No newline at end of file |