Assignment No 9
Assignment No 9
import math
#Input values
SG= float(input("Enter the specific gravity of the particle: "))
D= float(input("Enter the diameter of the particle (in meters): "))
else:
#For other cases, prompt for temperature input
T = float(input("Enter the temperature "))
#Reynold's number
R = (p*Vs4*D) / u
1
#Drag coefficient calculation
Cd= (24 / R) +(3/math.sqrt(R))+0.34
[ ]: