The interface for fvModels has been modified to improve its application
to "proxy" equations. That is, equations that are not straightforward
statements of conservation laws in OpenFOAM's usual convention.
A standard conservation law typically takes the following form:
fvMatrix<scalar> psiEqn
(
fvm::ddt(alpha, rho, psi)
+ <fluxes>
==
<sources>
);
A proxy equation, on the other hand, may be a derivation or
rearrangement of a law like this, and may be linearised in terms of a
different variable.
The pressure equation is the most common example of a proxy equation. It
represents a statement of the conservation of volume or mass, but it is
a rearrangement of the original continuity equation, and it has been
linearised in terms of a different variable; the pressure. Another
example is that in the pre-predictor of a VoF solver the
phase-continuity equation is constructed, but it is linearised in terms
of volume fraction rather than density.
In these situations, fvModels sources are now applied by calling:
fvModels().sourceProxy(<conserved-fields ...>, <equation-field>)
Where <conserved-fields ...> are (alpha, rho, psi), (rho, psi), just
(psi), or are omitted entirely (for volume continuity), and the
<equation-field> is the field associated with the proxy equation. This
produces a source term identical in value to the following call:
fvModels().source(<conserved-fields ...>)
It is only the linearisation in terms of <equation-field> that differs
between these two calls.
This change permits much greater flexibility in the handling of mass and
volume sources than the previous name-based system did. All the relevant
fields are available, dimensions can be used in the logic to determine
what sources are being constructed, and sources relating to a given
conservation law all share the same function.
This commit adds the functionality for injection-type sources in the
compressibleVoF solver. A following commit will add a volume source
model for use in incompressible solvers.
216 lines
4.8 KiB
C++
216 lines
4.8 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) YEAR 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 "codedFvModelTemplate.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "fvPatchFieldMapper.H"
|
|
#include "volFields.H"
|
|
#include "surfaceFields.H"
|
|
#include "unitConversion.H"
|
|
#include "fvMatrix.H"
|
|
|
|
//{{{ begin codeInclude
|
|
${codeInclude}
|
|
//}}} end codeInclude
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
namespace fv
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * Local Functions * * * * * * * * * * * * * * //
|
|
|
|
//{{{ begin localCode
|
|
${localCode}
|
|
//}}} end localCode
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Global Functions * * * * * * * * * * * * * //
|
|
|
|
extern "C"
|
|
{
|
|
// dynamicCode:
|
|
// SHA1 = ${SHA1sum}
|
|
//
|
|
// unique function name that can be checked if the correct library version
|
|
// has been loaded
|
|
void ${typeName}_${SHA1sum}(bool load)
|
|
{
|
|
if (load)
|
|
{
|
|
// code that can be explicitly executed after loading
|
|
}
|
|
else
|
|
{
|
|
// code that can be explicitly executed before unloading
|
|
}
|
|
}
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
defineTypeNameAndDebug(${typeName}FvModel${SourceType}, 0);
|
|
|
|
addRemovableToRunTimeSelectionTable
|
|
(
|
|
fvModel,
|
|
${typeName}FvModel${SourceType},
|
|
dictionary
|
|
);
|
|
|
|
|
|
const char* const ${typeName}FvModel${SourceType}::SHA1sum =
|
|
"${SHA1sum}";
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
${typeName}FvModel${SourceType}::
|
|
${typeName}FvModel${SourceType}
|
|
(
|
|
const word& name,
|
|
const word& modelType,
|
|
const fvMesh& mesh,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fvModel(name, modelType, mesh, dict),
|
|
set_(mesh, coeffs())
|
|
{
|
|
if (${verbose})
|
|
{
|
|
Info<<"construct ${typeName} sha1: ${SHA1sum}"
|
|
" from components\n";
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
${typeName}FvModel${SourceType}::
|
|
~${typeName}FvModel${SourceType}()
|
|
{
|
|
if (${verbose})
|
|
{
|
|
Info<<"destroy ${typeName} sha1: ${SHA1sum}\n";
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void ${typeName}FvModel${SourceType}::addSup
|
|
(
|
|
const VolField<${TemplateType}>& field,
|
|
fvMatrix<${TemplateType}>& eqn
|
|
) const
|
|
{
|
|
if (${verbose})
|
|
{
|
|
Info<<"${typeName}FvModel${SourceType}::addSup()\n";
|
|
}
|
|
|
|
//{{{ begin code
|
|
${codeAddSup}
|
|
//}}} end code
|
|
}
|
|
|
|
|
|
void ${typeName}FvModel${SourceType}::addSup
|
|
(
|
|
const volScalarField& rho,
|
|
const VolField<${TemplateType}>& field,
|
|
fvMatrix<${TemplateType}>& eqn
|
|
) const
|
|
{
|
|
if (${verbose})
|
|
{
|
|
Info<<"${typeName}FvModel${SourceType}::addSup()\n";
|
|
}
|
|
|
|
//{{{ begin code
|
|
${codeAddRhoSup}
|
|
//}}} end code
|
|
}
|
|
|
|
|
|
void ${typeName}FvModel${SourceType}::addSup
|
|
(
|
|
const volScalarField& alpha,
|
|
const volScalarField& rho,
|
|
const VolField<${TemplateType}>& field,
|
|
fvMatrix<${TemplateType}>& eqn
|
|
) const
|
|
{
|
|
if (${verbose})
|
|
{
|
|
Info<<"${typeName}FvModel${SourceType}::addSup()\n";
|
|
}
|
|
|
|
//{{{ begin code
|
|
${codeAddAlphaRhoSup}
|
|
//}}} end code
|
|
}
|
|
|
|
|
|
bool ${typeName}FvModel${SourceType}::movePoints()
|
|
{
|
|
set_.movePoints();
|
|
return true;
|
|
}
|
|
|
|
|
|
void ${typeName}FvModel${SourceType}::topoChange(const polyTopoChangeMap& map)
|
|
{
|
|
set_.topoChange(map);
|
|
}
|
|
|
|
|
|
void ${typeName}FvModel${SourceType}::mapMesh(const polyMeshMap& map)
|
|
{
|
|
set_.mapMesh(map);
|
|
}
|
|
|
|
|
|
void ${typeName}FvModel${SourceType}::distribute
|
|
(
|
|
const polyDistributionMap& map
|
|
)
|
|
{
|
|
set_.distribute(map);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
} // End namespace fv
|
|
|
|
// ************************************************************************* //
|