From 83b8032dccd01b0965c8d7ed640165461763af59 Mon Sep 17 00:00:00 2001 From: Johan Roenby <johan.roenby@gmail.com> Date: Tue, 12 Jun 2018 14:01:25 +0200 Subject: [PATCH] TUT: Modified tutorials and added cyclic test case. --- .../interIsoFoam/damBreak/system/fvSolution | 4 +- .../interIsoFoam/damBreakWithObstacle/Allrun | 6 +- .../constant/dynamicMeshDict | 2 +- .../damBreakWithObstacle/system/fvSolution | 2 +- .../discInConstantFlow/system/blockMeshDict | 4 +- .../discInConstantFlowCyclicBCs/0.orig/U | 47 ++++++++ .../0.orig/alpha.water | 45 ++++++++ .../discInConstantFlowCyclicBCs/0.orig/p_rgh | 45 ++++++++ .../discInConstantFlowCyclicBCs/Allclean | 7 ++ .../discInConstantFlowCyclicBCs/Allrun | 12 ++ .../constant/dynamicMeshDict | 20 ++++ .../discInConstantFlowCyclicBCs/constant/g | 21 ++++ .../constant/transportProperties | 36 ++++++ .../constant/turbulenceProperties | 20 ++++ .../system/blockMeshDict | 109 ++++++++++++++++++ .../system/controlDict | 55 +++++++++ .../system/decomposeParDict | 44 +++++++ .../system/fvSchemes | 51 ++++++++ .../system/fvSolution | 86 ++++++++++++++ .../system/setAlphaFieldDict | 23 ++++ .../standingWave/constant/transportProperties | 2 +- .../standingWave/system/blockMeshDict | 4 +- .../standingWave/system/fvSolution | 11 +- 23 files changed, 639 insertions(+), 17 deletions(-) create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/U create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/alpha.water create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/p_rgh create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/Allclean create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/Allrun create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/dynamicMeshDict create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/g create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/transportProperties create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/turbulenceProperties create mode 100644 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/blockMeshDict create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/controlDict create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/decomposeParDict create mode 100644 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/fvSchemes create mode 100644 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/fvSolution create mode 100755 tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/setAlphaFieldDict diff --git a/tutorials/multiphase/interIsoFoam/damBreak/system/fvSolution b/tutorials/multiphase/interIsoFoam/damBreak/system/fvSolution index 0a189fa1241..596b3204f2a 100644 --- a/tutorials/multiphase/interIsoFoam/damBreak/system/fvSolution +++ b/tutorials/multiphase/interIsoFoam/damBreak/system/fvSolution @@ -26,7 +26,9 @@ solvers clip true; nAlphaSubCycles 1; - cAlpha 1; + cAlpha 1; // Note: cAlpha is not used by isoAdvector but must + // be specified because interfacePropertes object + // reads it during construction. } "pcorr.*" diff --git a/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/Allrun b/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/Allrun index f59721c39c9..3c6ac726418 100755 --- a/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/Allrun +++ b/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/Allrun @@ -10,8 +10,8 @@ runApplication blockMesh runApplication topoSet runApplication subsetMesh -overwrite c0 -patch walls runApplication setFields -#runApplication decomposePar -#runParallel `getApplication` -runApplication `getApplication` +runApplication decomposePar +runParallel `getApplication` +#runApplication `getApplication` #------------------------------------------------------------------------------ diff --git a/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/constant/dynamicMeshDict b/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/constant/dynamicMeshDict index 7acf1ce97a6..eb61c253db6 100644 --- a/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/constant/dynamicMeshDict +++ b/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/constant/dynamicMeshDict @@ -37,7 +37,7 @@ nBufferLayers 1; maxRefinement 2; // Stop refinement if maxCells reached -maxCells 15000000; +maxCells 1500000; // Flux field and corresponding velocity field. Fluxes on changed // faces get recalculated by interpolating the velocity. Use 'none' diff --git a/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/system/fvSolution b/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/system/fvSolution index fda530bd5ba..62559f06a81 100644 --- a/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/system/fvSolution +++ b/tutorials/multiphase/interIsoFoam/damBreakWithObstacle/system/fvSolution @@ -19,7 +19,7 @@ solvers { "alpha.water.*" { - isoFaceTol 1e-6; + isoFaceTol 1e-10; surfCellTol 1e-6; nAlphaBounds 3; snapTol 1e-12; diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlow/system/blockMeshDict b/tutorials/multiphase/interIsoFoam/discInConstantFlow/system/blockMeshDict index 8a1a235e520..37105ff03bf 100644 --- a/tutorials/multiphase/interIsoFoam/discInConstantFlow/system/blockMeshDict +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlow/system/blockMeshDict @@ -19,8 +19,8 @@ scale 1; L 5; nx 100; -y1 -.5; -y2 .5; +y1 -.05; +y2 .05; ny 1; H 3; diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/U b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/U new file mode 100755 index 00000000000..b4570e1f9b4 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/U @@ -0,0 +1,47 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + location "0"; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (-.2 0 -.05); + +boundaryField +{ + right + { + type cyclic; + } + left + { + type cyclic; + } + top + { + type cyclic; + } + bottom + { + type cyclic; + } + + "(front|back)" + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/alpha.water b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/alpha.water new file mode 100755 index 00000000000..7004cf92344 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/alpha.water @@ -0,0 +1,45 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object alpha.water; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 0 0 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + right + { + type cyclic; + } + left + { + type cyclic; + } + top + { + type cyclic; + } + bottom + { + type cyclic; + } + "(front|back)" + { + type empty; + } +} + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/p_rgh b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/p_rgh new file mode 100755 index 00000000000..cc2ca445673 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/0.orig/p_rgh @@ -0,0 +1,45 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p_rgh; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [1 -1 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + right + { + type cyclic; + } + left + { + type cyclic; + } + top + { + type cyclic; + } + bottom + { + type cyclic; + } + "(front|back)" + { + type empty; + } +} + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/Allclean b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/Allclean new file mode 100755 index 00000000000..e2f275d9fd6 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/Allclean @@ -0,0 +1,7 @@ +#!/bin/sh +cd ${0%/*} || exit 1 # Run from this directory +. $WM_PROJECT_DIR/bin/tools/CleanFunctions # Tutorial clean functions + +cleanCase0 + +#------------------------------------------------------------------------------ diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/Allrun b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/Allrun new file mode 100755 index 00000000000..4abdc78d004 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/Allrun @@ -0,0 +1,12 @@ +#!/bin/sh +cd ${0%/*} || exit 1 # Run from this directory +. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions + +restore0Dir + +runApplication blockMesh +runApplication setAlphaField + +runApplication $(getApplication) + +#------------------------------------------------------------------------------ diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/dynamicMeshDict b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/dynamicMeshDict new file mode 100755 index 00000000000..80b68543306 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/dynamicMeshDict @@ -0,0 +1,20 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object dynamicMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dynamicFvMesh staticFvMesh; + + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/g b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/g new file mode 100755 index 00000000000..048d630dce2 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/g @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class uniformDimensionedVectorField; + location "constant"; + object g; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -2 0 0 0 0]; +value ( 0 0 -9.81 ); + + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/transportProperties b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/transportProperties new file mode 100755 index 00000000000..53dd43b4a4d --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/transportProperties @@ -0,0 +1,36 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + + +phases (water air); + +water +{ + transportModel Newtonian; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; +} + +air +{ + transportModel Newtonian; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; +} + +sigma sigma [ 1 0 -2 0 0 0 0 ] 0.00; + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/turbulenceProperties b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/turbulenceProperties new file mode 100755 index 00000000000..f903d8e21ec --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/constant/turbulenceProperties @@ -0,0 +1,20 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType laminar; + + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/blockMeshDict b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/blockMeshDict new file mode 100644 index 00000000000..b3c8c15c2b6 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/blockMeshDict @@ -0,0 +1,109 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +convertToMeters 1; + +L 1; +nx 50; + +y1 -.05; +y2 .05; +ny 1; + +H 1; +nz 50; + +vertices +( + (0 $y1 0) + ($L $y1 0) + ($L $y2 0) + (0 $y2 0) + (0 $y1 $H) + ($L $y1 $H) + ($L $y2 $H) + (0 $y2 $H) +); + +blocks +( + hex (0 1 2 3 4 5 6 7) ($nx $ny $nz) simpleGrading (1 1 1) +); + +edges +( +); + +boundary +( + left + { + type cyclic; + neighbourPatch right; + faces + ( + (0 4 7 3) + ); + } + right + { + type cyclic; + neighbourPatch left; + faces + ( + (1 2 6 5) + ); + } + top + { + type cyclic; + neighbourPatch bottom; + faces + ( + (4 5 6 7) + ); + } + bottom + { + type cyclic; + neighbourPatch top; + faces + ( + (0 3 2 1) + ); + } + front + { + type empty; + faces + ( + (0 1 5 4) + ); + } + back + { + type empty; + faces + ( + (2 3 7 6) + ); + } +); + +mergePatchPairs +( +); + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/controlDict b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/controlDict new file mode 100755 index 00000000000..522cb08b794 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/controlDict @@ -0,0 +1,55 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application interIsoFoam; + +startFrom startTime; + +startTime 0; + +stopAt endTime; + +endTime 20; + +deltaT 0.001; + +writeControl adjustableRunTime; + +writeInterval .5; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable yes; + +adjustTimeStep yes; + +maxCo 0.5; +maxAlphaCo 0.5; + +maxDeltaT 1; + + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/decomposeParDict b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/decomposeParDict new file mode 100755 index 00000000000..d8f4b26e99d --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/decomposeParDict @@ -0,0 +1,44 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 1; + +method simple; + +simpleCoeffs +{ + n ( 2 1 2 ); + delta 0.001; +} + +hierarchicalCoeffs +{ + n ( 1 1 1 ); + delta 0.001; + order xyz; +} + +manualCoeffs +{ + dataFile ""; +} + +distributed no; + +roots ( ); + + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/fvSchemes b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/fvSchemes new file mode 100644 index 00000000000..cd951fd6e4d --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/fvSchemes @@ -0,0 +1,51 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: 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 +{ + div(rhoPhi,U) Gauss linearUpwind grad(U); + div(phi,alpha) Gauss vanLeer; + div(phirb,alpha) Gauss linear; + div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/fvSolution b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/fvSolution new file mode 100644 index 00000000000..16066726eac --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/fvSolution @@ -0,0 +1,86 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + + "alpha.water.*" + { + isoFaceTol 1e-6; + surfCellTol 1e-6; + snapTol 1e-10; + nAlphaBounds 3; + clip true; + + nAlphaCorr 2; + nAlphaSubCycles 1; + cAlpha 1; + + MULESCorr yes; + nLimiterIter 3; + + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-8; + relTol 0; + } + + "pcorr.*" + { + solver PCG; + preconditioner DIC; + tolerance 1e-10; + relTol 0; + } + + p_rgh + { + solver PCG; + preconditioner DIC; + tolerance 1e-07; + relTol 0.05; + } + + p_rghFinal + { + $p_rgh; + tolerance 1e-07; + relTol 0; + } + + U + { + prescribedU true; + + solver PBiCG; + preconditioner DILU; + tolerance 1e-06; + relTol 0; + } +} + + +PIMPLE +{ + frozenFlow yes; + momentumPredictor no; + nCorrectors -1; + nNonOrthogonalCorrectors -1; + pRefCell 0; + pRefValue 0; +} + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/setAlphaFieldDict b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/setAlphaFieldDict new file mode 100755 index 00000000000..7b5498bba04 --- /dev/null +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlowCyclicBCs/system/setAlphaFieldDict @@ -0,0 +1,23 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: plus | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object setAlphaFieldDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +field "alpha.water"; +type cylinder; +direction (0 1 0); +radius 0.15; +centre (.5 0 .75); + +// ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/standingWave/constant/transportProperties b/tutorials/multiphase/interIsoFoam/standingWave/constant/transportProperties index f7055c5a380..2199114cc1e 100644 --- a/tutorials/multiphase/interIsoFoam/standingWave/constant/transportProperties +++ b/tutorials/multiphase/interIsoFoam/standingWave/constant/transportProperties @@ -32,6 +32,6 @@ air rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.00; +sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/interIsoFoam/standingWave/system/blockMeshDict b/tutorials/multiphase/interIsoFoam/standingWave/system/blockMeshDict index 2037c3acf07..254cda869b6 100644 --- a/tutorials/multiphase/interIsoFoam/standingWave/system/blockMeshDict +++ b/tutorials/multiphase/interIsoFoam/standingWave/system/blockMeshDict @@ -19,8 +19,8 @@ scale 1; L 1; nx 50; -y1 -.01; -y2 .01; +y1 -.005; +y2 .005; ny 1; H 1; diff --git a/tutorials/multiphase/interIsoFoam/standingWave/system/fvSolution b/tutorials/multiphase/interIsoFoam/standingWave/system/fvSolution index 993e09cc7ca..d1a7ac6aed3 100644 --- a/tutorials/multiphase/interIsoFoam/standingWave/system/fvSolution +++ b/tutorials/multiphase/interIsoFoam/standingWave/system/fvSolution @@ -20,9 +20,9 @@ solvers "alpha.*" { - isoFaceTol 1e-6; + isoFaceTol 1e-10; surfCellTol 1e-6; - nAlphaBounds 2; + nAlphaBounds 3; snapTol 1e-12; clip true; @@ -34,7 +34,7 @@ solvers { solver PCG; preconditioner DIC; - tolerance 1e-10; + tolerance 1e-8; relTol 0; } @@ -49,7 +49,7 @@ solvers p_rghFinal { $p_rgh; - tolerance 1e-07; + tolerance 1e-09; relTol 0; } @@ -57,7 +57,7 @@ solvers { solver PBiCG; preconditioner DILU; - tolerance 1e-06; + tolerance 1e-08; relTol 0; } } @@ -66,7 +66,6 @@ PIMPLE { momentumPredictor no; nCorrectors 3; - nOuterCorrectors 1; nNonOrthogonalCorrectors 0; pRefCell 0; pRefValue 0; -- GitLab