diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement index 8b3b165475..a4b174dfdd 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement @@ -10,14 +10,13 @@ FoamFile version 2.0; format ascii; class volVectorField; - location "0.1"; + location "0"; object cellDisplacement; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 0 0 0 0 0]; - internalField uniform (0 0 0); boundaryField @@ -29,30 +28,16 @@ boundaryField value uniform (0 0 0); } - walls - { - type cellMotion; - value uniform (0 0 0); - } - hole + "(walls|hole|left1|right1)" { type cellMotion; value uniform (0 0 0); } + frontAndBack { type empty; } - left1 - { - type cellMotion; - value uniform (0 0 0); - } - right1 - { - type cellMotion; - value uniform (0 0 0); - } } diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/Allclean b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/Allclean index ac149d692c..3f55a99486 100755 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/Allclean +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/Allclean @@ -4,7 +4,6 @@ cd "${0%/*}" || exit # Run from this directory #------------------------------------------------------------------------------ cleanCase0 - rm -f constant/polyMesh/boundary rm -f constant/polyMesh/zoneID diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/Allrun b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/Allrun index 7c0ade4cfa..13ec3b3ddb 100755 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/Allrun +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/Allrun @@ -5,8 +5,6 @@ cd "${0%/*}" || exit # Run from this directory ./Allrun.pre -# Run it for a bit - # Serial #runApplication $(getApplication) diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/README.txt b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/README.txt deleted file mode 100644 index 2b8ef391a7..0000000000 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/README.txt +++ /dev/null @@ -1,4 +0,0 @@ -Transient, moving mesh ----------------------- - -Simple testcase for testing mesh motion diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/dynamicMeshDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/dynamicMeshDict index a8e66875c8..293b0c7997 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/dynamicMeshDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/dynamicMeshDict @@ -14,11 +14,11 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dynamicFvMesh dynamicOversetFvMesh; +dynamicFvMesh dynamicOversetFvMesh; motionSolverLibs (fvMotionSolvers); -solver displacementLaplacian; +solver displacementLaplacian; displacementLaplacianCoeffs { diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/transportProperties b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/transportProperties index 75cbd48345..043fd0ab53 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/transportProperties +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/constant/transportProperties @@ -10,30 +10,12 @@ FoamFile version 2.0; format ascii; class dictionary; + location "constant"; object transportProperties; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -DT DT [ 0 2 -1 0 0 0 0 ] 1; +DT 1; -transportModel Newtonian; - -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} // ************************************************************************* // diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict index db9a9a8c20..9553f08f51 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict @@ -51,7 +51,6 @@ vertices blocks ( hex (0 1 2 3 4 5 6 7) (18 18 1) simpleGrading (1 1 1) - hex (8 9 10 11 12 13 14 15) movingZone (20 20 1) simpleGrading (1 1 1) ); @@ -110,6 +109,7 @@ boundary (0 4 7 3) ); } + right1 { type patch; diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/decomposeParDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/decomposeParDict index 5e6a616b3d..d7ed6aae16 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/decomposeParDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/decomposeParDict @@ -16,7 +16,7 @@ FoamFile numberOfSubdomains 2; -method hierarchical; +method hierarchical; coeffs { diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSchemes b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSchemes index 103d5dbae2..c4ec6487db 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSchemes +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSchemes @@ -16,7 +16,7 @@ FoamFile ddtSchemes { - default Euler; //steadyState; + default Euler; } gradSchemes @@ -28,13 +28,6 @@ gradSchemes divSchemes { default none; - div(phi,U) bounded Gauss limitedLinearV 1; - div(phi,k) bounded Gauss limitedLinear 1; - div(phi,epsilon) bounded Gauss limitedLinear 1; - div(phi,R) bounded Gauss limitedLinear 1; - div(R) Gauss linear; - div(phi,nuTilda) bounded Gauss limitedLinear 1; - div((nuEff*dev(T(grad(U))))) Gauss linear; } laplacianSchemes diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSolution b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSolution index 1e1c93a885..2af913c5bf 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSolution +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/fvSolution @@ -44,29 +44,15 @@ solvers SIMPLE { - nNonOrthogonalCorrectors 0; //2; + nNonOrthogonalCorrectors 0; } PIMPLE { - correctPhi yes; nOuterCorrectors 2; nCorrectors 1; nNonOrthogonalCorrectors 0; } -relaxationFactors -{ - fields - { - p 0.3; - } - equations - { - U 0.7; - k 0.7; - omega 0.7; - } -} // ************************************************************************* //