This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/mesh/moveDynamicMesh/movingCylinders/constant/dynamicMeshDict
2018-06-01 18:11:37 +02:00

71 lines
1.9 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 4.1 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object dynamicMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// dynamicFvMesh staticFvMesh;
dynamicFvMesh multiTopoBodyFvMesh;
multiTopoBodyFvMeshCoeffs
{
bodies
(
frontCyl
{
movingCells cyl1;
layerFaces
(
topLayerCyl1
botLayerCyl1
);
solidBodyMotionFunction linearOscillation;
linearOscillationCoeffs
{
amplitude (0 0.028 0);
period 2;
}
minThickness 0.0015;
maxThickness 0.004;
invertMask true;
}
backCyl
{
movingCells cyl2;
layerFaces
(
topLayerCyl2
botLayerCyl2
);
solidBodyMotionFunction linearOscillation;
linearOscillationCoeffs
{
amplitude (0 -0.028 0);
period 3;
}
minThickness 0.0015;
maxThickness 0.004;
invertMask true;
}
);
}
// ************************************************************************* //