In most boundary conditions, fvOptions etc. required and optional fields to be looked-up from the objectRegistry are selected by setting the keyword corresponding to the standard field name in the BC etc. to the appropriate name in the objectRegistry. Usually a default is provided with sets the field name to the keyword name, e.g. in the totalPressureFvPatchScalarField the velocity is selected by setting the keyword 'U' to the appropriate name which defaults to 'U': Property | Description | Required | Default value U | velocity field name | no | U phi | flux field name | no | phi . . . However, in some BCs and functionObjects and many fvOptions another convention is used in which the field name keyword is appended by 'Name' e.g. Property | Description | Required | Default value pName | pressure field name | no | p UName | velocity field name | no | U This difference in convention is unnecessary and confusing, hinders code and dictionary reuse and complicates code maintenance. In this commit the appended 'Name' is removed from the field selection keywords standardizing OpenFOAM on the first convention above.
315 lines
8.5 KiB
C
315 lines
8.5 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2013-2016 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 "effectivenessHeatExchangerSource.H"
|
|
#include "fvMesh.H"
|
|
#include "fvMatrix.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "basicThermo.H"
|
|
#include "coupledPolyPatch.H"
|
|
#include "surfaceInterpolate.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace fv
|
|
{
|
|
defineTypeNameAndDebug(effectivenessHeatExchangerSource, 0);
|
|
addToRunTimeSelectionTable
|
|
(
|
|
option,
|
|
effectivenessHeatExchangerSource,
|
|
dictionary
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::fv::effectivenessHeatExchangerSource::initialise()
|
|
{
|
|
const faceZone& fZone = mesh_.faceZones()[zoneID_];
|
|
|
|
faceId_.setSize(fZone.size());
|
|
facePatchId_.setSize(fZone.size());
|
|
faceSign_.setSize(fZone.size());
|
|
|
|
label count = 0;
|
|
forAll(fZone, i)
|
|
{
|
|
label facei = fZone[i];
|
|
label faceId = -1;
|
|
label facePatchId = -1;
|
|
if (mesh_.isInternalFace(facei))
|
|
{
|
|
faceId = facei;
|
|
facePatchId = -1;
|
|
}
|
|
else
|
|
{
|
|
facePatchId = mesh_.boundaryMesh().whichPatch(facei);
|
|
const polyPatch& pp = mesh_.boundaryMesh()[facePatchId];
|
|
if (isA<coupledPolyPatch>(pp))
|
|
{
|
|
if (refCast<const coupledPolyPatch>(pp).owner())
|
|
{
|
|
faceId = pp.whichFace(facei);
|
|
}
|
|
else
|
|
{
|
|
faceId = -1;
|
|
}
|
|
}
|
|
else if (!isA<emptyPolyPatch>(pp))
|
|
{
|
|
faceId = facei - pp.start();
|
|
}
|
|
else
|
|
{
|
|
faceId = -1;
|
|
facePatchId = -1;
|
|
}
|
|
}
|
|
|
|
if (faceId >= 0)
|
|
{
|
|
if (fZone.flipMap()[i])
|
|
{
|
|
faceSign_[count] = -1;
|
|
}
|
|
else
|
|
{
|
|
faceSign_[count] = 1;
|
|
}
|
|
faceId_[count] = faceId;
|
|
facePatchId_[count] = facePatchId;
|
|
count++;
|
|
}
|
|
}
|
|
faceId_.setSize(count);
|
|
facePatchId_.setSize(count);
|
|
faceSign_.setSize(count);
|
|
|
|
calculateTotalArea(faceZoneArea_);
|
|
}
|
|
|
|
|
|
void Foam::fv::effectivenessHeatExchangerSource::calculateTotalArea
|
|
(
|
|
scalar& area
|
|
)
|
|
{
|
|
area = 0;
|
|
forAll(faceId_, i)
|
|
{
|
|
label facei = faceId_[i];
|
|
if (facePatchId_[i] != -1)
|
|
{
|
|
label patchi = facePatchId_[i];
|
|
area += mesh_.magSf().boundaryField()[patchi][facei];
|
|
}
|
|
else
|
|
{
|
|
area += mesh_.magSf()[facei];
|
|
}
|
|
}
|
|
reduce(area, sumOp<scalar>());
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::fv::effectivenessHeatExchangerSource::effectivenessHeatExchangerSource
|
|
(
|
|
const word& name,
|
|
const word& modelType,
|
|
const dictionary& dict,
|
|
const fvMesh& mesh
|
|
)
|
|
:
|
|
cellSetOption(name, modelType, dict, mesh),
|
|
secondaryMassFlowRate_(readScalar(coeffs_.lookup("secondaryMassFlowRate"))),
|
|
secondaryInletT_(readScalar(coeffs_.lookup("secondaryInletT"))),
|
|
primaryInletT_(readScalar(coeffs_.lookup("primaryInletT"))),
|
|
eTable_(),
|
|
UName_(coeffs_.lookupOrDefault<word>("U", "U")),
|
|
TName_(coeffs_.lookupOrDefault<word>("T", "T")),
|
|
phiName_(coeffs_.lookupOrDefault<word>("phi", "phi")),
|
|
faceZoneName_(coeffs_.lookup("faceZone")),
|
|
zoneID_(mesh_.faceZones().findZoneID(faceZoneName_)),
|
|
faceId_(),
|
|
facePatchId_(),
|
|
faceSign_(),
|
|
faceZoneArea_(0)
|
|
{
|
|
if (zoneID_ < 0)
|
|
{
|
|
FatalErrorInFunction
|
|
<< type() << " " << this->name() << ": "
|
|
<< " Unknown face zone name: " << faceZoneName_
|
|
<< ". Valid face zones are: " << mesh_.faceZones().names()
|
|
<< nl << exit(FatalError);
|
|
}
|
|
|
|
// Set the field name to that of the energy field from which the temperature
|
|
// is obtained
|
|
|
|
const basicThermo& thermo =
|
|
mesh_.lookupObject<basicThermo>(basicThermo::dictName);
|
|
|
|
fieldNames_.setSize(1, thermo.he().name());
|
|
|
|
applied_.setSize(1, false);
|
|
|
|
eTable_.reset(new interpolation2DTable<scalar>(coeffs_));
|
|
|
|
initialise();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::fv::effectivenessHeatExchangerSource::addSup
|
|
(
|
|
const volScalarField& rho,
|
|
fvMatrix<scalar>& eqn,
|
|
const label
|
|
)
|
|
{
|
|
const basicThermo& thermo =
|
|
mesh_.lookupObject<basicThermo>(basicThermo::dictName);
|
|
|
|
const surfaceScalarField Cpf(fvc::interpolate(thermo.Cp()));
|
|
|
|
const surfaceScalarField& phi =
|
|
mesh_.lookupObject<surfaceScalarField>(phiName_);
|
|
|
|
scalar totalphi = 0;
|
|
scalar CpfMean = 0;
|
|
forAll(faceId_, i)
|
|
{
|
|
label facei = faceId_[i];
|
|
if (facePatchId_[i] != -1)
|
|
{
|
|
label patchi = facePatchId_[i];
|
|
totalphi += phi.boundaryField()[patchi][facei]*faceSign_[i];
|
|
|
|
CpfMean +=
|
|
Cpf.boundaryField()[patchi][facei]
|
|
*mesh_.magSf().boundaryField()[patchi][facei];
|
|
}
|
|
else
|
|
{
|
|
totalphi += phi[facei]*faceSign_[i];
|
|
CpfMean += Cpf[facei]*mesh_.magSf()[facei];
|
|
}
|
|
}
|
|
reduce(CpfMean, sumOp<scalar>());
|
|
reduce(totalphi, sumOp<scalar>());
|
|
|
|
scalar Qt =
|
|
eTable_()(mag(totalphi), secondaryMassFlowRate_)
|
|
*(secondaryInletT_ - primaryInletT_)
|
|
*(CpfMean/faceZoneArea_)*mag(totalphi);
|
|
|
|
const volScalarField& T = mesh_.lookupObject<volScalarField>(TName_);
|
|
const scalarField TCells(T, cells_);
|
|
scalar Tref = 0;
|
|
if (Qt > 0)
|
|
{
|
|
Tref = max(TCells);
|
|
reduce(Tref, maxOp<scalar>());
|
|
}
|
|
else
|
|
{
|
|
Tref = min(TCells);
|
|
reduce(Tref, minOp<scalar>());
|
|
}
|
|
|
|
scalarField deltaTCells(cells_.size(), 0);
|
|
forAll(deltaTCells, i)
|
|
{
|
|
if (Qt > 0)
|
|
{
|
|
deltaTCells[i] = max(Tref - TCells[i], 0.0);
|
|
}
|
|
else
|
|
{
|
|
deltaTCells[i] = max(TCells[i] - Tref, 0.0);
|
|
}
|
|
}
|
|
|
|
const volVectorField& U = mesh_.lookupObject<volVectorField>(UName_);
|
|
const scalarField& V = mesh_.V();
|
|
scalar sumWeight = 0;
|
|
forAll(cells_, i)
|
|
{
|
|
sumWeight += V[cells_[i]]*mag(U[cells_[i]])*deltaTCells[i];
|
|
}
|
|
reduce(sumWeight, sumOp<scalar>());
|
|
|
|
if (this->V() > VSMALL && mag(Qt) > VSMALL)
|
|
{
|
|
scalarField& heSource = eqn.source();
|
|
|
|
forAll(cells_, i)
|
|
{
|
|
heSource[cells_[i]] -=
|
|
Qt*V[cells_[i]]*mag(U[cells_[i]])*deltaTCells[i]/sumWeight;
|
|
}
|
|
}
|
|
|
|
if (debug && Pstream::master())
|
|
{
|
|
Info<< indent << "Net mass flux [Kg/s] = " << totalphi << nl;
|
|
Info<< indent << "Total energy exchange [W] = " << Qt << nl;
|
|
Info<< indent << "Tref [K] = " << Tref << nl;
|
|
Info<< indent << "Efficiency : "
|
|
<< eTable_()(mag(totalphi), secondaryMassFlowRate_) << endl;
|
|
}
|
|
}
|
|
|
|
|
|
bool Foam::fv::effectivenessHeatExchangerSource::read(const dictionary& dict)
|
|
{
|
|
if (cellSetOption::read(dict))
|
|
{
|
|
coeffs_.lookup("secondaryMassFlowRate") >> secondaryMassFlowRate_;
|
|
coeffs_.lookup("secondaryInletT") >> secondaryInletT_;
|
|
coeffs_.lookup("primaryInletT") >> primaryInletT_;
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|