From 359cd57e5d9c33e20a3f652afd34e09e7c74d68d Mon Sep 17 00:00:00 2001 From: andy Date: Tue, 16 Oct 2012 10:57:32 +0100 Subject: [PATCH] BUG: Updated BC write for temperatureThermoBaffle --- .../temperatureThermoBaffleFvPatchScalarField.C | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/regionModels/thermoBaffleModels/derivedFvPatchFields/temperatureThermoBaffle/temperatureThermoBaffleFvPatchScalarField.C b/src/regionModels/thermoBaffleModels/derivedFvPatchFields/temperatureThermoBaffle/temperatureThermoBaffleFvPatchScalarField.C index d091336cc0..496765d321 100644 --- a/src/regionModels/thermoBaffleModels/derivedFvPatchFields/temperatureThermoBaffle/temperatureThermoBaffleFvPatchScalarField.C +++ b/src/regionModels/thermoBaffleModels/derivedFvPatchFields/temperatureThermoBaffle/temperatureThermoBaffleFvPatchScalarField.C @@ -215,9 +215,15 @@ void temperatureThermoBaffleFvPatchScalarField::write(Ostream& os) const os.writeKeyword(word(thermoModel + "Coeffs")); os << dict_.subDict(thermoModel + "Coeffs") << nl; + os.writeKeyword("thermoType"); + os << dict_.subDict("thermoType") << nl; + os.writeKeyword("mixture"); os << dict_.subDict("mixture") << nl; - } + + os.writeKeyword("radiation"); + os << dict_.subDict("radiation") << nl; + } }