DragForce_Pickup
Procedure DragForce_Pickup returns the drag force for typical pickup truck with an uncovered bed
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]
A - the frontal area of the vehicle in [m^2] or [ft^2]
(A can be estimated as the product of height and width of the vehicle multiplied by 0.85.)
Outputs
F_d - drag force per unit length [N or lbf]
C_d - drag coefficient {optional}
Re - Reynolds number {optional} {value is not needed for the calulation and the result returned is an estimate}
This procedure calls function DragCoefficient_Pickup to obtain the drag coefficient.
Example:
$UnitSystem SI C kPa
Fluid$='Air'
T=25 [C]
P=Po#
v=10 [m/s]
A=3.8 [m^2]
CALL DragForce_Pickup(Fluid$,T,P,v,A:F_d,C_d,{Re})
{Solution:
C_d=0.477
F_d=107.3 [N]
}