diff --git a/applications/test/momentOfInertia/Make/files b/applications/test/momentOfInertia/Make/files
new file mode 100644
index 0000000000000000000000000000000000000000..89848e34fb5a5634c3e240da3200e132db8d5551
--- /dev/null
+++ b/applications/test/momentOfInertia/Make/files
@@ -0,0 +1,3 @@
+momentOfInertiaTest.C
+
+EXE = $(FOAM_USER_APPBIN)/momentOfInertiaTest
diff --git a/applications/test/momentOfInertia/Make/options b/applications/test/momentOfInertia/Make/options
new file mode 100644
index 0000000000000000000000000000000000000000..54c035b8f55d183c1ad02bc372398feceaf31718
--- /dev/null
+++ b/applications/test/momentOfInertia/Make/options
@@ -0,0 +1,5 @@
+EXE_INC = \
+    -I$(LIB_SRC)/meshTools/lnInclude
+
+EXE_LIBS = \
+    -lmeshTools
diff --git a/applications/test/momentOfInertia/momentOfInertiaTest.C b/applications/test/momentOfInertia/momentOfInertiaTest.C
new file mode 100644
index 0000000000000000000000000000000000000000..b4ea06bba219daba6b9b2b5cc6f32e08e61f7007
--- /dev/null
+++ b/applications/test/momentOfInertia/momentOfInertiaTest.C
@@ -0,0 +1,112 @@
+/*---------------------------------------------------------------------------*\
+ =========                   |
+ \\      /   F ield          | OpenFOAM: The Open Source CFD Toolbox
+  \\    /    O peration      |
+   \\  /     A nd            | Copyright (C) 2009-2009 OpenCFD Ltd.
+    \\/      M anipulation   |
+-------------------------------------------------------------------------------
+License
+    This file is part of OpenFOAM.
+
+    OpenFOAM is free software; you can redistribute it and/or modify it
+    under the terms of the GNU General Public License as published by the
+    Free Software Foundation; either version 2 of the License, or (at your
+    option) any later version.
+
+    OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
+    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+    for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with OpenFOAM; if not, write to the Free Software Foundation,
+    Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+Application
+    momentOfInertiaTest
+
+Description
+    Calculates the inertia tensor and principal axes and moments of a
+    test face.
+
+\*---------------------------------------------------------------------------*/
+
+#include "ListOps.H"
+#include "face.H"
+#include "OFstream.H"
+#include "meshTools.H"
+
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+using namespace Foam;
+
+int main(int argc, char *argv[])
+{
+    label nPts = 6;
+
+    pointField pts(nPts);
+
+    pts[0] = point(4.495, 3.717, -4.112);
+    pts[1] = point(4.421, 3.932, -4.112);
+    pts[2] = point(4.379, 4.053, -4.112);
+    pts[3] = point(4.301, 4.026, -4.300);
+    pts[4] = point(4.294, 4.024, -4.317);
+    pts[5] = point(4.409, 3.687, -4.317);
+
+    scalar density = 1.0;
+
+    face f(identity(nPts));
+
+    point Cf = f.centre(pts);
+
+    tensor J = tensor::zero;
+
+    J = f.inertia(pts, Cf, density);
+
+    vector eVal = eigenValues(J);
+
+    tensor eVec = eigenVectors(J);
+
+    Info<< nl << "Inertia tensor of test face " << J << nl
+        << "eigenValues (principal moments) " << eVal << nl
+        << "eigenVectors (principal axes) " << eVec
+        << endl;
+
+    OFstream str("momentOfInertiaTest.obj");
+
+    Info<< nl << "Writing test face and scaled principal axes to "
+        << str.name() << endl;
+
+    forAll(pts, ptI)
+    {
+        meshTools::writeOBJ(str, pts[ptI]);
+    }
+
+    str << "l";
+
+    forAll(f, fI)
+    {
+        str << ' ' << fI + 1;
+    }
+
+    str << " 1" << endl;
+
+    scalar scale = mag(Cf - pts[f[0]])/eVal.component(findMin(eVal));
+
+    meshTools::writeOBJ(str, Cf);
+    meshTools::writeOBJ(str, Cf + scale*eVal.x()*eVec.x());
+    meshTools::writeOBJ(str, Cf + scale*eVal.y()*eVec.y());
+    meshTools::writeOBJ(str, Cf + scale*eVal.z()*eVec.z());
+
+    for (label i = nPts + 1; i < nPts + 4; i++)
+    {
+        str << "l " << nPts + 1 << ' ' << i + 1 << endl;
+    }
+
+    Info<< nl << "End" << nl << endl;
+
+    return 0;
+}
+
+
+// ************************************************************************* //
diff --git a/src/OpenFOAM/meshes/meshShapes/face/face.C b/src/OpenFOAM/meshes/meshShapes/face/face.C
index 6e3d88979ee0f0852135aa2cfe3188998f1b91b0..7935c4a9b60460178f01ef43e9b599f6c682e33f 100644
--- a/src/OpenFOAM/meshes/meshShapes/face/face.C
+++ b/src/OpenFOAM/meshes/meshShapes/face/face.C
@@ -691,6 +691,44 @@ Foam::scalar Foam::face::sweptVol
 }
 
 
