157 lines
4.5 KiB
C++
157 lines
4.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2015-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/>.
|
|
|
|
Class
|
|
Foam::compressible::alphatPhaseChangeWallFunctionFvPatchScalarField
|
|
|
|
Group
|
|
grpCmpWallFunctions
|
|
|
|
Description
|
|
Abstract base-class for all alphatWallFunctions supporting phase-change.
|
|
|
|
See also
|
|
Foam::fixedValueFvPatchScalarField
|
|
Foam::alphatWallFunctionFvPatchScalarField
|
|
|
|
SourceFiles
|
|
alphatPhaseChangeWallFunctionFvPatchScalarField.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef compressibleAlphatPhaseChangeWallFunctionFvPatchScalarField_H
|
|
#define compressibleAlphatPhaseChangeWallFunctionFvPatchScalarField_H
|
|
|
|
#include "fixedValueFvPatchFields.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace compressible
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class alphatPhaseChangeWallFunctionFvPatchScalarField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class alphatPhaseChangeWallFunctionFvPatchScalarField
|
|
:
|
|
public fixedValueFvPatchScalarField
|
|
{
|
|
protected:
|
|
|
|
// Protected data
|
|
|
|
//- Rate of phase-change
|
|
scalarField dmdt_;
|
|
|
|
//- Latent heat of the phase-change
|
|
scalarField mDotL_;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("compressible::alphatPhaseChangeWallFunction");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from patch and internal field
|
|
alphatPhaseChangeWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&
|
|
);
|
|
|
|
//- Construct from patch, internal field and dictionary
|
|
alphatPhaseChangeWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&,
|
|
const dictionary&
|
|
);
|
|
|
|
//- Construct by mapping given
|
|
// alphatPhaseChangeWallFunctionFvPatchScalarField
|
|
// onto a new patch
|
|
alphatPhaseChangeWallFunctionFvPatchScalarField
|
|
(
|
|
const alphatPhaseChangeWallFunctionFvPatchScalarField&,
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&,
|
|
const fvPatchFieldMapper&
|
|
);
|
|
|
|
//- Construct as copy
|
|
alphatPhaseChangeWallFunctionFvPatchScalarField
|
|
(
|
|
const alphatPhaseChangeWallFunctionFvPatchScalarField&
|
|
);
|
|
|
|
//- Construct as copy setting internal field reference
|
|
alphatPhaseChangeWallFunctionFvPatchScalarField
|
|
(
|
|
const alphatPhaseChangeWallFunctionFvPatchScalarField&,
|
|
const DimensionedField<scalar, volMesh>&
|
|
);
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Return the rate of phase-change
|
|
const scalarField& dmdt() const
|
|
{
|
|
return dmdt_;
|
|
}
|
|
|
|
//- Return the enthelpy source due to phase-change
|
|
const scalarField& mDotL() const
|
|
{
|
|
return mDotL_;
|
|
}
|
|
|
|
// Evaluation functions
|
|
|
|
//- Update the coefficients associated with the patch field
|
|
virtual void updateCoeffs() = 0;
|
|
|
|
|
|
// I-O
|
|
|
|
//- Write
|
|
virtual void write(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace compressible
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|