Contents
- Index
Impinging_Jets_SSN
Procedure Impinging_Jets_SSN(Fluid$, T, P, u, B, H, x : h_bar, Nusselt, Re) calculates the average heat transfer and Nusselt number for a single slot nozzle (SSN) jet with slot width B positioned perpendicular to a plate with its exit a distance H from the plate. The heat transfer coefficient is averaged over an area of the plate with distance x from the nozzel center.
Inputs
Fluid$ is a string or string variable that can be any fluid in the EES data base. The fluid can be an ideal gas, a real fluid, a brine, or an incompressible fluid in the Solid-Liquid_Props fluids library.
T - the temperature of fluid exiting the jet [C], [K], [F], or [R].
P - pressure can be in [Pa], [kPa], [bar], [MPa], [atm] or [psia]. (Note that for brines, this parameter provides the concentration in % instead of pressure.)
u - the velocity of the flow exiting the nozzle [m/s] or [ft/min]
B - the width of the slot in [m] or [ft]
H - the distance between the nozzle exit and the surface that the jet impinging on in [m] or [ft]
x - the position on the surface measured from the nozzle center that the average heat transfer coefficient is applied in [m] or [ft]
Outputs
h_bar - average heat transfer coefficient in [W/m^2-K] or [Btu/hr-ft^2-R]
Nusselt - average Nusselt number [-]
Re - Reynolds number [-]
Notes:
This procedure is responsible for determining the property data of the fluid specified and calculating the Reynold and Prandtl numbers. This procedure then passes dimensionless information to the non-dimensional procedure Impinging_Jets_SSN_ND. The non-dimensional procedure returns the values for Nusselt. Impinging_Jets_SRN calculates t the heat transfer coefficient
Example
$UnitSystem SI C kPa J mass
$VarInfo h_bar units=W/m^2-K
Fluid$='air'
T=25 [C]
P=100 [kPa]
Vel=20 [m/s]
B=0.005 [m]
x=0.025 [m]
H=0.04 [m]
Call impinging_jet_ssn(Fluid$, T, P, Vel, B, H, x:h_bar, Nusselt, Re)
{Solution:
h_bar=138.6 [W/m^2-K]
Nusselt=54.35
Re=12641
}
Impinging Jets Index