Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*--------------------------------*- C++ -*----------------------------------*\
- | ========= | |
- | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
- | \\ / O peration | Version: v2206 |
- | \\ / A nd | Website: 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 1;
- boundaryField
- {
- walls
- {
- type zeroGradient;
- }
- outlet
- {
- type zeroGradient;
- }
- inlet
- {
- type fixedValue;
- value uniform 1;
- }
- inlet2
- {
- type fixedValue;
- value uniform 0.0;
- }
- back
- {
- type empty;
- }
- front
- {
- type empty;
- }
- symmetry
- {
- type symmetry;
- }
- }
- // ************************************************************************* //
- /*--------------------------------*- C++ -*----------------------------------*\
- | ========= | |
- | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
- | \\ / O peration | Version: v2206 |
- | \\ / A nd | Website: 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
- {
- inlet
- {
- type zeroGradient;
- }
- inlet2
- {
- type zeroGradient;
- }
- outlet
- {
- type totalPressure;
- p0 uniform 0;
- }
- walls
- {
- type fixedFluxPressure;
- }
- back
- {
- type empty;
- }
- front
- {
- type empty;
- }
- symmetry
- {
- type symmetry;
- }
- }
- // ************************************************************************* //
- /*--------------------------------*- C++ -*----------------------------------*\
- | ========= | |
- | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
- | \\ / O peration | Version: v2206 |
- | \\ / A nd | Website: www.openfoam.com |
- | \\/ M anipulation | |
- \*---------------------------------------------------------------------------*/
- FoamFile
- {
- version 2.0;
- format ascii;
- class volVectorField;
- object U;
- }
- // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
- dimensions [0 1 -1 0 0 0 0];
- internalField uniform (0.183 0 0);
- boundaryField
- {
- walls
- {
- type noSlip;
- }
- inlet
- {
- type fixedValue;
- value uniform (0.183 0 0);
- }
- outlet
- {
- type inletOutlet;
- inletValue uniform (0 0 0);
- value uniform ( 0 0 0);
- }
- inlet2
- {
- type fixedValue;
- value uniform (0 0.001 0);
- }
- back
- {
- type empty;
- }
- front
- {
- type empty;
- }
- symmetry
- {
- type symmetry;
- }
- }
- // ************************************************************************* //
- /*--------------------------------*- C++ -*----------------------------------*\
- | ========= | |
- | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
- | \\ / O peration | Version: v2206 |
- | \\ / A nd | Website: www.openfoam.com |
- | \\/ M anipulation | |
- \*---------------------------------------------------------------------------*/
- FoamFile
- {
- version 2.0;
- format ascii;
- class dictionary;
- 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;
- }
- // ************************************************************************* //
- /*--------------------------------*- C++ -*----------------------------------*\
- | ========= | |
- | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
- | \\ / O peration | Version: v2206 |
- | \\ / A nd | Website: www.openfoam.com |
- | \\/ M anipulation | |
- \*---------------------------------------------------------------------------*/
- FoamFile
- {
- version 2.0;
- format ascii;
- class dictionary;
- object fvSolution;
- }
- // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
- solvers
- {
- "alpha.water.*"
- {
- nAlphaCorr 2;
- nAlphaSubCycles 1;
- cAlpha 1;
- MULESCorr yes;
- nLimiterIter 5;
- solver smoothSolver;
- smoother symGaussSeidel;
- tolerance 1e-06;
- relTol 0;
- }
- "pcorr.*"
- {
- solver GAMG;
- smoother symGaussSeidel;
- tolerance 1e-5;
- relTol 0;
- }
- p_rgh
- {
- solver GAMG;
- smoother symGaussSeidel;
- tolerance 1e-5;
- relTol 0.05;
- }
- p_rghFinal
- {
- $p_rgh;
- relTol 0;
- }
- U
- {
- solver smoothSolver;
- smoother symGaussSeidel;
- tolerance 1e-06;
- relTol 0;
- }
- }
- PIMPLE
- {
- momentumPredictor no;
- nOuterCorrectors 1;
- nCorrectors 3;
- nNonOrthogonalCorrectors 0;
- }
- relaxationFactors
- {
- equations
- {
- ".*" 0.8;
- }
- }
- // ************************************************************************* //
- Check Mesh
- Create time
- Create mesh for time = 0
- Time = 0
- Mesh stats
- points: 50588
- internal points: 0
- faces: 171633
- internal faces: 72267
- cells: 48780
- faces per cell: 5
- boundary patches: 7
- point zones: 0
- face zones: 0
- cell zones: 0
- Overall number of cells of each type:
- hexahedra: 0
- prisms: 48780
- wedges: 0
- pyramids: 0
- tet wedges: 0
- tetrahedra: 0
- polyhedra: 0
- Checking topology...
- Boundary definition OK.
- Cell to face addressing OK.
- Point usage OK.
- Upper triangular ordering OK.
- Face vertices OK.
- Number of regions: 1 (OK).
- Checking patch topology for multiply connected surfaces...
- Patch Faces Points Surface topology
- front 48780 25294 ok (non-closed singly connected)
- back 48780 25294 ok (non-closed singly connected)
- symmetry 652 1306 ok (non-closed singly connected)
- walls 800 1606 ok (non-closed singly connected)
- inlet2 337 676 ok (non-closed singly connected)
- outlet 12 26 ok (non-closed singly connected)
- inlet 5 12 ok (non-closed singly connected)
- Checking faceZone topology for multiply connected surfaces...
- No faceZones found.
- Checking basic cellZone addressing...
- No cellZones found.
- Checking geometry...
- Overall domain bounding box (0 -0.00345 -0.001) (0.13 0.00655 0)
- Mesh has 2 geometric (non-empty/wedge) directions (1 1 0)
- Mesh has 2 solution (non-empty) directions (1 1 0)
- All edges aligned with or perpendicular to non-empty directions.
- Boundary openness (4.31142e-18 1.15663e-16 -9.28512e-16) OK.
- Max cell openness = 2.1593e-16 OK.
- Max aspect ratio = 2.09288 OK.
- Minimum face area = 9.08191e-10. Maximum face area = 1.11361e-06. Face area magnitudes OK.
- Min volume = 9.08191e-13. Max volume = 3.85489e-10. Total volume = 4.4075e-07. Cell volumes OK.
- Mesh non-orthogonality Max: 28.3491 average: 3.61077
- Non-orthogonality check OK.
- Face pyramids OK.
- Max skewness = 0.364019 OK.
- Coupled point location match (average 0) OK.
- Mesh OK.
- End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement