/*--------------------------------*- C++ -*----------------------------------*\
  ==  == ====== ====   ====    |
                    \\     ||  | Multiphase Code Repository by HZDR
  ======   //   ||  || ===//   | Website: https://doi.org/10.14278/rodare.767
  ||  ||  //    ||  // || \\   | License: GPL-3.0-or-later
  ==  == ====== ====   ==  ==  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "system";
    object      functions;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

#includeFunc residuals(p_rgh, name=residuals, region=bulk)

#includeFunc graphCell
(
    name=graph,
    region=film,
    fields=( delta ),
    start=(-0.01 5e-4 5e-4),
    end=  ( 0.11 5e-4 5e-4),
    axis=x,
    setFormat=csv,
    separator=" "
);

#includeFunc graphLayerAverage
(
    name=layerAverage,
    region=bulk,
    fields=( alpha.liquid ),
    patches=(inlet),
    axis=x,
    setFormat=csv,
    separator=" "
)

// ************************************************************************* //
