The particleDistribution function object generates a particle distribution for lagrangian data at a given time.
| Operand | Type | Location |
|---|---|---|
| input | - | - |
| output file | dat | $FOAM_CASE/postProcessing/<FO>/<time>/<file> |
| output field | - | - |
Example of the particleDistribution function object by using functions sub-dictionary in system/controlDict file:
particleDistribution1
{
// Mandatory entries (unmodifiable)
type particleDistribution;
libs (fieldFunctionObjects);
// Mandatory entries (runtime modifiable)
cloud <cloudName>;
nameVsBinWidth
(
(d 0.1)
(U 10)
);
setFormat raw;
// Optional entries (runtime modifiable)
tagField none;
// Optional (inherited) entries
writePrecision 8;
writeToFile true;
useUserTime true;
region region0;
enabled true;
log true;
timeStart 0;
timeEnd 1000;
executeControl timeStep;
executeInterval 1;
writeControl timeStep;
writeInterval 1;
}
where the entries mean:
| Property | Description | Type | Required | Default |
|---|---|---|---|---|
| type | Type name: particleDistribution | word | yes | - |
| libs | Library name: fieldFunctionObjects | word | yes | - |
| cloud | Name of cloud to process | word | yes | - |
| nameVsBinWidth | List of cloud field-bin width | wordHashTable | yes | - |
| setFormat | Output format | word | yes | - |
| tagField | Name of cloud field to use group particles | word | no | none |
The inherited entries are elaborated in:
Usage by the postProcess utility is not available.
Tutorial:
Source code:
History