mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
133 lines
3.3 KiB
C
133 lines
3.3 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2013 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 "surfaceFilmModel.H"
|
|
#include "fvMesh.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace regionModels
|
|
{
|
|
namespace surfaceFilmModels
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
defineTypeNameAndDebug(surfaceFilmModel, 0);
|
|
defineRunTimeSelectionTable(surfaceFilmModel, mesh);
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
bool surfaceFilmModel::read()
|
|
{
|
|
if (singleLayerRegion::read())
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
surfaceFilmModel::surfaceFilmModel
|
|
(
|
|
const word& modelType,
|
|
const fvMesh& mesh,
|
|
const dimensionedVector& g
|
|
)
|
|
:
|
|
singleLayerRegion(mesh, "surfaceFilm", modelType),
|
|
g_(g)
|
|
{
|
|
if (active_)
|
|
{
|
|
read();
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
surfaceFilmModel::~surfaceFilmModel()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
|
|
|
|
Foam::scalar surfaceFilmModel::CourantNumber() const
|
|
{
|
|
return ROOTVSMALL;
|
|
}
|
|
|
|
|
|
tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Srho() const
|
|
{
|
|
notImplemented
|
|
(
|
|
"tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Srho() const"
|
|
)
|
|
|
|
return tmp<DimensionedField<scalar, volMesh> >(NULL);
|
|
}
|
|
|
|
|
|
tmp<DimensionedField<scalar, volMesh> >
|
|
surfaceFilmModel::Srho(const label) const
|
|
{
|
|
notImplemented
|
|
(
|
|
"tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Srho"
|
|
"(const label) const"
|
|
)
|
|
|
|
return tmp<DimensionedField<scalar, volMesh> >(NULL);
|
|
}
|
|
|
|
|
|
tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Sh() const
|
|
{
|
|
notImplemented
|
|
(
|
|
"tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Sh() const"
|
|
)
|
|
|
|
return tmp<DimensionedField<scalar, volMesh> >(NULL);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace surfaceFilmModels
|
|
} // End namespace regionModels
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|