diff --git a/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C b/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.C index 3a7eab446e2edee2900d70e10fcd8d1ccfe552d2..8a313cab928f99bf4022da1a51f00bf8b8791089 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();