+Foam::tensor Foam::face::inertia
+(
+    const pointField& p,
+    const point& refPt,
+    scalar density
+) const
+{
+    // If the face is a triangle, do a direct calculation
+    if (size() == 3)
+    {
+        return triPointRef
+        (
+            p[operator[](0)],
+            p[operator[](1)],
+            p[operator[](2)]
+        ).inertia(refPt, density);
+    }
+
+    point c = centre(p);
+
+    tensor J = tensor::zero;
+
+    forAll(*this, i)
+    {
+        triPointRef t
+        (
+            p[operator[](i)],
+            p[operator[](fcIndex(i))],
+            c
+        );
+
+        J += t.inertia(refPt, density);
+    }
+
+    return J;
+}
+
+
 Foam::edgeList Foam::face::edges() const
 {
     const labelList& points = *this;
@@ -808,4 +846,3 @@ Foam::label Foam::face::trianglesQuads
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
 // ************************************************************************* //
-
diff --git a/src/OpenFOAM/meshes/meshShapes/face/face.H b/src/OpenFOAM/meshes/meshShapes/face/face.H
index 25a4f8fbce5b70f44c74ffd36a7c42c45e14ce99..c317b3eef98c4a266922815c013292d19e73e0d1 100644
--- a/src/OpenFOAM/meshes/meshShapes/face/face.H
+++ b/src/OpenFOAM/meshes/meshShapes/face/face.H
@@ -200,6 +200,15 @@ public:
             const pointField& newPoints
         ) const;
 
+        //- Return the inertia tensor, with optional reference
+        //  point and density specification
+        tensor inertia
+        (
+            const pointField&,
+            const point& refPt = vector::zero,
+            scalar density = 1.0
+        ) const;
+
         //- Return potential intersection with face with a ray starting
         //  at p, direction n (does not need to be normalized)
         //  Does face-center decomposition and returns triangle intersection
diff --git a/src/OpenFOAM/meshes/primitiveShapes/triangle/triangle.H b/src/OpenFOAM/meshes/primitiveShapes/triangle/triangle.H
index 3bc3ea38a809c1850057de2d25cc73d0cdc2413b..ae24678c4a550ca41f96f41f1b39af8f1aa0179b 100644
--- a/src/OpenFOAM/meshes/primitiveShapes/triangle/triangle.H
+++ b/src/OpenFOAM/meshes/primitiveShapes/triangle/triangle.H
@@ -38,6 +38,7 @@ SourceFiles
 
 #include "intersection.H"
 #include "vector.H"
+#include "tensor.H"
 #include "pointHit.H"
 
 
@@ -100,7 +101,7 @@ public:
     //- Return types for classify
     enum proxType
     {
-        NONE, 
+        NONE,
         POINT,  // Close to point
         EDGE    // Close to edge
     };
@@ -152,6 +153,14 @@ public:
             //- Return swept-volume
             inline scalar sweptVol(const triangle& t) const;
 
+            //- Return the inertia tensor, with optional reference
+            //  point and density specification
+            inline tensor inertia
+            (
+                PointRef refPt = vector::zero,
+                scalar density = 1.0
+            ) const;
+
             //- Return point intersection with a ray.
             //  For a hit, the distance is signed. Positive number
             //  represents the point in front of triangle.
diff --git a/src/OpenFOAM/meshes/primitiveShapes/triangle/triangleI.H b/src/OpenFOAM/meshes/primitiveShapes/triangle/triangleI.H
index 40fa909b16633aa89fcc629a672a2197ced9a27f..be4c3d95d0be335821cd1873113a18f97b3f1645 100644
--- a/src/OpenFOAM/meshes/primitiveShapes/triangle/triangleI.H
+++ b/src/OpenFOAM/meshes/primitiveShapes/triangle/triangleI.H
@@ -331,6 +331,42 @@ inline scalar triangle<Point, PointRef>::sweptVol(const triangle& t) const
 }
 
 
+template<class Point, class PointRef>
+inline tensor triangle<Point, PointRef>::inertia
+(
+    PointRef refPt,
+    scalar density
+) const
+{
+    Point aRel = a_ - refPt;
+    Point bRel = b_ - refPt;
+    Point cRel = c_ - refPt;
+
+    tensor V
+    (
+        aRel.x(), aRel.y(), aRel.z(),
+        bRel.x(), bRel.y(), bRel.z(),
+        cRel.x(), cRel.y(), cRel.z()
+    );
+
+    scalar a = Foam::mag((b_ - a_)^(c_ - a_));
+
+    tensor S = 1/24.0*(tensor::one + I);
+
+    return
+    (
+        a*I/24.0*
+        (
+            (aRel & aRel)
+          + (bRel & bRel)
+          + (cRel & cRel)
+          + ((aRel + bRel + cRel) & (aRel + bRel + cRel))
+        )
+      - a*(V.T() & S & V)
+    )
+   *density;
+}
+
 template<class Point, class PointRef>
 inline pointHit triangle<Point, PointRef>::ray
 (
diff --git a/src/finiteVolume/fvMatrices/solvers/MULES/MULESTemplates.C b/src/finiteVolume/fvMatrices/solvers/MULES/MULESTemplates.C
index 89e0260456a342ced62b8e3c1b3de0abf5586345..f938c2cf9f930871677be7b49b23d78f470b30f5 100644
--- a/src/finiteVolume/fvMatrices/solvers/MULES/MULESTemplates.C
+++ b/src/finiteVolume/fvMatrices/solvers/MULES/MULESTemplates.C
@@ -142,8 +142,7 @@ void Foam::MULES::implicitSolve
 {
     const fvMesh& mesh = psi.mesh();
 
-    const dictionary& MULEScontrols = 
-       mesh.solverDict(psi.name()).subDict("MULESImplicit");
+    const dictionary& MULEScontrols = mesh.solverDict(psi.name());
 
     label maxIter
     (
@@ -255,7 +254,7 @@ void Foam::MULES::implicitSolve
         solve
         (
             psiConvectionDiffusion + fvc::div(lambda*phiCorr),
-            MULEScontrols.lookup("solver")
+            MULEScontrols
         );
 
         scalar maxPsiM1 = gMax(psi.internalField()) - 1.0;