diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/caseInfo b/tutorials/lagrangian/reactingParcelFoam/filter/system/caseInfo new file mode 100644 index 0000000000..7abb23ad91 --- /dev/null +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/caseInfo @@ -0,0 +1,68 @@ +caseInfo1 +{ + type caseInfo; + libs (utilityFunctionObjects); + + writeControl writeTime; + + writeFormat json; + + dictionaries + { + fvSolution + { + name "fvSolution"; + + // include all entries by default + } + timeScheme + { + name "fvSchemes"; + + include + ( + "/ddtSchemes/default" + ); + } + turbulence + { + name "turbulenceProperties"; + + // include all entries by default + } + controlDict + { + path "/controlDict"; + + include + ( + "application" + "deltaT" + "startTime" + "endTime" + ); + } + field_p + { + path "0/p"; // note: master proc for parallel + + include + ( + "boundaryField/inlet/type" + "boundaryField/outlet/type" + ); + } + field_U + { + path "0/U"; // note: master proc for parallel + + include + ( + "boundaryField/inlet/type" + "boundaryField/outlet/type" + ); + } + } + + functionObjects (sample1); +} diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/controlDict b/tutorials/lagrangian/reactingParcelFoam/filter/system/controlDict index 30654c5c69..b5f2dffe32 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/controlDict +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/controlDict @@ -58,6 +58,7 @@ functions #include "vtkCloud" #include "vtkWrite" #include "pressureDifference" + #include "caseInfo" }