Contents


DuctSupplyBranch90B_CL

 

 

Returns the pressure drop associated with a supply duct with a branch.  The branch is at 90 degrees and the ducts have circular cross-section.  The pressure drop should be applied to the flow in the branch.  The function uses the information on the Lindab web site.

 

DELTAP = DuctSupplyBranch90B_CL(F$, v_3, v_1, T, P)

 

Inputs:

F$:  fluid string identifier

v_3:  velocity in main duct upstream of branch (m/s, ft/s)

v_1:  velocity in branch (m/s, ft/s)

T:  inlet temperature (K, C, F, or R)

P:  inlet pressure (bar, atm, Pa, kPa, or MPa)

 

Output:

DELTAP:  pressure drop (bar, atm, Pa kPa, or MPa)

 

Example: 

$Load Component Library

$UnitSystem SI Mass kJ C Pa

$VarInfo DP Units='Pa'

F$ = 'Air'

T =  20 [C]

P = 100000 [Pa]

v_3 = 8 [m/s]

v_1 = 12 [m/s]

DP = DuctSupplyBranch90B_CL(F$, v_3, v_1, T, P)

 

{Solution:

DP = 57.04 [Pa]}