39 lines
1.3 KiB
C++
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;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|