From 17121a46a372581ac255da4346e8f0ef9ac4a3b7 Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Wed, 9 Dec 2009 12:49:04 +0000 Subject: [PATCH] Corrected checking of component --- .../surfaceSlipDisplacementPointPatchVectorField.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C b/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C index 591b5fb94bb..39d55419f98 100644 --- a/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C +++ b/src/fvMotionSolver/pointPatchFields/derived/surfaceSlipDisplacement/surfaceSlipDisplacementPointPatchVectorField.C @@ -176,7 +176,7 @@ void surfaceSlipDisplacementPointPatchVectorField::calcProjection // Knock out any wedge component scalarField offset(start.size(), 0.0); - if (wedgePlane_ >= 0 && wedgePlane_ <= vector::nComponents) + if (wedgePlane_ >= 0 && wedgePlane_ < vector::nComponents) { forAll(offset, i) { @@ -262,7 +262,7 @@ void surfaceSlipDisplacementPointPatchVectorField::calcProjection if (interPt.hit()) { - if (wedgePlane_ >= 0 && wedgePlane_ <= vector::nComponents) + if (wedgePlane_ >= 0 && wedgePlane_ < vector::nComponents) { interPt.rawPoint()[wedgePlane_] += offset[i]; } -- GitLab