/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2018-2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Class Foam::functionObjects::reference Group grpFieldFunctionObjects Description Computes a field whose values are offset to a reference value obtained by sampling the field at a user-specified location. The field values are calculated using: \f[ r_c = s(f_{c}(t) - f_p + f_{off}) \f] where \vartable r_c | field values at cell s | optional scale factor (default = 1) f_{c}(t) | current field values at cell at this time f_p | field value at position f_{off} | offset field value (default = 0) \endvartable Operands: \table Operand | Type | Location input | {vol,surface}\Field | $FOAM_CASE/\/\ output file | - | - output field | {vol,surface}\Field | $FOAM_CASE/\/\ \endtable where \c \=Scalar/Vector/SphericalTensor/SymmTensor/Tensor. Usage Minimal example by using \c system/controlDict.functions: \verbatim reference1 { // Mandatory entries (unmodifiable) type reference; libs (fieldFunctionObjects); // Mandatory (inherited) entry (runtime modifiable) field ; // Optional entries (runtime modifiable) position (0 0 0); scale 1.0; offset 0.0; interpolationScheme cell; // Optional (inherited) entries ... } \endverbatim Where the entries comprise: \table Property | Description | Type | Req'd | Dflt type | Type name: reference | word | yes | - field | Name of the operand field | word | yes | - position | Position to sample | vector | no | \ scale | Scale value | scalar | no | 1.0 offset | Offset value | scalar | no | 0.0 interpolationScheme | Sampling scheme | word | no | cell \endtable The inherited entries are elaborated in: - \link functionObject.H \endlink - \link fieldExpression.H \endlink Usage by the \c postProcess utility is not available. See also - Foam::functionObject - Foam::functionObjects::fvMeshFunctionObject - Foam::functionObjects::fieldExpression - ExtendedCodeGuide::functionObjects::field::reference SourceFiles reference.C referenceTemplates.C \*---------------------------------------------------------------------------*/ #ifndef functionObjects_reference_H #define functionObjects_reference_H #include "fieldExpression.H" #include "point.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { namespace functionObjects { /*---------------------------------------------------------------------------*\ Class reference Declaration \*---------------------------------------------------------------------------*/ class reference : public fieldExpression { // Private Data //- Flag to indicate that the position is set bool positionIsSet_; //- Sample cell label celli_; //- Interpolation scheme word interpolationScheme_; //- Scale factor scalar scale_; //- Local copy of dictionary used for construction dictionary localDict_; //- Sample location point position_; // Private Member Functions //- Calculate the reference field and return true if successful virtual bool calc(); //- Utility function to calc a given type of field template bool calcType(); public: //- Runtime type information TypeName("reference"); // Constructors //- Construct from Time and dictionary reference ( const word& name, const Time& runTime, const dictionary& dict ); //- No copy construct reference(const reference&) = delete; //- No copy assignment void operator=(const reference&) = delete; //- Destructor virtual ~reference() = default; // Public Member Functions //- Read the fieldExpression data virtual bool read(const dictionary& dict); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace functionObjects } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "referenceTemplates.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //