voidfractionModel
Syntax
Defined in couplingProperties dictionary.
voidfractionModel model;
model = name of the voidfractionModel to be applied
Examples
voidfractionModel centre;
Description
voidFraction models compute the voidfraction
in each CFd cell,
i.e. the ratio

with
being the volume of the CFD cell and
the total volume of all particles in that cell.
The voidfractionModel is the base class for models to represent the DEM particle’s volume in the CFD domain via a voidfraction field.
useDDTvoidfraction
When useDDTvoidfraction is enabled you can specify a mask to limit the
region where the ddt(voidfraction) component is applied. The maskingRegion
is specified as as sub-dictionary in the properties dictionary for the voidfractionModel used.
<voidfractionModel>Props
{
ddtVoidfractionProps
{
maskingRegion
{
type <regionType>;
name <regionName>;
}
}
}
type: eithercellZoneto specify the region to exclude using a cellZone ornoneto not exclude any region (default:none)name: the name of the region, i.e. thecellZone(required whentypeiscellZone)
Example:
dividedProps
{
ddtVoidfractionProps
{
maskingRegion
{
type cellZone;
name excludedCellZone;
}
}
}
Restrictions
None.
Default: none.
Home