Skip to content
Snippets Groups Projects

Enabled postProcess on film region for reactingParcelFoam

Merged Andrew Heather requested to merge region-model-mesh into develop
5 files
+ 39
31
Compare changes
  • Side-by-side
  • Inline
Files
5
#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
)
);
Loading