Skip to content
Snippets Groups Projects
Commit af34e61e authored by Andrew Heather's avatar Andrew Heather
Browse files

ENH: reactingParcelFoam - made film region mesh available for postProcess

parent 5265a872
Branches
Tags
1 merge request!352Enabled postProcess on film region for reactingParcelFoam
#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
)
);
......@@ -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"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment