mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
133 lines
3.8 KiB
C
133 lines
3.8 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd.
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "gradientInternalEnergyFvPatchScalarField.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "fvPatchFieldMapper.H"
|
|
#include "volFields.H"
|
|
#include "basicThermo.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
gradientInternalEnergyFvPatchScalarField::gradientInternalEnergyFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
fixedGradientFvPatchScalarField(p, iF)
|
|
{}
|
|
|
|
|
|
gradientInternalEnergyFvPatchScalarField::gradientInternalEnergyFvPatchScalarField
|
|
(
|
|
const gradientInternalEnergyFvPatchScalarField& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fixedGradientFvPatchScalarField(ptf, p, iF, mapper)
|
|
{}
|
|
|
|
|
|
gradientInternalEnergyFvPatchScalarField::gradientInternalEnergyFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fixedGradientFvPatchScalarField(p, iF, dict)
|
|
{}
|
|
|
|
|
|
gradientInternalEnergyFvPatchScalarField::gradientInternalEnergyFvPatchScalarField
|
|
(
|
|
const gradientInternalEnergyFvPatchScalarField& tppsf
|
|
)
|
|
:
|
|
fixedGradientFvPatchScalarField(tppsf)
|
|
{}
|
|
|
|
|
|
gradientInternalEnergyFvPatchScalarField::gradientInternalEnergyFvPatchScalarField
|
|
(
|
|
const gradientInternalEnergyFvPatchScalarField& tppsf,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
fixedGradientFvPatchScalarField(tppsf, iF)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void gradientInternalEnergyFvPatchScalarField::updateCoeffs()
|
|
{
|
|
if (updated())
|
|
{
|
|
return;
|
|
}
|
|
|
|
const basicThermo& thermo = db().lookupObject<basicThermo>
|
|
(
|
|
"thermophysicalProperties"
|
|
);
|
|
|
|
const label patchi = patch().index();
|
|
|
|
fvPatchScalarField& Tw =
|
|
const_cast<fvPatchScalarField&>(thermo.T().boundaryField()[patchi]);
|
|
|
|
Tw.evaluate();
|
|
|
|
gradient() = thermo.Cv(Tw, patchi)*Tw.snGrad()
|
|
+ patch().deltaCoeffs()*
|
|
(
|
|
thermo.e(Tw, patchi)
|
|
- thermo.e(Tw, patch().faceCells())
|
|
);
|
|
|
|
fixedGradientFvPatchScalarField::updateCoeffs();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
makePatchTypeField(fvPatchScalarField, gradientInternalEnergyFvPatchScalarField);
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|