Files
OpenFOAM-12/tutorials/multiphaseEuler/bubblePipe/system/blockMeshDict
2024-07-06 16:02:47 +01:00

93 lines
1.6 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 12
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
vertices
(
(0.0 0.0 -0.1)
(0.025 -2.2e-4 -0.1)
(0.025 2.2e-4 -0.1)
(0.0 0.0 -0.1)
(0.0 0.0 0.9)
(0.025 -2.2e-4 0.9)
(0.025 2.2e-4 0.9)
(0.0 0.0 0.9)
);
blocks
(
hex (0 1 2 3 4 5 6 7) (30 1 200) simpleGrading (0.375 1 1)
);
edges
();
boundary
(
inlet
{
type mappedInternal;
offset (0 0 0.05);
faces
(
(0 3 2 1)
);
}
outlet
{
type patch;
faces
(
(4 5 6 7)
);
}
walls
{
type wall;
faces
(
(1 2 6 5)
);
}
front
{
type wedge;
faces
(
(0 1 5 4)
);
}
back
{
type wedge;
faces
(
(2 3 7 6)
);
}
axis
{
type empty;
faces
(
(3 0 4 7)
);
}
);
// ************************************************************************* //