We have an exciting announcement about badges coming in May 2025. Until then, we will temporarily stop issuing new badges for course completions and certifications. However, all completions will be recorded and fulfilled after May 2025.
Fluids

Fluids

Topics related to Fluent, CFX, Turbogrid and more.

Uniformity Index in CFD-Post

TAGGED: , ,

    • Ben Smith
      Subscriber

      Does anyone know if it's possible to get uniformity index in CFD-Post without creating a new expression?

      It's easy to obtain in Fluent (just go to surface integrals and select uniformity index), but there doesn't seem to be an equivalent calculation built into CFD-Post, and I'd like to use Post since it loads and handles my model much faster.

    • CFD_Friend
      Ansys Employee

      Hi,

      There is no direct function available to calculate the uniformity index. However, we can create a similar expression to calculate the uniformity index value using other functions available in POST. The uniformity index depends on the average value of a property in a sectional area. We can achieve the same result by leveraging the functions provided in CEL.

      To illustrate this, let's take an example of calculating the uniformity index of velocity at the outlet:

      1. First, we calculate the average velocity at the outlet: AV1 = areaAve(Velocity) @ Outlet

      2. Next, we compute the numerator of the uniformity index equation: Numerator = sum(abs(Velocity - AV1) * Area) @ Outlet

      3. Then, we determine the denominator of the uniformity index equation: Denominator = 2 * abs(AV1) * area() @ Outlet

      4. Finally, we can compute the uniformity index: Uniformity index = 1 - (Numerator / Denominator)

      I recommend applying these expressions to a test case available in Fluent to verify the correctness of the approach.

Viewing 1 reply thread
  • The topic ‘Uniformity Index in CFD-Post’ is closed to new replies.