Project Based Learning Report On
Project Based Learning Report On
By
❖ INTRODUCTION
❖ PROGRAM CODE
❖ PROBLEM
❖ OUTPUT
❖ CONCLUSION
❖ REFERENCE
ACKNOWLEDGEMENT
Dynamic viscosity:
Consider two fiat surfaces separated by a film of fluid of thickness 'h' as shown
in figure below;
The force required to move the upper surface is proportional to the wetted
area 'A' and the velocity gradient 'u/h', as the individual fluid layer in a thicker
film will be subjected to less shear than in a thin film, i.e.:
This relationship is maintained for most fluids. Different fluids will exhibit a
different proportionality constant 'η', called the 'dynamic viscosity'.
Rotational Viscometer
Rotational viscometers are based on the principle that the fluid viscosity is
related to the force required to generate shear between two surfaces separated
by a film of fluid (ASTM D2983).
In these viscometers one of the surfaces is stationary and the other is rotated
by an external drive and the fluid fills the space in between.
The measurements are conducted by applying either a constant torque and
measuring the changes in the speed of rotation or applying a constant speed
and measuring the changes in the torque.
These viscometers give the 'dynamic viscosity'.
There are two main types of these viscometers:
(i) rotating cylinder and
(ii) cone-on-plate viscometers.
else:
M = float(input("enter the value of shear torque [Nm] ="))
w = float(input("enter the value of angular velocity [rad/s] ="))
ri = float(input("enter the radii of inner cylinder [m] ="))
ro = float(input("enter the radii of outer cylinder [m] ="))
d = float(input("enter the value of immersion depth of inner cylinder [m] ="))
n = M*(1 / (ri * ri) - 1 / (ro * ro)) / (4 * 3.14 * d * w)
print("the value of dynamic viscosity=",n, "Pa-s")
OUTPUT:
CONCLUSION
Both formulas provide a means to determine the dynamic viscosity of the fluid
being tested. However, it is essential to ensure accurate measurements and
calibration of the viscometer to obtain reliable viscosity values. Additionally,
factors such as temperature and pressure can also influence viscosity
measurements and should be controlled or accounted for during experimentation.
Overall, rotating viscometers are valuable tools for characterizing the flow
properties of fluids, providing crucial information for various industrial,
scientific, and engineering applications.
REFERENCES