for consistency with fvModels and fvConstraints, to simplify code and case maintenance and to avoid the potentially complex functions entries being unnecessarily parsed by utilities for which functionObject evaluation is disabled. The functions entry in controlDict is still read if the functions file is not present for backward-compatibility, but it is advisable to migrate cases to use the new functions file.
42 lines
2.1 KiB
C++
42 lines
2.1 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
Writes out the population balance size distribution for the entire mesh
|
|
or a specified cell zone. Requires the multiphaseEuler solver module.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
type populationBalanceSizeDistribution;
|
|
libs ("libmultiphaseEulerFunctionObjects.so");
|
|
|
|
populationBalance <populationBalance>;
|
|
functionType <function>; // numberConcentration, numberDensity
|
|
// volumeConcentration, volumeDensity
|
|
// areaConcentration, areaDensity
|
|
coordinateType <coordinate>; // volume, area, diameter,
|
|
// projectedAreaDiameter
|
|
allCoordinates false; // defaults to false
|
|
normalise false; // defaults to false
|
|
logTransform false; // defaults to false, only relevant
|
|
// for density functions
|
|
weightType numberConcentration; // volumeConcentration,
|
|
// areaConcentration, cellVolume
|
|
// relevant for field-dependent
|
|
// particle properties, defaults to
|
|
// numberConcentration
|
|
select all; // cellZone
|
|
// defaults to all
|
|
cellZone cellZoneName; // relevant select cellZone
|
|
|
|
|
|
setFormat raw;
|
|
writeControl writeTime;
|
|
|
|
|
|
// ************************************************************************* //
|