diff --git a/src/lbm/lattice_model/ForceModel.h b/src/lbm/lattice_model/ForceModel.h
index c670713dc1b8dd2b46d80529563cc4d2e0895006..fdb1d83e913c3cd77e6d251f2fae4e479efedb5c 100644
--- a/src/lbm/lattice_model/ForceModel.h
+++ b/src/lbm/lattice_model/ForceModel.h
@@ -499,11 +499,12 @@ public:
       if (!std::is_same< typename LatticeModel_T::CollisionModel::tag, collision_model::SRT_tag >::value)
       {
          const real_t one_third  = real_t(1) / real_t(3);
+         const real_t one_over_d  = real_t(1) / real_t(LatticeModel_T::Stencil::D);
       
          const auto common = Matrix3<real_t>::makeDiagonalMatrix( velocity * bodyForce_ );
          return (tensorProduct( velocity, bodyForce_ ) +
                  tensorProduct( bodyForce_, velocity ) -
-                 common * (real_t(2)*one_third) ) * real_t(0.5) * ( real_t(2) + omega )
+                 common * (real_t(2)*one_over_d) ) * real_t(0.5) * ( real_t(2) + omega )
                 + common * ( one_third * ( real_t(2) + omega_bulk ) );
       }
       else
@@ -585,11 +586,12 @@ public:
       if (!std::is_same< typename LatticeModel_T::CollisionModel::tag, collision_model::SRT_tag >::value)
       {
          const real_t one_third  = real_t(1) / real_t(3);
+         const real_t one_over_d  = real_t(1) / real_t(LatticeModel_T::Stencil::D);
       
          const auto common = Matrix3<real_t>::makeDiagonalMatrix( velocity * force(x,y,z) );
          return (tensorProduct( velocity, force(x,y,z) ) +
                  tensorProduct( force(x,y,z), velocity ) -
-                 common * (real_t(2)*one_third) ) * real_t(0.5) * ( real_t(2) + omega )
+                 common * (real_t(2)*one_over_d) ) * real_t(0.5) * ( real_t(2) + omega )
                 + common * ( one_third * ( real_t(2) + omega_bulk ) );
       }
       else