mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: reactingParcelFoam - made film region mesh available for postProcess
This commit is contained in:
@ -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
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
@ -70,6 +70,7 @@ int main(int argc, char *argv[])
|
|||||||
" and surface film modelling."
|
" and surface film modelling."
|
||||||
);
|
);
|
||||||
|
|
||||||
|
#define CREATE_MESH createMeshesPostProcess.H
|
||||||
#include "postProcess.H"
|
#include "postProcess.H"
|
||||||
|
|
||||||
#include "addCheckCaseOptions.H"
|
#include "addCheckCaseOptions.H"
|
||||||
|
|||||||
Reference in New Issue
Block a user