createIncompressibleRadiationModel: Allow specification of value only for rhoRef and CpRef

Patch provided by Daniel Jasinski: http://www.openfoam.org/mantisbt/view.php?id=1856
This commit is contained in:
Henry Weller 2015-10-30 14:01:20 +00:00
parent c6fe72c6ad
commit 469a8d85ca

View File

@ -21,12 +21,23 @@
runTime,
IOobject::MUST_READ,
IOobject::NO_WRITE,
false // do not register!
false // Do not register
)
);
dimensionedScalar rhoRef(transportProperties.lookup("rhoRef"));
dimensionedScalar CpRef(transportProperties.lookup("CpRef"));
dimensionedScalar rhoRef
(
"rhoRef",
dimDensity,
transportProperties
);
dimensionedScalar CpRef
(
"CpRef",
dimSpecificHeatCapacity,
transportProperties
);
rhoCpRef = rhoRef*CpRef;
}