Coded functionality now supports basic un-typed substitutions from the
surrounding dictionary. For example:
value 1.2345;
#codeExecute
{
scalar s = $value;
...
};
It also now supports the more functional typed substitutions, such as:
direction (1 0 0);
#codeExecute
{
vector v = $<vector>direction;
...
};
These substitutions are now possible in all code blocks. Blocks with
access to the dictionary (e.g., #codeRead) will do a lookup which will
not require re-compilation if the value is changed. Blocks without
access to the dictionary will have the value directly substituted, and
will require recompilation when the value is changed.
317 lines
7.1 KiB
C++
317 lines
7.1 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2012-2024 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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "codedFvModel.H"
|
|
#include "fvMesh.H"
|
|
#include "fvMatrices.H"
|
|
#include "dynamicCode.H"
|
|
#include "dynamicCodeContext.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace fv
|
|
{
|
|
defineTypeNameAndDebug(codedFvModel, 0);
|
|
addToRunTimeSelectionTable(fvModel, codedFvModel, dictionary);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::fv::codedFvModel::readCoeffs()
|
|
{
|
|
fieldName_ = coeffs().lookup<word>("field");
|
|
|
|
if (fieldPrimitiveTypeName() != word::null)
|
|
{
|
|
updateLibrary();
|
|
}
|
|
}
|
|
|
|
|
|
Foam::word Foam::fv::codedFvModel::fieldPrimitiveTypeName() const
|
|
{
|
|
#define fieldPrimitiveTypeNameTernary(Type, nullArg) \
|
|
mesh().foundObject<VolField<Type>>(fieldName_) \
|
|
? pTraits<Type>::typeName \
|
|
:
|
|
|
|
return FOR_ALL_FIELD_TYPES(fieldPrimitiveTypeNameTernary) word::null;
|
|
}
|
|
|
|
|
|
void Foam::fv::codedFvModel::prepare
|
|
(
|
|
dynamicCode& dynCode,
|
|
const dynamicCodeContext& context
|
|
) const
|
|
{
|
|
const word primitiveTypeName = fieldPrimitiveTypeName();
|
|
|
|
// Set additional rewrite rules
|
|
dynCode.setFilterVariable("typeName", name());
|
|
dynCode.setFilterVariable("TemplateType", primitiveTypeName);
|
|
dynCode.setFilterVariable("SourceType", primitiveTypeName + "Source");
|
|
|
|
// compile filtered C template
|
|
dynCode.addCompileFile("codedFvModelTemplate.C");
|
|
|
|
// copy filtered H template
|
|
dynCode.addCopyFile("codedFvModelTemplate.H");
|
|
|
|
// Make verbose if debugging
|
|
dynCode.setFilterVariable("verbose", Foam::name(bool(debug)));
|
|
|
|
// define Make/options
|
|
dynCode.setMakeOptions
|
|
(
|
|
"EXE_INC = -g \\\n"
|
|
"-I$(LIB_SRC)/finiteVolume/lnInclude \\\n"
|
|
"-I$(LIB_SRC)/meshTools/lnInclude \\\n"
|
|
"-I$(LIB_SRC)/sampling/lnInclude \\\n"
|
|
"-I$(LIB_SRC)/fvModels/lnInclude \\\n"
|
|
+ context.options()
|
|
+ "\n\nLIB_LIBS = \\\n"
|
|
+ " -lmeshTools \\\n"
|
|
+ " -lfvModels \\\n"
|
|
+ " -lsampling \\\n"
|
|
+ " -lfiniteVolume \\\n"
|
|
+ context.libs()
|
|
);
|
|
}
|
|
|
|
|
|
const Foam::word& Foam::fv::codedFvModel::codeName() const
|
|
{
|
|
return name();
|
|
}
|
|
|
|
|
|
Foam::string Foam::fv::codedFvModel::description() const
|
|
{
|
|
return "fvModel:: " + name();
|
|
}
|
|
|
|
|
|
void Foam::fv::codedFvModel::clearRedirect() const
|
|
{
|
|
redirectFvModelPtr_.clear();
|
|
}
|
|
|
|
|
|
const Foam::dictionary& Foam::fv::codedFvModel::codeDict() const
|
|
{
|
|
return coeffs();
|
|
}
|
|
|
|
|
|
Foam::wordList Foam::fv::codedFvModel::codeKeys() const
|
|
{
|
|
return
|
|
{
|
|
"codeAddSup",
|
|
"codeAddRhoSup",
|
|
"codeAddAlphaRhoSup",
|
|
"codeInclude",
|
|
"localCode"
|
|
};
|
|
}
|
|
|
|
|
|
Foam::wordList Foam::fv::codedFvModel::codeDictVars() const
|
|
{
|
|
return
|
|
{
|
|
word::null,
|
|
word::null,
|
|
word::null,
|
|
word::null,
|
|
word::null
|
|
};
|
|
}
|
|
|
|
|
|
Foam::fvModel& Foam::fv::codedFvModel::redirectFvModel() const
|
|
{
|
|
if (!redirectFvModelPtr_.valid())
|
|
{
|
|
dictionary constructDict(coeffs());
|
|
constructDict.set("type", name());
|
|
redirectFvModelPtr_ = fvModel::New
|
|
(
|
|
name(),
|
|
mesh(),
|
|
constructDict
|
|
);
|
|
}
|
|
return redirectFvModelPtr_();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::fv::codedFvModel::addSupType
|
|
(
|
|
const VolField<Type>& field,
|
|
fvMatrix<Type>& eqn
|
|
) const
|
|
{
|
|
if (fieldPrimitiveTypeName() != word::null)
|
|
{
|
|
if (debug)
|
|
{
|
|
Info<< "codedFvModel::addSup for source " << name() << endl;
|
|
}
|
|
|
|
updateLibrary();
|
|
redirectFvModel().addSup(field, eqn);
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::fv::codedFvModel::addSupType
|
|
(
|
|
const volScalarField& rho,
|
|
const VolField<Type>& field,
|
|
fvMatrix<Type>& eqn
|
|
) const
|
|
{
|
|
if (fieldPrimitiveTypeName() != word::null)
|
|
{
|
|
if (debug)
|
|
{
|
|
Info<< "codedFvModel::addSup for source " << name() << endl;
|
|
}
|
|
|
|
updateLibrary();
|
|
redirectFvModel().addSup(rho, field, eqn);
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::fv::codedFvModel::addSupType
|
|
(
|
|
const volScalarField& alpha,
|
|
const volScalarField& rho,
|
|
const VolField<Type>& field,
|
|
fvMatrix<Type>& eqn
|
|
) const
|
|
{
|
|
if (fieldPrimitiveTypeName() != word::null)
|
|
{
|
|
if (debug)
|
|
{
|
|
Info<< "codedFvModel::addSup for source " << name() << endl;
|
|
}
|
|
|
|
updateLibrary();
|
|
redirectFvModel().addSup(alpha, rho, field, eqn);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::fv::codedFvModel::codedFvModel
|
|
(
|
|
const word& name,
|
|
const word& modelType,
|
|
const fvMesh& mesh,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fvModel(name, modelType, mesh, dict),
|
|
fieldName_(word::null)
|
|
{
|
|
readCoeffs();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
Foam::wordList Foam::fv::codedFvModel::addSupFields() const
|
|
{
|
|
return wordList(1, fieldName_);
|
|
}
|
|
|
|
|
|
FOR_ALL_FIELD_TYPES(IMPLEMENT_FV_MODEL_ADD_FIELD_SUP, fv::codedFvModel)
|
|
|
|
|
|
FOR_ALL_FIELD_TYPES(IMPLEMENT_FV_MODEL_ADD_RHO_FIELD_SUP, fv::codedFvModel)
|
|
|
|
|
|
FOR_ALL_FIELD_TYPES
|
|
(
|
|
IMPLEMENT_FV_MODEL_ADD_ALPHA_RHO_FIELD_SUP,
|
|
fv::codedFvModel
|
|
)
|
|
|
|
|
|
bool Foam::fv::codedFvModel::movePoints()
|
|
{
|
|
return redirectFvModel().movePoints();
|
|
}
|
|
|
|
|
|
void Foam::fv::codedFvModel::topoChange(const polyTopoChangeMap& map)
|
|
{
|
|
redirectFvModel().topoChange(map);
|
|
}
|
|
|
|
|
|
void Foam::fv::codedFvModel::mapMesh(const polyMeshMap& map)
|
|
{
|
|
redirectFvModel().mapMesh(map);
|
|
}
|
|
|
|
|
|
void Foam::fv::codedFvModel::distribute(const polyDistributionMap& map)
|
|
{
|
|
redirectFvModel().distribute(map);
|
|
}
|
|
|
|
|
|
bool Foam::fv::codedFvModel::read(const dictionary& dict)
|
|
{
|
|
if (fvModel::read(dict))
|
|
{
|
|
readCoeffs();
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|