openfoam/tutorials/mesh/moveDynamicMesh/bendJunction/constant/dynamicMeshDict
2024-12-24 11:17:31 +00:00

39 lines
1.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2412 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object dynamicMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dynamicFvMesh dynamicMotionSolverFvMesh;
motionSolverLibs (fvMotionSolvers);
//motionSolver displacementSBRStress;
//diffusivity uniform;
motionSolver displacementPointSmoothing;
displacementPointSmoothingCoeffs
{
// Use geometricElementTransform to maintain relative sizes
//pointSmoother geometricElementTransform;
//transformationParameter 0.667;
//nPointSmootherIter 10;
pointSmoother laplacian;
nPointSmootherIter 10;
}
// ************************************************************************* //