thermalBaffle1DFvPatchScalarField: Changed name of "qr" relaxation factor to "qrRelaxation"
for consistency with externalWallHeatFluxTemperature boundary condition.
This commit is contained in:
@ -101,7 +101,7 @@ thermalBaffle1DFvPatchScalarField
|
||||
solidDict_(dict),
|
||||
solidPtr_(),
|
||||
qrPrevious_(p.size(), 0.0),
|
||||
qrRelaxation_(dict.lookupOrDefault<scalar>("relaxation", 1)),
|
||||
qrRelaxation_(dict.lookupOrDefault<scalar>("qrRelaxation", 1)),
|
||||
qrName_(dict.lookupOrDefault<word>("qr", "none"))
|
||||
{
|
||||
fvPatchScalarField::operator=(scalarField("value", dict, p.size()));
|
||||
@ -437,7 +437,7 @@ void thermalBaffle1DFvPatchScalarField<solidType>::write(Ostream& os) const
|
||||
|
||||
qrPrevious_.writeEntry("qrPrevious", os);
|
||||
os.writeKeyword("qr")<< qrName_ << token::END_STATEMENT << nl;
|
||||
os.writeKeyword("relaxation")<< qrRelaxation_
|
||||
os.writeKeyword("qrRelaxation")<< qrRelaxation_
|
||||
<< token::END_STATEMENT << nl;
|
||||
}
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Usage
|
||||
Qs uniform 100; // heat flux [W/m2]
|
||||
|
||||
qr none;
|
||||
relaxation 1;
|
||||
qrRelaxation 1;
|
||||
|
||||
// Solid thermo
|
||||
specie
|
||||
|
||||
Reference in New Issue
Block a user