diff --git a/etc/caseDicts/postProcessing/numerical/residuals b/etc/caseDicts/postProcessing/numerical/solverInfo similarity index 92% rename from etc/caseDicts/postProcessing/numerical/residuals rename to etc/caseDicts/postProcessing/numerical/solverInfo index 46a4798a53..5a8e61f9a8 100644 --- a/etc/caseDicts/postProcessing/numerical/residuals +++ b/etc/caseDicts/postProcessing/numerical/solverInfo @@ -12,7 +12,7 @@ Description \*---------------------------------------------------------------------------*/ -#includeEtc "caseDicts/postProcessing/numerical/residuals.cfg" +#includeEtc "caseDicts/postProcessing/numerical/solverInfo.cfg" fields (p U); diff --git a/etc/caseDicts/postProcessing/numerical/residuals.cfg b/etc/caseDicts/postProcessing/numerical/solverInfo.cfg similarity index 91% rename from etc/caseDicts/postProcessing/numerical/residuals.cfg rename to etc/caseDicts/postProcessing/numerical/solverInfo.cfg index d081125c54..a514bc3f14 100644 --- a/etc/caseDicts/postProcessing/numerical/residuals.cfg +++ b/etc/caseDicts/postProcessing/numerical/solverInfo.cfg @@ -7,7 +7,7 @@ \*---------------------------------------------------------------------------*/ type solverInfo; //residuals; -libs ("libutilityFunctionObjects.so"); +libs (utilityFunctionObjects); writeControl timeStep; writeInterval 1; diff --git a/tutorials/basic/laplacianFoam/flange/0/T b/tutorials/basic/laplacianFoam/flange/0/T index a06c72f474..3bd059cae3 100644 --- a/tutorials/basic/laplacianFoam/flange/0/T +++ b/tutorials/basic/laplacianFoam/flange/0/T @@ -20,7 +20,7 @@ internalField uniform 273; boundaryField { - patch1 + "(patch1|patch3)" { type zeroGradient; } @@ -31,11 +31,6 @@ boundaryField value uniform 273; } - patch3 - { - type zeroGradient; - } - patch4 { type fixedValue; diff --git a/tutorials/basic/laplacianFoam/flange/Allclean b/tutorials/basic/laplacianFoam/flange/Allclean index 9a704a4f84..426e7ad42e 100755 --- a/tutorials/basic/laplacianFoam/flange/Allclean +++ b/tutorials/basic/laplacianFoam/flange/Allclean @@ -4,6 +4,5 @@ cd "${0%/*}" || exit # Run from this directory #------------------------------------------------------------------------------ cleanCase -rm -rf Fieldview #------------------------------------------------------------------------------ diff --git a/tutorials/basic/laplacianFoam/flange/Allrun b/tutorials/basic/laplacianFoam/flange/Allrun index 67d80e3f93..c545bfb938 100755 --- a/tutorials/basic/laplacianFoam/flange/Allrun +++ b/tutorials/basic/laplacianFoam/flange/Allrun @@ -3,18 +3,7 @@ cd "${0%/*}" || exit # Run from this directory . ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions #------------------------------------------------------------------------------ -runAnsysToFoam() -{ - if [ -f log.ansysToFoam ] - then - echo "ansysToFoam already run on $PWD: remove log file to re-run" - else - echo "Running ansysToFoam: converting mesh $1" - ansysToFoam $1 -scale $2 > log.ansysToFoam 2>&1 - fi -} - -runAnsysToFoam flange.ans 0.001 +runApplication ansysToFoam flange.ans -scale 0.001 runApplication $(getApplication) runApplication foamToEnsight -noZero runApplication foamToEnsightParts -noZero diff --git a/tutorials/basic/laplacianFoam/flange/system/fvSchemes b/tutorials/basic/laplacianFoam/flange/system/fvSchemes index b5646d6b67..acd0420293 100644 --- a/tutorials/basic/laplacianFoam/flange/system/fvSchemes +++ b/tutorials/basic/laplacianFoam/flange/system/fvSchemes @@ -22,7 +22,7 @@ ddtSchemes gradSchemes { - default Gauss linear; + default none; grad(T) Gauss linear; } 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; - } -} // ************************************************************************* // diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/fixedInlet b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/fixedInlet deleted file mode 100644 index 24715a9933..0000000000 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/fixedInlet +++ /dev/null @@ -1,15 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v1912 | -| \\ / A nd | Website: www.openfoam.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ - -inlet -{ - type fixedValue; - value $internalField; -} - -// ************************************************************************* // diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions index 7c08499fe2..acf5f1a9aa 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/include/initialConditions @@ -8,6 +8,5 @@ flowVelocity (1 0 0); pressure 0; -#inputMode merge // ************************************************************************* // diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/p b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/p index 4593cab6e3..ffcba7d6f8 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/p +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/0.orig/p @@ -29,19 +29,14 @@ boundaryField type overset; } - wall - { - type zeroGradient; - } - - inlet + "(wall|inlet)" { type zeroGradient; } outlet { - type fixedValue; //calculated; + type fixedValue; value $internalField; } diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/Allrun b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/Allrun index 8c92b17f92..78d5debbe7 100755 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/Allrun +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/Allrun @@ -5,7 +5,6 @@ cd "${0%/*}" || exit # Run from this directory ./Allrun.pre -# Run it for a bit runApplication $(getApplication) #------------------------------------------------------------------------------ diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict index a8e66875c8..293b0c7997 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/constant/dynamicMeshDict @@ -14,11 +14,11 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dynamicFvMesh dynamicOversetFvMesh; +dynamicFvMesh dynamicOversetFvMesh; motionSolverLibs (fvMotionSolvers); -solver displacementLaplacian; +solver displacementLaplacian; displacementLaplacianCoeffs { diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSchemes b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSchemes index 8609335895..031cc56357 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSchemes +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSchemes @@ -49,7 +49,7 @@ snGradSchemes oversetInterpolation { - method leastSquares;//inverseDistanc; + method leastSquares; } diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSolution b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSolution index dd87d2ab64..29678c7762 100644 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSolution +++ b/tutorials/basic/overPotentialFoam/cylinder/cylinderAndBackground/system/fvSolution @@ -21,7 +21,6 @@ solvers { solver PCG; preconditioner DIC; - tolerance 1e-06; relTol 0; maxIter 100; @@ -31,7 +30,7 @@ solvers { solver PBiCGStab; preconditioner DILU; - tolerance 1e-6; + tolerance 1e-06; relTol 0.01; } @@ -39,7 +38,6 @@ solvers { $Phi; } - } @@ -50,5 +48,4 @@ potentialFlow } - // ************************************************************************* // diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSchemes b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSchemes deleted file mode 100644 index 6055a1066f..0000000000 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSchemes +++ /dev/null @@ -1,58 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v1912 | -| \\ / A nd | Website: www.openfoam.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class dictionary; - location "system"; - object fvSchemes; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -ddtSchemes -{ - default Euler; -} - -gradSchemes -{ - default Gauss linear; -} - -divSchemes -{ - default none; - div(phi,U) Gauss limitedLinearV 1; - div(phi,k) Gauss upwind; - div(phi,epsilon) Gauss upwind; - div(phi,R) Gauss upwind; - div(R) Gauss linear; - div(phid,p) Gauss limitedLinear 1; - div(phi,K) Gauss limitedLinear 1; - div(phi,e) Gauss limitedLinear 1; - div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear; -} - -laplacianSchemes -{ - default Gauss linear limited corrected 0.5; -} - -interpolationSchemes -{ - default linear; -} - -snGradSchemes -{ - default corrected; -} - - -// ************************************************************************* // diff --git a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSolution b/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSolution deleted file mode 100644 index 9e70d82285..0000000000 --- a/tutorials/basic/overPotentialFoam/cylinder/cylinderMesh/system/fvSolution +++ /dev/null @@ -1,51 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v1912 | -| \\ / A nd | Website: www.openfoam.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class dictionary; - location "system"; - object fvSolution; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -solvers -{ - p - { - solver smoothSolver; - smoother symGaussSeidel; - tolerance 1e-12; - relTol 0; - } - - rho - { - solver PCG; - preconditioner DIC; - tolerance 1e-08; - relTol 0; - } - - "(U|e|k|epsilon|R)" - { - $p; - tolerance 1e-08; - relTol 0; - } -} - -PISO -{ - nCorrectors 2; - nNonOrthogonalCorrectors 2; -} - - -// ************************************************************************* // diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/controlDict b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/controlDict index d439dc6793..de23689044 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/controlDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/controlDict @@ -47,7 +47,7 @@ runTimeModifiable true; functions { #includeFunc MachNo - #includeFunc residuals + #includeFunc solverInfo } // ************************************************************************* // diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/residuals b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/solverInfo similarity index 92% rename from tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/residuals rename to tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/solverInfo index b466ee1e53..f6729c612a 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/residuals +++ b/tutorials/compressible/rhoPimpleFoam/RAS/aerofoilNACA0012/system/solverInfo @@ -12,7 +12,7 @@ Description \*---------------------------------------------------------------------------*/ -#includeEtc "caseDicts/postProcessing/numerical/residuals.cfg" +#includeEtc "caseDicts/postProcessing/numerical/solverInfo.cfg" fields (p U e k omega); diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/controlDict b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/controlDict index 643311ee8b..d0a89bbbb5 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/controlDict +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/controlDict @@ -47,7 +47,7 @@ runTimeModifiable true; functions { #includeFunc MachNo - #includeFunc residuals + #includeFunc solverInfo } // ************************************************************************* // diff --git a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/residuals b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/solverInfo similarity index 92% rename from tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/residuals rename to tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/solverInfo index b466ee1e53..f6729c612a 100644 --- a/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/residuals +++ b/tutorials/compressible/rhoSimpleFoam/aerofoilNACA0012/system/solverInfo @@ -12,7 +12,7 @@ Description \*---------------------------------------------------------------------------*/ -#includeEtc "caseDicts/postProcessing/numerical/residuals.cfg" +#includeEtc "caseDicts/postProcessing/numerical/solverInfo.cfg" fields (p U e k omega); diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/controlDict b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/controlDict index 670ceed734..55cd7426e7 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/controlDict +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/controlDict @@ -47,7 +47,7 @@ runTimeModifiable true; functions { - #includeFunc residuals + #includeFunc solverInfo #includeFunc streamlines } diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/residuals b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/solverInfo similarity index 92% rename from tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/residuals rename to tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/solverInfo index a4d515e670..e09c7219e4 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/residuals +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BenardCells/system/solverInfo @@ -12,7 +12,7 @@ Description \*---------------------------------------------------------------------------*/ -#includeEtc "caseDicts/postProcessing/numerical/residuals.cfg" +#includeEtc "caseDicts/postProcessing/numerical/solverInfo.cfg" writeControl writeTime; diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/controlDict.template b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/controlDict.template index 26c394ae79..9ef5cf127a 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/controlDict.template +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/controlDict.template @@ -46,7 +46,7 @@ runTimeModifiable true; functions { - #includeFunc residuals + #includeFunc solverInfo #includeFunc singleGraph #includeFunc probes } diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/residuals b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/solverInfo similarity index 92% rename from tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/residuals rename to tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/solverInfo index 350c9f7593..ef8f8dd79c 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/residuals +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/solverInfo @@ -12,7 +12,7 @@ Description \*---------------------------------------------------------------------------*/ -#includeEtc "caseDicts/postProcessing/numerical/residuals.cfg" +#includeEtc "caseDicts/postProcessing/numerical/solverInfo.cfg" fields (p sigma); diff --git a/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/controlDict b/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/controlDict index f46a91cc63..a654bc5014 100644 --- a/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/controlDict +++ b/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/controlDict @@ -31,7 +31,7 @@ writeControl adjustable; writeInterval 50; -purgeWrite 0; +purgeWrite 10; writeFormat binary; diff --git a/tutorials/multiphase/driftFluxFoam/RAS/mixerVessel2D/system/controlDict b/tutorials/multiphase/driftFluxFoam/RAS/mixerVessel2D/system/controlDict index 190ed10124..71a2847f1c 100644 --- a/tutorials/multiphase/driftFluxFoam/RAS/mixerVessel2D/system/controlDict +++ b/tutorials/multiphase/driftFluxFoam/RAS/mixerVessel2D/system/controlDict @@ -31,7 +31,7 @@ writeControl adjustable; writeInterval 0.25; -purgeWrite 0; +purgeWrite 10; writeFormat ascii; diff --git a/tutorials/multiphase/driftFluxFoam/RAS/tank3D/system/controlDict b/tutorials/multiphase/driftFluxFoam/RAS/tank3D/system/controlDict index 2414b5da8f..59db9821a5 100644 --- a/tutorials/multiphase/driftFluxFoam/RAS/tank3D/system/controlDict +++ b/tutorials/multiphase/driftFluxFoam/RAS/tank3D/system/controlDict @@ -31,7 +31,7 @@ writeControl runTime; writeInterval 50; -purgeWrite 0; +purgeWrite 10; writeFormat binary; diff --git a/tutorials/multiphase/interFoam/RAS/motorBike/system/controlDict b/tutorials/multiphase/interFoam/RAS/motorBike/system/controlDict index 209c3db8b6..9d67bc4ac3 100644 --- a/tutorials/multiphase/interFoam/RAS/motorBike/system/controlDict +++ b/tutorials/multiphase/interFoam/RAS/motorBike/system/controlDict @@ -28,11 +28,11 @@ endTime 2; deltaT 0.001; writeControl adjustable; + writeInterval 0.02; purgeWrite 0; - writeFormat binary; writePrecision 6; @@ -48,7 +48,9 @@ runTimeModifiable yes; adjustTimeStep yes; maxCo 0.5; + maxAlphaCo 0.5; + maxDeltaT 1; functions