43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 3.2 |
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
|
| \\/ M anipulation | For copyright notice see file Copyright |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object dynamicMeshDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// dynamicFvMesh staticFvMesh;
|
|
dynamicFvMesh immersedBoundarySolidBodyMotionFvMesh;
|
|
|
|
immersedBoundarySolidBodyMotionFvMeshCoeffs
|
|
{
|
|
motionFunctions
|
|
(
|
|
ibCylinder
|
|
{
|
|
// solidBodyMotionFunction translation;
|
|
// translationCoeffs
|
|
// {
|
|
// velocity (0.1 0 0);
|
|
// }
|
|
|
|
solidBodyMotionFunction linearOscillation;
|
|
linearOscillationCoeffs
|
|
{
|
|
amplitude (0.5 0 0);
|
|
period 2.5;
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|