80 lines
2.0 KiB
C++
80 lines
2.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0";
|
|
object alpha.air;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 0 0 0 0 0 0];
|
|
|
|
internalField uniform 0;
|
|
|
|
boundaryField
|
|
{
|
|
leftWall
|
|
{
|
|
type alphaContactAngle;
|
|
thetaProperties
|
|
(
|
|
( water air ) 90 0 0 0
|
|
( oil air ) 90 0 0 0
|
|
( mercury air ) 90 0 0 0
|
|
( water oil ) 90 0 0 0
|
|
( water mercury ) 90 0 0 0
|
|
( oil mercury ) 90 0 0 0
|
|
);
|
|
value uniform 0;
|
|
}
|
|
rightWall
|
|
{
|
|
type alphaContactAngle;
|
|
thetaProperties
|
|
(
|
|
( water air ) 90 0 0 0
|
|
( oil air ) 90 0 0 0
|
|
( mercury air ) 90 0 0 0
|
|
( water oil ) 90 0 0 0
|
|
( water mercury ) 90 0 0 0
|
|
( oil mercury ) 90 0 0 0
|
|
);
|
|
value uniform 1;
|
|
}
|
|
lowerWall
|
|
{
|
|
type alphaContactAngle;
|
|
thetaProperties
|
|
(
|
|
( water air ) 90 0 0 0
|
|
( oil air ) 90 0 0 0
|
|
( mercury air ) 90 0 0 0
|
|
( water oil ) 90 0 0 0
|
|
( water mercury ) 90 0 0 0
|
|
( oil mercury ) 90 0 0 0
|
|
);
|
|
value uniform 0;
|
|
}
|
|
atmosphere
|
|
{
|
|
type inletOutlet;
|
|
inletValue uniform 1;
|
|
value uniform 1;
|
|
}
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|