From f55f721cc3a4aa8093419e1abc856dbe027c3aab Mon Sep 17 00:00:00 2001 From: andy <andy> Date: Mon, 15 Oct 2012 10:49:49 +0100 Subject: [PATCH] ENH: updated thermo baffle to use new radiation model constructor --- .../thermoBaffle2D/thermoBaffle2D.C | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C b/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C index 3a7eab446e2..8a313cab928 100644 --- a/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C +++ b/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C @@ -204,7 +204,14 @@ thermoBaffle2D::thermoBaffle2D pTraits<scalar>::zero ) ), - radiation_(radiation::radiationModel::New(thermo_->T())) + radiation_ + ( + radiation::radiationModel::New + ( + dict.subDict("radiation"), + thermo_->T() + ) + ) { init(); thermo_->correct(); @@ -257,7 +264,13 @@ thermoBaffle2D::thermoBaffle2D pTraits<scalar>::zero ) ), - radiation_(radiation::radiationModel::New(thermo_->T())) + radiation_ + ( + radiation::radiationModel::New + ( + thermo_->T() + ) + ) { init(); thermo_->correct(); -- GitLab