DragForce_2Cylinders
Procedure DragForce_2Cylinders returns the drag force for an 2 infinite cylinders in series with their axes perpendicular to the flow
Inputs
Fluid$ - the name of any fluid in the EES data base. Fluid$ may be a string constant or a string variable.
T - temperature in the defined unit system [F,C,R,K]
P - pressure in the defined unit system [Pa,kPa,bar,MPa,psia,atm]
v - free stream fluid velocity in [m/s, ft/min]
D - cylinder diameter [m or ft]
L - cylinder length [m or ft]
Outputs
F_d - drag force per unit length [N/m or lbf/ft]
C_d - drag coefficient {optional}
Re - Reynolds number {optional}
This procedure calls function DragCoefficient_2Cylinders to obtain the drag coefficient.
Example:
$UnitSystem SI C kPa
Fluid$='Air'
T=25 [C]
P=Po#
v=10 [m/s]
D=0.1 [m]
L=0.5 [m]
CALL DragForce_2Cylinders(Fluid$,T,P,v,D,L:F_d\L,C_d,Re)
{Solution:
C_d=1.474
F_d\L=27.41 [N/m]
Re=64040
}