ENH: reactingParcelFoam - made film region mesh available for postProcess

This commit is contained in:
Andrew Heather 2020-03-26 21:26:25 +00:00
parent 5265a87223
commit af34e61ef7
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,28 @@
#include "createMesh.H"
IOdictionary filmDict
(
IOobject
(
"surfaceFilmProperties",
runTime.constant(),
runTime,
IOobject::MUST_READ,
IOobject::NO_WRITE,
false
)
);
const word filmRegionName = filmDict.get<word>("region");
fvMesh filmMesh
(
IOobject
(
filmRegionName,
runTime.timeName(),
runTime,
IOobject::MUST_READ
)
);

View File

@ -70,6 +70,7 @@ int main(int argc, char *argv[])
" and surface film modelling."
);
#define CREATE_MESH createMeshesPostProcess.H
#include "postProcess.H"
#include "addCheckCaseOptions.H"