28 lines
921 B
C++
28 lines
921 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: 12
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
object setWavesDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// Optional name of the volume fraction field
|
|
alpha alpha.water;
|
|
|
|
// Optional name of the velocity field
|
|
U U;
|
|
|
|
// Optional flag which indicates whether the alpha field is that of the liquid
|
|
// under the waves (true) or the gas over the waves (false)
|
|
liquid true;
|
|
|
|
|
|
// ************************************************************************* //
|