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:
Kutalmis Bercin
2020-08-14 12:50:15 +01:00
parent 48592e8152
commit 2a64d98d02
5 changed files with 495 additions and 0 deletions

View File

@ -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;