The radiation modelling library has been moved out of
thermophysicalProperties into the top-level source directory. Radiation
is a process, not a property, and belongs alongside turbulence,
combustion, etc...
The namespaces used within the radiation library have been made
consistent with the rest of the code. Selectable sub-models are in
namespaces named after their base classes. Some models have been
renamed remove the base type from the suffix, as this is unnecessary.
These renames are:
Old name: New name:
binaryAbsorptionEmission binary
cloudAbsorptionEmission cloud
constantAbsorptionEmission constant
greyMeanAbsorptionEmission greyMean/greyMeanCombustion
greyMeanSolidAbsorptionEmission greyMeanSolid
wideBandAbsorptionEmission wideBand/wideBandCombustion
cloudScatter cloud
constantScatter constant
mixtureFractionSoot mixtureFraction
Some absorption-emission models have been split into versions which do
and don't use the heat release rate. The version that does has been
given the post-fix "Combustion" and has been moved into the
combustionModels library. This removes the dependence on a registered
Qdot field, and makes the models compatible with the recent removal of
that field from the combustion solvers.
207 lines
5.4 KiB
C
207 lines
5.4 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2019 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 "greyDiffusiveViewFactorFixedValueFvPatchScalarField.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "fvPatchFieldMapper.H"
|
|
#include "volFields.H"
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::greyDiffusiveViewFactorFixedValueFvPatchScalarField::
|
|
greyDiffusiveViewFactorFixedValueFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(p, iF),
|
|
radiationCoupledBase(patch(), "undefined", scalarField::null()),
|
|
qro_(p.size(), 0.0)
|
|
{}
|
|
|
|
|
|
Foam::greyDiffusiveViewFactorFixedValueFvPatchScalarField::
|
|
greyDiffusiveViewFactorFixedValueFvPatchScalarField
|
|
(
|
|
const greyDiffusiveViewFactorFixedValueFvPatchScalarField& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(ptf, p, iF, mapper),
|
|
radiationCoupledBase
|
|
(
|
|
patch(),
|
|
ptf.emissivityMethod(),
|
|
ptf.emissivity_,
|
|
mapper
|
|
),
|
|
qro_(ptf.qro_, mapper)
|
|
{}
|
|
|
|
|
|
Foam::greyDiffusiveViewFactorFixedValueFvPatchScalarField::
|
|
greyDiffusiveViewFactorFixedValueFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(p, iF, dict, false),
|
|
radiationCoupledBase(p, dict),
|
|
qro_("qro", dict, p.size())
|
|
{
|
|
if (dict.found("value"))
|
|
{
|
|
fvPatchScalarField::operator=
|
|
(
|
|
scalarField("value", dict, p.size())
|
|
);
|
|
|
|
}
|
|
else
|
|
{
|
|
fvPatchScalarField::operator=(0.0);
|
|
}
|
|
}
|
|
|
|
|
|
Foam::greyDiffusiveViewFactorFixedValueFvPatchScalarField::
|
|
greyDiffusiveViewFactorFixedValueFvPatchScalarField
|
|
(
|
|
const greyDiffusiveViewFactorFixedValueFvPatchScalarField& ptf
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(ptf),
|
|
radiationCoupledBase
|
|
(
|
|
ptf.patch(),
|
|
ptf.emissivityMethod(),
|
|
ptf.emissivity_
|
|
),
|
|
qro_(ptf.qro_)
|
|
{}
|
|
|
|
|
|
Foam::greyDiffusiveViewFactorFixedValueFvPatchScalarField::
|
|
greyDiffusiveViewFactorFixedValueFvPatchScalarField
|
|
(
|
|
const greyDiffusiveViewFactorFixedValueFvPatchScalarField& ptf,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(ptf, iF),
|
|
radiationCoupledBase
|
|
(
|
|
ptf.patch(),
|
|
ptf.emissivityMethod(),
|
|
ptf.emissivity_
|
|
),
|
|
qro_(ptf.qro_)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::greyDiffusiveViewFactorFixedValueFvPatchScalarField::autoMap
|
|
(
|
|
const fvPatchFieldMapper& m
|
|
)
|
|
{
|
|
fixedValueFvPatchScalarField::autoMap(m);
|
|
radiationCoupledBase::autoMap(m);
|
|
qro_.autoMap(m);
|
|
}
|
|
|
|
|
|
void Foam::greyDiffusiveViewFactorFixedValueFvPatchScalarField::rmap
|
|
(
|
|
const fvPatchScalarField& ptf,
|
|
const labelList& addr
|
|
)
|
|
{
|
|
fixedValueFvPatchScalarField::rmap(ptf, addr);
|
|
radiationCoupledBase::rmap(ptf, addr);
|
|
const greyDiffusiveViewFactorFixedValueFvPatchScalarField& mrptf =
|
|
refCast<const greyDiffusiveViewFactorFixedValueFvPatchScalarField>(ptf);
|
|
|
|
qro_.rmap(mrptf.qro_, addr);
|
|
}
|
|
|
|
void Foam::greyDiffusiveViewFactorFixedValueFvPatchScalarField::updateCoeffs()
|
|
{
|
|
if (this->updated())
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (debug)
|
|
{
|
|
scalar Q = gSum((*this)*patch().magSf());
|
|
|
|
Info<< patch().boundaryMesh().mesh().name() << ':'
|
|
<< patch().name() << ':'
|
|
<< this->internalField().name() << " <- "
|
|
<< " heat transfer rate:" << Q
|
|
<< " wall radiative heat flux "
|
|
<< " min:" << gMin(*this)
|
|
<< " max:" << gMax(*this)
|
|
<< " avg:" << gAverage(*this)
|
|
<< endl;
|
|
}
|
|
|
|
fixedValueFvPatchScalarField::updateCoeffs();
|
|
}
|
|
|
|
|
|
void Foam::greyDiffusiveViewFactorFixedValueFvPatchScalarField::write
|
|
(
|
|
Ostream& os
|
|
) const
|
|
{
|
|
fixedValueFvPatchScalarField::write(os);
|
|
radiationCoupledBase::write(os);
|
|
qro_.writeEntry("qro", os);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
makePatchTypeField
|
|
(
|
|
fvPatchScalarField,
|
|
greyDiffusiveViewFactorFixedValueFvPatchScalarField
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|