to support additional movers in a more modular fashion so that they can be loaded individually.
43 lines
1.0 KiB
C++
43 lines
1.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
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object dynamicMeshDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
mover
|
|
{
|
|
type motionSolver;
|
|
|
|
libs ("libfvMotionSolvers.so");
|
|
|
|
motionSolver velocityComponentLaplacian;
|
|
|
|
component x;
|
|
diffusivity directional (1 200 0);
|
|
}
|
|
|
|
|
|
topoChanger
|
|
{
|
|
type meshToMesh;
|
|
|
|
libs ("libmeshToMeshTopoChanger.so");
|
|
|
|
times (1e-5 2e-5);
|
|
|
|
timeDelta 1e-9;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|