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