mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: PatchParticleHistogram: add a new cloud FO
Computes a histogram for the distribution of particle diameters
and corresponding number of particles hitting on a given list of patches.
A minimal example by using `constant/reactingCloud1Properties.cloudFunctions`:
```
patchParticleHistogram1
{
// Mandatory entries (unmodifiable)
type patchParticleHistogram;
patches (<patch1> <patch2> ... <patchN>);
nBins 10;
min 0.1;
max 10.0;
maxStoredParcels 20;
}
```
This commit is contained in:
@ -161,6 +161,20 @@ subModels
|
||||
|
||||
cloudFunctions
|
||||
{
|
||||
patchParticleHistogram1
|
||||
{
|
||||
type patchParticleHistogram;
|
||||
patches
|
||||
(
|
||||
cycLeft_half0
|
||||
cycLeft_half1
|
||||
);
|
||||
nBins 30;
|
||||
min 0.0009;
|
||||
max 0.001;
|
||||
maxStoredParcels 20;
|
||||
}
|
||||
|
||||
patchPostProcessing1
|
||||
{
|
||||
type patchPostProcessing;
|
||||
|
||||
Reference in New Issue
Block a user