.ThermofluidStream.Processes.Pipes.BaseClasses.PressureLoss.Junction.dp_JunctionWyeType1_DP

Information

The implementation of the function is based on "Handbook of Hydraulic Resistance" in its first translated Version from 1960! The book has been republished in several updated versions since then!

Function calculating the pressure loss of a Y-shaped junction of type I (Fig. 1, currently not yet available) as f(F_c, F_b, w_c, w_b, w_s, alpha, rho, k, A), where:

Calculation according to Idelchik (1960). The pressure loss is calculated as:

As you can see above both pressure loss calculation are with respect to the velocity at the common branch. The pressure loss coefficient of the branch zeta_cb is calculated for case 1 (alpha <= 60°) as: zeta_cb = 1 + w_relbc^2 - 2*(1-*Q_relbc)^2 * k * F_relcb*(Q_relbc)^2

With coefficient k taking the branching angle depedency into account. k is approximated using a 3rd order polynomial:

k(alpha°) = -0.0001766 * alpha^2 - 0.007536 * alpha + 2.1043

For case 2 (alpha = 90°): zeta_cb = A * [A + w_relbc^2 - 2*(1 - Q_relbc)^2] = A * zeta'_cb, with coefficient A scaling zeta'_cb with respect to the given area ratio F_relbc. Since no rational approimation of A = f(F_relbc) has been found, the coefficient is implemented as a table with cubic spline interpolation between the control points.

F_relbc 0-0.2 0.3-0.4 0.6 0.8 1
A 1 0.75 0.7 0.65 0.6

For case 3 (60° < alpha <90°): Since there is no aproximation formula nor data available in this case zeta_cb is interpolated linear between the function of case 1 and 2. The pressure loss coefficient of the straight channel zeta_cs is calculated as:

The following figures, pressure loss coefficients of the branching channel Fig.2 and straight channel Fig.3 at alpha = 30° are shown. (Currently not yet available)

The following figures pressure loss coefficients of the branching channel Fig.4 and straight channel Fig.5 at alpha = 45° are shown. (Currently not yet available)

The following figures pressure loss coefficients of the branching channel Fig.6 and straight channel Fig.7 at alpha = 60°are shown. (Currently not yet available)

The following figures pressure loss coefficients of the branching channel Fig.8 and straight channel Fig.9 at alpha = 90° are shown. (Currently not yet available)

The following figures pressure loss coefficients of the branching channel Fig.10 and straight channel Fig.11 at alpha = 75° are shown. (Currently not yet available)

[P. Jordan; HTWG Konstanz; 01/24]

HTWG Konstanz

Interface

function dp_JunctionWyeType1_DP
  extends Modelica.Icons.Function;
  import SMOOTH = ThermofluidStream.Processes.Pipes.Internal.Utilities.Stepsmoother;
  input SI.Area F_c "Cross-sectional area of (common) outlet";
  input SI.Area F_b "Cross-sectional area of branching inlet";
  input SI.Velocity w_c "Velocity at (common) outlet";
  input SI.Velocity w_b "Velocity at branching inlet";
  input SI.Velocity w_s "Velocity at straight inlet";
  input SI.Angle alpha_deg "Branching angle in degree";
  input Real A "Correction factor at alpha = 90°";
  input SI.Density rho_c "Density of fluid at (common) outlet";
  input SI.Velocity eps "To avoid division by zero";
  output SI.Pressure dp_b "Pressure loss at branching inlet";
  output SI.Pressure dp_s "Pressure loss at straight inlet";
  output ThermofluidStream.Processes.Pipes.Internal.Types.PressureLossCoefficient zeta_cb "Pressure loss coefficient of branching inlet w.r.t. outlet velocity";
  output ThermofluidStream.Processes.Pipes.Internal.Types.PressureLossCoefficient zeta_cs "Pressure loss coefficient of straight inlet w.r.t. outlet velocity";
end dp_JunctionWyeType1_DP;

Generated at 2025-01-31T19:25:52Z by OpenModelicaOpenModelica 1.24.3 using GenerateDoc.mos