outletVent boundary condition computes and prescribes special static pressure value at the outlet (goes locally, face by face). The formula for static pressure is following:
(2.1)
where is the reference static pressure, resistance is the resistance factor, is the density and is the velocity magnitude
p:
boundaryField
{
".*_outlet"
{
type outletVent;
resistance 0.0;
p0 uniform 100000.0;
relax 0.1;
pMax 150000.0;
value $internalField;
}
}
The physical meaning of outletVent boundary condition can be understood as a valve at the outlet that can be gradually opened and closed by increasing and decreasing the resistance factor. relax is relaxation factor of the static pressure to dump oscillations. pMax is maximum allowed value of the static pressure to dump oscillations .