From ca23897c3a6ebdfddca7a9b72f5778013279a742 Mon Sep 17 00:00:00 2001 From: henry <Henry Weller h.weller@opencfd.co.uk> Date: Sun, 29 Jun 2008 11:43:39 +0100 Subject: [PATCH] New turorial case --- .../depthCharge2D/0/U | 36 ++++ .../depthCharge2D/0/alpha1.org | 34 ++++ .../depthCharge2D/0/pd.org | 34 ++++ .../depthCharge2D/Allrun | 12 ++ .../depthCharge2D/constant/LESProperties | 182 ++++++++++++++++++ .../constant/environmentalProperties | 27 +++ .../constant/polyMesh/blockMeshDict | 60 ++++++ .../depthCharge2D/constant/polyMesh/boundary | 34 ++++ .../constant/transportProperties | 39 ++++ .../depthCharge2D/system/controlDict | 53 +++++ .../depthCharge2D/system/fvSchemes | 64 ++++++ .../depthCharge2D/system/fvSolution | 126 ++++++++++++ .../depthCharge2D/system/setFieldsDict | 48 +++++ 13 files changed, 749 insertions(+) create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/0/U create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/0/alpha1.org create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/0/pd.org create mode 100755 tutorials/compressibleLesInterFoam/depthCharge2D/Allrun create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/constant/LESProperties create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/constant/environmentalProperties create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/constant/polyMesh/blockMeshDict create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/constant/polyMesh/boundary create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/constant/transportProperties create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/system/controlDict create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/system/fvSchemes create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/system/fvSolution create mode 100644 tutorials/compressibleLesInterFoam/depthCharge2D/system/setFieldsDict diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/0/U b/tutorials/compressibleLesInterFoam/depthCharge2D/0/U new file mode 100644 index 00000000000..d4e55f293fd --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/0/U @@ -0,0 +1,36 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + location "0"; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + walls + { + type fixedValue; + value uniform (0 0 0); + } + frontAndBack + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/0/alpha1.org b/tutorials/compressibleLesInterFoam/depthCharge2D/0/alpha1.org new file mode 100644 index 00000000000..f0a978580ee --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/0/alpha1.org @@ -0,0 +1,34 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object alpha1; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 0 0 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + walls + { + type zeroGradient; + } + + defaultFaces + { + type empty; + } +} + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/0/pd.org b/tutorials/compressibleLesInterFoam/depthCharge2D/0/pd.org new file mode 100644 index 00000000000..dd6d6631cad --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/0/pd.org @@ -0,0 +1,34 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object pd; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [1 -1 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + walls + { + type zeroGradient; + } + + defaultFaces + { + type empty; + } +} + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/Allrun b/tutorials/compressibleLesInterFoam/depthCharge2D/Allrun new file mode 100755 index 00000000000..35a6c662332 --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/Allrun @@ -0,0 +1,12 @@ +#!/bin/sh +# Source tutorial run functions +. $WM_PROJECT_DIR/bin/tools/RunFunctions + +# Get application name from directory +application="compressibleLesInterFoam" + +runApplication blockMesh +cp 0/alpha1.org 0/alpha1 +cp 0/pd.org 0/pd +runApplication setFields +runApplication $application diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/constant/LESProperties b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/LESProperties new file mode 100644 index 00000000000..976ee308c25 --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/LESProperties @@ -0,0 +1,182 @@ +/*---------------------------------------------------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 1.0 | +| \\ / A nd | Web: http://www.openfoam.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +FoamFile +{ + version 2.0; + format ascii; + + root ""; + case ""; + instance ""; + local ""; + + class dictionary; + object LESProperties; +} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +LESModel laminar; + +delta smooth; + +laminarCoeffs +{ +} + +oneEqEddyCoeffs +{ + ck 0.07; + ce 1.05; +} + +dynOneEqEddyCoeffs +{ + ce 1.05; + filter simple; +} + +locDynOneEqEddyCoeffs +{ + ce 1.05; + filter simple; +} + +SmagorinskyCoeffs +{ + ce 1.05; + ck 0.07; +} + +Smagorinsky2Coeffs +{ + ce 1.05; + ck 0.07; + cD2 0.02; +} + +spectEddyViscCoeffs +{ + ce 1.05; + cB 8.22; + cK1 0.83; + cK2 1.03; + cK3 4.75; + cK4 2.55; +} + +dynSmagorinskyCoeffs +{ + ce 1.05; + filter simple; +} + +mixedSmagorinskyCoeffs +{ + ce 1.05; + ck 0.07; + filter simple; +} + +dynMixedSmagorinskyCoeffs +{ + ce 1.05; + filter simple; +} + +LRRDiffStressCoeffs +{ + ce 1.05; + ck 0.09; + c1 1.8; + c2 0.6; +} + +DeardorffDiffStressCoeffs +{ + ce 1.05; + ck 0.09; + cm 4.13; +} + +SpalartAllmarasCoeffs +{ + alphaNut 1.5; + Cb1 0.1355; + Cb2 0.622; + Cw2 0.3; + Cw3 2; + Cv1 7.1; + CDES 0.65; + ck 0.07; +} + +cubeRootVolCoeffs +{ + deltaCoeff 1; +} + +PrandtlCoeffs +{ + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + smoothCoeffs + { + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + maxDeltaRatio 1.1; + } + Cdelta 0.158; +} + +vanDriestCoeffs +{ + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + smoothCoeffs + { + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + maxDeltaRatio 1.1; + } + Aplus 26; + Cdelta 0.158; +} + +smoothCoeffs +{ + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + maxDeltaRatio 1.1; +} + +kappa 0.4187; + +wallFunctionCoeffs +{ + E 9; +} + + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/constant/environmentalProperties b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/environmentalProperties new file mode 100644 index 00000000000..a5d1b7134ed --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/environmentalProperties @@ -0,0 +1,27 @@ +/*---------------------------------------------------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 1.0 | +| \\ / A nd | Web: http://www.openfoam.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +FoamFile +{ + version 2.0; + format ascii; + + root ""; + case ""; + instance ""; + local ""; + + class dictionary; + object environmentalProperties; +} + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +g g [0 1 -2 0 0 0 0] (0 -9.81 0); + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/constant/polyMesh/blockMeshDict b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/polyMesh/blockMeshDict new file mode 100644 index 00000000000..a717f78231b --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/polyMesh/blockMeshDict @@ -0,0 +1,60 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +convertToMeters 1; + +vertices +( + (0 0 0) + (1 0 0) + (1 2 0) + (0 2 0) + (0 0 0.1) + (1 0 0.1) + (1 2 0.1) + (0 2 0.1) +); + +blocks +( + hex (0 1 2 3 4 5 6 7) (80 160 1) simpleGrading (1 1 1) +); + +edges +( +); + +patches +( + wall walls + ( + (3 7 6 2) + (0 4 7 3) + (2 6 5 1) + (1 5 4 0) + ) + empty frontAndBack + ( + (0 3 2 1) + (4 5 6 7) + ) +); + +mergePatchPairs +( +); + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/constant/polyMesh/boundary b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/polyMesh/boundary new file mode 100644 index 00000000000..90bbf5d79b5 --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/polyMesh/boundary @@ -0,0 +1,34 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class polyBoundaryMesh; + location "constant/polyMesh"; + object boundary; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +2 +( + walls + { + type wall; + nFaces 480; + startFace 25360; + } + frontAndBack + { + type empty; + nFaces 25600; + startFace 25840; + } +) + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/constant/transportProperties b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/transportProperties new file mode 100644 index 00000000000..201e3b4946c --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/constant/transportProperties @@ -0,0 +1,39 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +phase1 //water +{ + transportModel Newtonian; + nu nu [0 2 -1 0 0 0 0] 1e-6; + rho rho [1 -3 0 0 0 0 0] 1000; + rho0 rho0 [1 -3 0 0 0 0 0] 1000; + psi psi [0 -2 2 0 0] 1e-5; +} + +phase2 //air +{ + transportModel Newtonian; + nu nu [0 2 -1 0 0 0 0] 1.589e-5; + rho rho [1 -3 0 0 0 0 0] 1; + rho0 rho0 [1 -3 0 0 0 0 0] 0; + psi psi [0 -2 2 0 0] 1e-5; +} + +pMin pMin [1 -1 -2 0 0 0 0] 1e4; + +sigma sigma [1 0 -2 0 0 0 0] 0.07; + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/system/controlDict b/tutorials/compressibleLesInterFoam/depthCharge2D/system/controlDict new file mode 100644 index 00000000000..0580c2dc55c --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/system/controlDict @@ -0,0 +1,53 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application lesInterFoam; + +startFrom latestTime; + +startTime 0; + +stopAt endTime; + +endTime 0.5; + +deltaT 1e-04; + +writeControl adjustableRunTime; + +writeInterval 5e-03; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 8; + +writeCompression compressed; + +timeFormat general; + +timePrecision 10; + +runTimeModifiable yes; + +adjustTimeStep yes; + +maxCo 0.25; + +maxDeltaT 1; + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/system/fvSchemes b/tutorials/compressibleLesInterFoam/depthCharge2D/system/fvSchemes new file mode 100644 index 00000000000..ee05b3ed1d2 --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/system/fvSchemes @@ -0,0 +1,64 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + div(rho*phi,U) Gauss upwind; //linear; + + div(phi,alpha) Gauss vanLeer; + div(phirb,alpha) Gauss interfaceCompression 1.0; + + div(phi,pd) Gauss upwind; //vanLeer; //linear; + + div(phi,k) Gauss vanLeer; + + div((nuEff*dev(grad(U).T()))) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear uncorrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default uncorrected; +} + +fluxRequired +{ + default no; + pd; + pcorr; + gamma; +} + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/system/fvSolution b/tutorials/compressibleLesInterFoam/depthCharge2D/system/fvSolution new file mode 100644 index 00000000000..f97cf54032e --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/system/fvSolution @@ -0,0 +1,126 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + pcorr PCG + { + preconditioner GAMG + { + tolerance 1e-5; + relTol 0; + + smoother DICGaussSeidel; + nPreSweeps 0; + nPostSweeps 2; + nBottomSweeps 2; + + cacheAgglomeration false; + nCellsInCoarsestLevel 10; + agglomerator faceAreaPair; + mergeLevels 1; + }; + + tolerance 1e-5; + relTol 0; + maxIter 100; + }; + + rho diagonal + {}; + + pd GAMG + { + tolerance 1e-7; + relTol 0.01; + + smoother DIC; //GaussSeidel; + nPreSweeps 0; + nPostSweeps 2; + nFinestSweeps 2; + + cacheAgglomeration true; + nCellsInCoarsestLevel 10; + agglomerator faceAreaPair; + mergeLevels 1; + }; + + pdFinal PCG + { + preconditioner GAMG + { + tolerance 1e-7; + relTol 0; + + nVcycles 2; + + smoother DICGaussSeidel; + nPreSweeps 2; + nPostSweeps 2; + nFinestSweeps 2; + + cacheAgglomeration true; + nCellsInCoarsestLevel 10; + agglomerator faceAreaPair; + mergeLevels 1; + }; + + tolerance 1e-7; + relTol 0; + maxIter 20; + }; + + U smoothSolver + { + smoother GaussSeidel; + tolerance 1e-6; + relTol 0; + nSweeps 1; + }; + + k PBiCG + { + preconditioner DILU; + tolerance 1e-08; + relTol 0; + }; + B PBiCG + { + preconditioner DILU; + tolerance 1e-08; + relTol 0; + }; + nuTilda PBiCG + { + preconditioner DILU; + tolerance 1e-08; + relTol 0; + }; +} + +PISO +{ + momentumPredictor no; + transSonic no; + nOuterCorrectors 3; + nCorrectors 1; + nNonOrthogonalCorrectors 0; + nAlphaCorr 1; + nAlphaSubCycles 1; + cGamma 1; +} + +// ************************************************************************* // diff --git a/tutorials/compressibleLesInterFoam/depthCharge2D/system/setFieldsDict b/tutorials/compressibleLesInterFoam/depthCharge2D/system/setFieldsDict new file mode 100644 index 00000000000..510871c44b3 --- /dev/null +++ b/tutorials/compressibleLesInterFoam/depthCharge2D/system/setFieldsDict @@ -0,0 +1,48 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object setFieldsDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +defaultFieldValues +( + volScalarFieldValue alpha1 1 + volScalarFieldValue pd 1e5 +); + +regions +( + sphereToCell + { + centre (0.5 0.5 0); + radius 0.1; + + fieldValues + ( + volScalarFieldValue alpha1 0 + volScalarFieldValue pd 10e5 + ); + } + + boxToCell + { + box (-10 1 -1) (10 10 1); + + fieldValues + ( + volScalarFieldValue alpha1 0 + ); + } +); + +// ************************************************************************* // -- GitLab