mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
reactingEulerFoam: Removed duplicate IATEsource files
This commit is contained in:
@ -1,142 +0,0 @@
|
|||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | Copyright (C) 2016-2018 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 "wallBoiling.H"
|
|
||||||
#include "phaseCompressibleTurbulenceModel.H"
|
|
||||||
#include "alphatWallBoilingWallFunctionFvPatchScalarField.H"
|
|
||||||
#include "fvmSup.H"
|
|
||||||
#include "addToRunTimeSelectionTable.H"
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
namespace Foam
|
|
||||||
{
|
|
||||||
namespace diameterModels
|
|
||||||
{
|
|
||||||
namespace IATEsources
|
|
||||||
{
|
|
||||||
defineTypeNameAndDebug(wallBoiling, 0);
|
|
||||||
addToRunTimeSelectionTable(IATEsource, wallBoiling, dictionary);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
Foam::diameterModels::IATEsources::wallBoiling::wallBoiling
|
|
||||||
(
|
|
||||||
const IATE& iate,
|
|
||||||
const dictionary& dict
|
|
||||||
)
|
|
||||||
:
|
|
||||||
IATEsource(iate)
|
|
||||||
{}
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
Foam::tmp<Foam::fvScalarMatrix>
|
|
||||||
Foam::diameterModels::IATEsources::wallBoiling::R
|
|
||||||
(
|
|
||||||
const volScalarField& alphai,
|
|
||||||
volScalarField& kappai
|
|
||||||
) const
|
|
||||||
{
|
|
||||||
volScalarField::Internal R
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"wallBoiling:R",
|
|
||||||
phase().time().timeName(),
|
|
||||||
phase().mesh()
|
|
||||||
),
|
|
||||||
phase().mesh(),
|
|
||||||
dimensionedScalar("R", dimless/dimTime, 0)
|
|
||||||
);
|
|
||||||
|
|
||||||
volScalarField::Internal Rdk
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"wallBoiling:Rdk",
|
|
||||||
phase().time().timeName(),
|
|
||||||
phase().mesh()
|
|
||||||
),
|
|
||||||
phase().mesh(),
|
|
||||||
dimensionedScalar("Rdk", kappai.dimensions()/dimTime, 0)
|
|
||||||
);
|
|
||||||
|
|
||||||
const phaseCompressibleTurbulenceModel& turbulence =
|
|
||||||
phase().db().lookupObjectRef<phaseCompressibleTurbulenceModel>
|
|
||||||
(
|
|
||||||
IOobject::groupName
|
|
||||||
(
|
|
||||||
turbulenceModel::propertiesName,
|
|
||||||
otherPhase().name()
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
const tmp<volScalarField> talphat(turbulence.alphat());
|
|
||||||
const volScalarField::Boundary& alphatBf = talphat().boundaryField();
|
|
||||||
|
|
||||||
const scalarField& rho = phase().rho();
|
|
||||||
|
|
||||||
typedef compressible::alphatWallBoilingWallFunctionFvPatchScalarField
|
|
||||||
alphatWallBoilingWallFunction;
|
|
||||||
|
|
||||||
forAll(alphatBf, patchi)
|
|
||||||
{
|
|
||||||
if
|
|
||||||
(
|
|
||||||
isA<alphatWallBoilingWallFunction>(alphatBf[patchi])
|
|
||||||
)
|
|
||||||
{
|
|
||||||
const alphatWallBoilingWallFunction& alphatw =
|
|
||||||
refCast<const alphatWallBoilingWallFunction>(alphatBf[patchi]);
|
|
||||||
|
|
||||||
const scalarField& dmdt = alphatw.dmdt();
|
|
||||||
const scalarField& dDep = alphatw.dDeparture();
|
|
||||||
|
|
||||||
const labelList& faceCells = alphatw.patch().faceCells();
|
|
||||||
|
|
||||||
forAll(alphatw, facei)
|
|
||||||
{
|
|
||||||
if (dmdt[facei] > small)
|
|
||||||
{
|
|
||||||
const label faceCelli = faceCells[facei];
|
|
||||||
R[faceCelli] =
|
|
||||||
dmdt[facei]/(alphai[faceCelli]*rho[faceCelli]);
|
|
||||||
Rdk[faceCelli] = R[faceCelli]*(6.0/dDep[facei]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Rdk - fvm::Sp(R, kappai);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -1,98 +0,0 @@
|
|||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | Copyright (C) 2016-2017 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/>.
|
|
||||||
|
|
||||||
Class
|
|
||||||
Foam::diameterModels::IATEsources::wallBoiling
|
|
||||||
|
|
||||||
Description
|
|
||||||
Wall-boiling IATE source.
|
|
||||||
|
|
||||||
SourceFiles
|
|
||||||
wallBoiling.C
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
#ifndef wallBoiling_H
|
|
||||||
#define wallBoiling_H
|
|
||||||
|
|
||||||
#include "IATEsource.H"
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
namespace Foam
|
|
||||||
{
|
|
||||||
namespace diameterModels
|
|
||||||
{
|
|
||||||
namespace IATEsources
|
|
||||||
{
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
Class wallBoiling Declaration
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
class wallBoiling
|
|
||||||
:
|
|
||||||
public IATEsource
|
|
||||||
{
|
|
||||||
|
|
||||||
public:
|
|
||||||
|
|
||||||
//- Runtime type information
|
|
||||||
TypeName("wallBoiling");
|
|
||||||
|
|
||||||
|
|
||||||
// Constructors
|
|
||||||
|
|
||||||
wallBoiling
|
|
||||||
(
|
|
||||||
const IATE& iate,
|
|
||||||
const dictionary& dict
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
|
||||||
virtual ~wallBoiling()
|
|
||||||
{}
|
|
||||||
|
|
||||||
|
|
||||||
// Member Functions
|
|
||||||
|
|
||||||
virtual tmp<fvScalarMatrix> R
|
|
||||||
(
|
|
||||||
const volScalarField& alphai,
|
|
||||||
volScalarField& kappai
|
|
||||||
) const;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
} // End namespace IATEsources
|
|
||||||
} // End namespace diameterModels
|
|
||||||
} // End namespace Foam
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
Reference in New Issue
Block a user