diff --git a/src/postProcessing/forces/forces/forces.H b/src/postProcessing/forces/forces/forces.H
index 1c08475ee59f76c73e548c6d1b44550cd3a0df00..25bbe02f9998fdb2d6199e2759d46fcdb022dc77 100644
--- a/src/postProcessing/forces/forces/forces.H
+++ b/src/postProcessing/forces/forces/forces.H
@@ -50,6 +50,7 @@ SourceFiles
 #include "Tuple2.H"
 #include "OFstream.H"
 #include "Switch.H"
+#include "pointFieldFwd.H"
 
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
@@ -59,6 +60,7 @@ namespace Foam
 // Forward declaration of classes
 class objectRegistry;
 class dictionary;
+class mapPolyMesh;
 
 /*---------------------------------------------------------------------------*\
                            Class forces Declaration
@@ -204,6 +206,14 @@ public:
 
         //- Calculate and return forces and moment
         virtual forcesMoments calcForcesMoment() const;
+
+        //- Update for changes of mesh
+        virtual void updateMesh(const mapPolyMesh&)
+        {}
+
+        //- Update for changes of mesh
+        virtual void movePoints(const pointField&)
+        {}
 };
 
 
diff --git a/src/thermophysicalModels/specie/thermo/specieThermo/specieThermo.H b/src/thermophysicalModels/specie/thermo/specieThermo/specieThermo.H
index 31730fb9e3694059174b8912d5169bc39355c306..f715d23a55e246bfcc3ff548ebe356605fa62800 100644
--- a/src/thermophysicalModels/specie/thermo/specieThermo/specieThermo.H
+++ b/src/thermophysicalModels/specie/thermo/specieThermo/specieThermo.H
@@ -207,12 +207,12 @@ public:
             inline scalar Kc(const scalar T) const;
 
             //- Equilibrium constant [] i.t.o. mole-fractions
-            //  For low pressures (where the gas mixture is near perfect) 
+            //  For low pressures (where the gas mixture is near perfect)
             //  Kx = Kp(pstd/p)^nui
             inline scalar Kx(const scalar T, const scalar p) const;
 
             //- Equilibrium constant [] i.t.o. number of moles
-            //  For low pressures (where the gas mixture is near perfect) 
+            //  For low pressures (where the gas mixture is near perfect)
             //  Kn = Kp(n*pstd/p)^nui where n = number of moles in mixture
             inline scalar Kn
             (
diff --git a/src/transportModels/incompressible/incompressibleTwoPhaseMixture/twoPhaseMixture.C b/src/transportModels/incompressible/incompressibleTwoPhaseMixture/twoPhaseMixture.C
index 46f2bf65f544e5605b10c1548459e9c707552cce..11865b663d32bdbbbc55ea333d8637bfea9a8d37 100644
--- a/src/transportModels/incompressible/incompressibleTwoPhaseMixture/twoPhaseMixture.C
+++ b/src/transportModels/incompressible/incompressibleTwoPhaseMixture/twoPhaseMixture.C
@@ -119,7 +119,7 @@ tmp<volScalarField> twoPhaseMixture::mu() const
 {
     volScalarField limitedAlpha1 = min(max(alpha1_, scalar(0)), scalar(1));
 
-    return tmp<volScalarField> 
+    return tmp<volScalarField>
     (
         new volScalarField
         (
@@ -136,7 +136,7 @@ tmp<surfaceScalarField> twoPhaseMixture::muf() const
     surfaceScalarField alpha1f =
         min(max(fvc::interpolate(alpha1_), scalar(0)), scalar(1));
 
-    return tmp<surfaceScalarField> 
+    return tmp<surfaceScalarField>
     (
         new surfaceScalarField
         (
@@ -150,10 +150,10 @@ tmp<surfaceScalarField> twoPhaseMixture::muf() const
 
 tmp<surfaceScalarField> twoPhaseMixture::nuf() const
 {
-    surfaceScalarField alpha1f = 
+    surfaceScalarField alpha1f =
         min(max(fvc::interpolate(alpha1_), scalar(0)), scalar(1));
 
-    return tmp<surfaceScalarField> 
+    return tmp<surfaceScalarField>
     (
         new surfaceScalarField
         (
@@ -171,7 +171,11 @@ bool twoPhaseMixture::read()
 {
     if (transportModel::read())
     {
-        if (nuModel1_().read(*this) && nuModel2_().read(*this))
+        if
+        (
+            nuModel1_().read(subDict(phase1Name_))
+         && nuModel2_().read(subDict(phase2Name_))
+        )
         {
             nuModel1_->viscosityProperties().lookup("rho") >> rho1_;
             nuModel2_->viscosityProperties().lookup("rho") >> rho2_;
diff --git a/src/transportModels/incompressible/incompressibleTwoPhaseMixture/twoPhaseMixture.H b/src/transportModels/incompressible/incompressibleTwoPhaseMixture/twoPhaseMixture.H
index a693847ad2d7f53a8298135127b9d0db4d852053..b6d903f5ddfd8e5aa287b26f314bf1ff1241b437 100644
--- a/src/transportModels/incompressible/incompressibleTwoPhaseMixture/twoPhaseMixture.H
+++ b/src/transportModels/incompressible/incompressibleTwoPhaseMixture/twoPhaseMixture.H
@@ -54,7 +54,9 @@ class twoPhaseMixture
 :
     public transportModel
 {
-    // Private data
+protected:
+
+    // Protected data
 
         word phase1Name_;
         word phase2Name_;
@@ -141,7 +143,7 @@ public:
         tmp<surfaceScalarField> muf() const;
 
         //- Return the kinematic laminar viscosity
-        tmp<volScalarField> nu() const
+        virtual tmp<volScalarField> nu() const
         {
             return nu_;
         }
@@ -149,14 +151,14 @@ public:
         //- Return the face-interpolated dynamic laminar viscosity
         tmp<surfaceScalarField> nuf() const;
 
-        //- Correct the laminar viscosity 
-        void correct()
+        //- Correct the laminar viscosity
+        virtual void correct()
         {
             calcNu();
         }
 
         //- Read base transportProperties dictionary
-        bool read();
+        virtual bool read();
 };