Files
OpenFOAM-12/tutorials/modules/multiphaseEuler/LBend/system/blockMeshDict
Henry Weller cec0359871 solvers::multiphaseEuler: New solver module for Euler-Euler multiphase simulations
executed with foamRun for single region simulations of foamMultiRun for
multi-region simulations.  Replaces multiphaseEulerFoam and all the
corresponding tutorials have been updated and moved to
tutorials/modules/multiphaseEuler.

Class
    Foam::solvers::multiphaseEuler

Description
    Solver module for a system of any number of compressible fluid phases with a
    common pressure, but otherwise separate properties. The type of phase model
    is run time selectable and can optionally represent multiple species and
    in-phase reactions. The phase system is also run time selectable and can
    optionally represent different types of momentum, heat and mass transfer.

    Uses the flexible PIMPLE (PISO-SIMPLE) solution for time-resolved and
    pseudo-transient and steady simulations.

    Optional fvModels and fvConstraints are provided to enhance the simulation
    in many ways including adding various sources, Lagrangian
    particles, surface film etc. and constraining or limiting the solution.

SourceFiles
    multiphaseEuler.C

See also
    Foam::solvers::compressibleVoF
    Foam::solvers::fluidSolver
    Foam::solvers::incompressibleFluid
2022-11-03 14:49:56 +00:00

125 lines
2.1 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
vertices
(
( 0.0 0.0 -0.01)
( 0.04 0.0 -0.01)
( 0.04 0.15 -0.01)
( 0.0 0.15 -0.01)
( 0.0 0.0 0.01)
( 0.04 0.0 0.01)
( 0.04 0.15 0.01)
( 0.0 0.15 0.01)
( 0.04 0.0 -0.01)
( 0.5 0.0 -0.01)
( 0.5 0.04 -0.01)
( 0.04 0.04 -0.01)
( 0.04 0.0 0.01)
( 0.5 0.0 0.01)
( 0.5 0.04 0.01)
( 0.04 0.04 0.01)
);
blocks
(
hex (0 1 2 3 4 5 6 7) (16 60 1) simpleGrading (1 1 1)
hex (8 9 10 11 12 13 14 15) (180 16 1) simpleGrading (1 1 1)
);
boundary
(
inlet
{
type patch;
faces
(
(3 7 6 2)
);
}
wall1
{
type wall;
faces
(
(0 4 7 3)
(1 5 4 0)
);
}
wall_merge
{
type wall;
faces
(
(2 6 5 1)
);
}
frontAndBack1
{
type empty;
faces
(
(0 3 2 1)
(4 5 6 7)
);
}
wall2
{
type wall;
faces
(
(11 15 14 10)
(9 13 12 8)
);
}
wall_merge2
{
type wall;
faces
(
(8 12 15 11)
);
}
outlet
{
type patch;
faces
(
(10 14 13 9)
);
}
frontAndBack2
{
type empty;
faces
(
(8 11 10 9)
(12 13 14 15)
);
}
);
mergePatchPairs
(
(wall_merge wall_merge2)
);
// ************************************************************************* //