diff options
Diffstat (limited to '3720/CH2/EX2.4')
-rw-r--r-- | 3720/CH2/EX2.4/Ex2_4.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3720/CH2/EX2.4/Ex2_4.sce b/3720/CH2/EX2.4/Ex2_4.sce new file mode 100644 index 000000000..74e2c7565 --- /dev/null +++ b/3720/CH2/EX2.4/Ex2_4.sce @@ -0,0 +1,12 @@ +// Example 2_4
+clc;clear;funcprot(0);
+// Given values
+l=0.0015; // Gap between two cylinders in m
+T=1.8; // Torque in N.m
+L=.4; // Length in m
+R=.06; // Outer radius of inner cylinder in m
+n=300/60; // Number of revolutions per unit time (seconds)
+
+//Calculation
+mu=(T*l/(4*%pi^2*R^3*n*L)); // Viscosity of the fluid in N.s/m^2
+printf('The viscosity of the fluid,mu =%0.3f N.s/m^2\n',mu);
|