From 542a32b17535b44e52a85479519eae0ea46b5859 Mon Sep 17 00:00:00 2001 From: sergio Date: Tue, 20 May 2014 10:34:20 +0100 Subject: [PATCH] BUG: Fixing constructors for coupledBase class in filmPyrolysisRadiativeCoupledMixed --- .../filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisRadiativeCoupledMixed/filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.C b/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisRadiativeCoupledMixed/filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.C index 6f68aa19e1..565130dee5 100644 --- a/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisRadiativeCoupledMixed/filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.C +++ b/src/regionModels/regionCoupling/derivedFvPatchFields/filmPyrolysisRadiativeCoupledMixed/filmPyrolysisRadiativeCoupledMixedFvPatchScalarField.C @@ -118,7 +118,7 @@ filmPyrolysisRadiativeCoupledMixedFvPatchScalarField ) : mixedFvPatchScalarField(p, iF), - temperatureCoupledBase(patch(), "undefined", "undefined-K"), + temperatureCoupledBase(patch(), "undefined", "undefined", "undefined-K"), filmRegionName_("surfaceFilmProperties"), pyrolysisRegionName_("pyrolysisProperties"), TnbrName_("undefined-Tnbr"), @@ -143,7 +143,7 @@ filmPyrolysisRadiativeCoupledMixedFvPatchScalarField ) : mixedFvPatchScalarField(psf, p, iF, mapper), - temperatureCoupledBase(patch(), psf.KMethod(), psf.kappaName()), + temperatureCoupledBase(patch(), psf), filmRegionName_(psf.filmRegionName_), pyrolysisRegionName_(psf.pyrolysisRegionName_), TnbrName_(psf.TnbrName_), @@ -224,7 +224,7 @@ filmPyrolysisRadiativeCoupledMixedFvPatchScalarField ) : mixedFvPatchScalarField(psf, iF), - temperatureCoupledBase(patch(), psf.KMethod(), psf.kappaName()), + temperatureCoupledBase(patch(), psf), filmRegionName_(psf.filmRegionName_), pyrolysisRegionName_(psf.pyrolysisRegionName_), TnbrName_(psf.TnbrName_),