diff --git a/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C b/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C index 3a7eab446e..8a313cab92 100644 --- a/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C +++ b/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C @@ -204,7 +204,14 @@ thermoBaffle2D::thermoBaffle2D pTraits::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::zero ) ), - radiation_(radiation::radiationModel::New(thermo_->T())) + radiation_ + ( + radiation::radiationModel::New + ( + thermo_->T() + ) + ) { init(); thermo_->correct();