Contents - Index


Flow Nozzle



The flownozzle procedure returns the pressure drop across a stand orifice plate for steady, incompressible, horizontal flow.  The calling sequence is

Call flownozzle(Fluid$,T_1,P_1,m_dot,D_1,D_2:DELTAP,V_dot,Re)

Fluid$ is a string variable or string constant containing the name of any fluid in the EES data base.
T_1 is the temperature, which must be supplied in the same units as EES is configured to in the Unit System dialog
P_1 is the pressure, which must be supplied in the same units as EES is configured to in the Unit System dialog
m_dot is the mass flow rate, which should be in kg/s
D_1 is inlet diameter in m
D_2 is the orifice diameter in m

DELTAP is the pressure drop across the orifice in the same units as EES is configured to in the Unit System dialog
V_dot is the volumetric flow rate in m^3/s
Re is the Reynold's number

Example:
$UnitSystem SI C kPa kJ
$VarInfo DELTAP units=kPa
$VarInfo V_dot units=m^3/s
T=20 [C]
P=100 [kPa]
m_dot=2.43 [kg/s]
D_1=0.04 [m]
D_2=0.03 [m]
Call flownozzle('Methanol',T,P,m_dot,D_1,D_2:DELTAP,V_dot,Re)

{Solution:
DELTAP=5.296 [kPa]
Re=131998 
V_dot=0.003072 [m^3/s]
}


Reference:
Cengel, and Cimbala, Fluid Mechanics, Fundamentals and Applications, 3rd edition, McGraw-Hill, 2014, Chapter 8, Section 8