openfoam/tutorials/incompressible
Andrew Heather 8d90b16518 ENH: multiFieldValue - extended to operate on general function objects
- Previously, the multiFieldValue function object was limited to operate on
  lists of fieldValue function objects.
- Any function objects that generate results can now be used, e.g.

pressureAverage
{
    type    multiFieldValue;
    libs    (fieldFunctionObjects);

    operation   average;

    functions
    {
        inlet
        {
            type            surfaceFieldValue;
            operation       areaAverage;
            regionType      patch;
            name            inlet;
            fields          (p);

            writeFields     no;
            writeToFile     no;
            log             no;
            resultFields    (areaAverage(inlet,p));
        }
        outlet
        {
            type            surfaceFieldValue;
            operation       areaAverage;
            regionType      patch;
            name            outlet;
            fields          (p);

            writeFields     no;
            writeToFile     no;
            log             no;
        }
        average
        {
            type            valueAverage;
            functionObject  testSample1;
            fields          (average(p));

            writeToFile     no;
            log             no;
        }
    }
}

TUT: cavity: add an example for the multiFieldValue function object
2022-05-25 23:17:57 +00:00
..
adjointOptimisationFoam RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
adjointShapeOptimizationFoam/pitzDaily RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
boundaryFoam/steadyBoundaryLayer RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
icoFoam RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
lumpedPointMotion RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
nonNewtonianIcoFoam/offsetCylinder RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
overPimpleDyMFoam RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
overSimpleFoam/aeroFoil TUT: update tutorials to use dictionary-style sets 2022-03-10 19:45:20 +01:00
pimpleFoam ENH: TUT: misspelled patch name 2022-05-25 13:12:38 +00:00
pisoFoam ENH: multiFieldValue - extended to operate on general function objects 2022-05-25 23:17:57 +00:00
porousSimpleFoam RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
shallowWaterFoam/squareBump RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
simpleFoam TUT: update tutorials to use dictionary-style sets 2022-03-10 19:45:20 +01:00
SRFPimpleFoam/rotor2D RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
SRFSimpleFoam/mixer RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00