WallFunction#
- class WallFunction[source]#
Bases:
Flow360BaseModelWallFunctionspecifies the wall function model to use on aWallboundary.Example
Default boundary-layer wall function:
>>> fl.Wall( ... entities=volume_mesh["fluid/wall"], ... use_wall_function=fl.WallFunction(), ... )
Inner-layer wall model:
>>> fl.Wall( ... entities=volume_mesh["fluid/wall"], ... use_wall_function=fl.WallFunction(wall_function_type="InnerLayer"), ... )
Attributes
- wall_function_type: Literal['BoundaryLayer', 'InnerLayer']#
Type of wall function model. ‘BoundaryLayer’ uses integral flat plate boundary layer theory to predict wall shear stress. It performs well across all y+ ranges. ‘InnerLayer’ uses the inner layer behavior of the turbulent boundary layer, offering better accuracy for y+ values in the log layer and below.
- Default:
'BoundaryLayer'