/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2012-2021 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- 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::fv::codedFvModel Description Constructs on-the-fly fvModel source from user-supplied code Usage Example usage in constant/fvModels: \verbatim energySource { type codedFvModel; selectionMode all; field h; codeInclude #{ #}; codeAddSup #{ Pout<< "**codeAddSup**" << endl; const Time& time = mesh().time(); const scalarField& V = mesh().V(); scalarField& heSource = eqn.source(); heSource -= 0.1*sqr(time.value())*V; #}; codeAddRhoSup #{ Pout<< "**codeAddRhoSup**" << endl; #}; codeAddAlphaRhoSup #{ Pout<< "**codeAddAlphaRhoSup**" << endl; #}; } \endverbatim SourceFiles codedFvModel.C \*---------------------------------------------------------------------------*/ #ifndef codedFvModel_H #define codedFvModel_H #include "fvModel.H" #include "fvCellSet.H" #include "codedBase.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { namespace fv { /*---------------------------------------------------------------------------*\ Class codedFvModel Declaration \*---------------------------------------------------------------------------*/ class codedFvModel : public fvModel, public codedBase { // Private static data //- The keywords associated with source code static const wordList codeKeys_; // Private data //- The set of cells the fvConstraint applies to fvCellSet set_; //- The name of the field that this fvModel applies to word fieldName_; //- Underlying functionObject mutable autoPtr redirectFvModelPtr_; // Private Member Functions //- Non-virtual read void readCoeffs(); //- Return the name of the field's primitive type word fieldPrimitiveTypeName() const; //- Adapt the context for the current object virtual void prepare(dynamicCode&, const dynamicCodeContext&) const; //- Name of the dynamically generated CodedType virtual const word& codeName() const; //- Return a description (type + name) for the output virtual string description() const; //- Clear any redirected objects virtual void clearRedirect() const; //- Get the dictionary to initialize the codeContext virtual const dictionary& codeDict() const; //- Get the keywords associated with source code virtual const wordList& codeKeys() const; //- Dynamically compiled fvModel fvModel& redirectFvModel() const; // Sources //- Add a source term to an equation template void addSupType ( fvMatrix& eqn, const word& fieldName ) const; //- Add a source term to a compressible equation template void addSupType ( const volScalarField& rho, fvMatrix& eqn, const word& fieldName ) const; //- Add a source term to a phase equation template void addSupType ( const volScalarField& alpha, const volScalarField& rho, fvMatrix& eqn, const word& fieldName ) const; public: //- Runtime type information TypeName("codedFvModel"); // Constructors //- Construct from components codedFvModel ( const word& name, const word& modelType, const dictionary& dict, const fvMesh& mesh ); // Member Functions // Checks //- Return the list of fields for which the fvModel adds source term // to the transport equation virtual wordList addSupFields() const; // Sources //- Add a source term to an equation FOR_ALL_FIELD_TYPES(DEFINE_FV_MODEL_ADD_SUP); //- Add a source term to a compressible equation FOR_ALL_FIELD_TYPES(DEFINE_FV_MODEL_ADD_RHO_SUP); //- Add a source term to a phase equation FOR_ALL_FIELD_TYPES(DEFINE_FV_MODEL_ADD_ALPHA_RHO_SUP); // Mesh motion //- Update for mesh changes virtual void updateMesh(const mapPolyMesh&); // IO //- Read source dictionary virtual bool read(const dictionary& dict); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace fv } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //