diff --git a/src/regionModels/surfaceFilmModels/thermoSingleLayer/thermoSingleLayer.C b/src/regionModels/surfaceFilmModels/thermoSingleLayer/thermoSingleLayer.C
index 480b0194bbc82c9e1da05302cf1e3b8b113222dc..e480d6e10236957fed0541e63e76ae43796af53b 100644
--- a/src/regionModels/surfaceFilmModels/thermoSingleLayer/thermoSingleLayer.C
+++ b/src/regionModels/surfaceFilmModels/thermoSingleLayer/thermoSingleLayer.C
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2011-2014 OpenFOAM Foundation
+    \\  /    A nd           | Copyright (C) 2011-2015 OpenFOAM Foundation
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
@@ -257,16 +257,9 @@ tmp<fvScalarMatrix> thermoSingleLayer::q(volScalarField& hs) const
 {
     dimensionedScalar Tstd("Tstd", dimTemperature, 298.15);
 
-    volScalarField htcst(htcs_->h());
-    volScalarField htcwt(htcw_->h());
-
-    const volScalarField mask(pos(delta_ - deltaSmall_));
-
-    forAll(mask, i)
-    {
-        htcst[i] *= max(mask[i], ROOTVSMALL);
-        htcwt[i] *= max(mask[i], ROOTVSMALL);
-    }
+    volScalarField boundedAlpha(max(alpha_, ROOTVSMALL));
+    volScalarField htcst(htcs_->h()*boundedAlpha);
+    volScalarField htcwt(htcw_->h()*boundedAlpha);
 
     htcst.correctBoundaryConditions();
     htcwt.correctBoundaryConditions();