openfoam/tutorials/multiphase/potentialFreeSurfaceDyMFoam/oscillatingBox/0.orig/pointDisplacement
Andrew Heather e3796745ed CONFIG: Updated headers to v2106
Minor clean-up
2021-06-28 09:14:42 +01:00

69 lines
1.7 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2106 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class pointVectorField;
object pointDisplacement;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 0 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
freeSurface
{
type uniformFixedValue;
uniformValue (0 0 0);
}
leftWall
{
type fixedNormalSlip;
n (-1 0 0);
}
rightWall
{
type uniformFixedValue;
uniformValue (0 0 0);
}
bottomWall
{
type uniformFixedValue;
uniformValue (0 0 0);
}
floatingObject
{
type fixedNormalSlip;
n (1 0 0);
}
floatingObjectBottom
{
type oscillatingDisplacement;
amplitude (0 -0.05 0);
omega 6.2831853;
value uniform (0 0 0);
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //