Multi-species, mass-transfer and reaction support and multi-phase structure provided by William Bainbridge. Integration of the latest p-U and face-p_U algorithms with William's multi-phase structure is not quite complete due to design incompatibilities which needs further development. However the integration of the functionality is complete. The results of the tutorials are not exactly the same for the twoPhaseEulerFoam and reactingTwoPhaseEulerFoam solvers but are very similar. Further analysis in needed to ensure these differences are physical or to resolve them; in the meantime the twoPhaseEulerFoam solver will be maintained.
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class polyBoundaryMesh;
|
|
location "constant/polyMesh";
|
|
object boundary;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
4
|
|
(
|
|
inlet
|
|
{
|
|
type patch;
|
|
nFaces 30;
|
|
startFace 11770;
|
|
}
|
|
outlet
|
|
{
|
|
type patch;
|
|
nFaces 30;
|
|
startFace 11800;
|
|
}
|
|
walls
|
|
{
|
|
type wall;
|
|
inGroups 1(wall);
|
|
nFaces 400;
|
|
startFace 11830;
|
|
}
|
|
frontAndBackPlanes
|
|
{
|
|
type empty;
|
|
inGroups 1(empty);
|
|
nFaces 12000;
|
|
startFace 12230;
|
|
}
|
|
)
|
|
|
|
// ************************************************************************* //
|