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:
parent
04103b5277
commit
941117a1c4
1 changed files with 14 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue