wallShearStress in OpenFOAM
The wall shear stress,
, is given by:
, is given by:
Where
is the dynamic viscosity,
is the flow velocity parallel to the wall and
is the distance to the wall.
is the dynamic viscosity,
is the flow velocity parallel to the wall and
is the distance to the wall.
The SI unit of wall shear stress is pascal (
), which is identical to
.
), which is identical to
.
The skin friction coefficient,
, is defined by:
, is defined by:
Where
is the local wall shear stress,
is the fluid density and
is the free-stream velocity (usually taken ouside of the boundary layer or at the inlet).
is the local wall shear stress,
is the fluid density and
is the free-stream velocity (usually taken ouside of the boundary layer or at the inlet).
- Incompressible Flow
Laminar
In OpenFOAM, wallShearStress usually is in "kinematic pressure", namely in "m2/s2". It doesn't take into account the density of the fluid. So, you should multiply by rho to reach tau.
tau = (wallShearStress) * rho
or with wallGradU utility
tau = (wallGradU) * mu
You can use the Calculator filter in ParaView to multiply the "wallShearStress" field by the density value.
Turbulence

- Compressible Flow
You must run "wallShearSress -compressible" with that flag in place.
Laminar
wallShearSress -compressible
Turbulence
wallShearStress -compressible:
tau_w = -(mu + mut) * (wallGradU)
Refs [1]



Comments
Post a Comment