Skip to content
Snippets Groups Projects
Commit 79465dd4 authored by sergio's avatar sergio
Browse files

Adding rhoMin and rhoMax to rhoReactingFoam

parent cbcb4ada
Branches
Tags
1 merge request!121Merge develop into master for v1706 release
......@@ -113,3 +113,26 @@ volScalarField Qdot
);
#include "createMRF.H"
dimensionedScalar rhoMax
(
dimensionedScalar::lookupOrDefault
(
"rhoMax",
pimple.dict(),
dimDensity,
GREAT
)
);
dimensionedScalar rhoMin
(
dimensionedScalar::lookupOrDefault
(
"rhoMin",
pimple.dict(),
dimDensity,
0
)
);
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