6

Next: Inlet Boundary Conditions for Up: Fixed Value Velocity Family Previous: Fixed Velocity Varying with   Contents   Index

Fixed Velocity Varying with Patch Radius Boundary Condition

p:

 boundaryField
 {
".*_inlet"
    {
	type            zeroGradient;
    }
 }

U:
 boundaryField
 {
    ".*_inlet"
    {
        type            turboFixedValue;
        value           $internalField;
        artTransform    on;
        axis            ( 0 0 1 );
        r               ( 
                             0.0
                             0.1
                             0.2
                             0.3
                             0.4
        );
      values  ( 
                         (3.9303   -0.71184   3.47481)  
                         (3.98608  -0.692647  3.6621 )
                         (4.03533  -0.650226  3.93062)
                         (4.00646  -0.604214  4.0422 )
                         (3.97447  -0.564151  4.08478)
              );
    }
  }
 

When parameter artTransform is on, the velocity components are of axial radial and tangential meaning. Otherwise, the velocity components are always Cartesian.

The inlet patch is virtually divided in to number of intervals. When parameter r is prescribed (with e.g. five height levels), the inlet patch is virtually divided into five radial intervals. Into each interval is prescribed corresponding value (linear interpolation is employed here).