mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
These models have been particularly designed for use in the VoF solvers, both incompressible and compressible. Currently constant and temperature dependent surface tension models are provided but it easy to write models in which the surface tension is evaluated from any fields held by the mesh database.
155 lines
4.3 KiB
C++
155 lines
4.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-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::interfaceProperties
|
|
|
|
Description
|
|
Contains the interface properties.
|
|
|
|
Properties to aid interFoam:
|
|
-# Correct the alpha boundary condition for dynamic contact angle.
|
|
-# Calculate interface curvature.
|
|
|
|
SourceFiles
|
|
interfaceProperties.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef interfaceProperties_H
|
|
#define interfaceProperties_H
|
|
|
|
#include "IOdictionary.H"
|
|
#include "surfaceTensionModel.H"
|
|
#include "volFields.H"
|
|
#include "surfaceFields.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class interfaceProperties Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class interfaceProperties
|
|
{
|
|
// Private data
|
|
|
|
//- Keep a reference to the transportProperties dictionary
|
|
const dictionary& transportPropertiesDict_;
|
|
|
|
//- Compression coefficient
|
|
scalar cAlpha_;
|
|
|
|
//- Surface tension
|
|
autoPtr<surfaceTensionModel> sigmaPtr_;
|
|
|
|
//- Stabilisation for normalisation of the interface normal
|
|
const dimensionedScalar deltaN_;
|
|
|
|
const volScalarField& alpha1_;
|
|
const volVectorField& U_;
|
|
surfaceScalarField nHatf_;
|
|
volScalarField K_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct and assignment
|
|
interfaceProperties(const interfaceProperties&);
|
|
void operator=(const interfaceProperties&);
|
|
|
|
//- Correction for the boundary condition on the unit normal nHat on
|
|
// walls to produce the correct contact dynamic angle
|
|
// calculated from the component of U parallel to the wall
|
|
void correctContactAngle
|
|
(
|
|
surfaceVectorField::Boundary& nHat,
|
|
const surfaceVectorField::Boundary& gradAlphaf
|
|
) const;
|
|
|
|
//- Re-calculate the interface curvature
|
|
void calculateK();
|
|
|
|
|
|
public:
|
|
|
|
//- Conversion factor for degrees into radians
|
|
static const scalar convertToRad;
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from volume fraction field gamma and IOdictionary
|
|
interfaceProperties
|
|
(
|
|
const volScalarField& alpha1,
|
|
const volVectorField& U,
|
|
const IOdictionary&
|
|
);
|
|
|
|
|
|
// Member Functions
|
|
|
|
scalar cAlpha() const
|
|
{
|
|
return cAlpha_;
|
|
}
|
|
|
|
const dimensionedScalar& deltaN() const
|
|
{
|
|
return deltaN_;
|
|
}
|
|
|
|
const surfaceScalarField& nHatf() const
|
|
{
|
|
return nHatf_;
|
|
}
|
|
|
|
tmp<volScalarField> sigmaK() const;
|
|
|
|
tmp<surfaceScalarField> surfaceTensionForce() const;
|
|
|
|
//- Indicator of the proximity of the interface
|
|
// Field values are 1 near and 0 away for the interface.
|
|
tmp<volScalarField> nearInterface() const;
|
|
|
|
void correct();
|
|
|
|
//- Read transportProperties dictionary
|
|
bool read();
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|