From a96200406a9edc7d27cd1d8f1baca38dfcba60d8 Mon Sep 17 00:00:00 2001 From: andy <andy> Date: Wed, 24 Jul 2013 14:42:26 +0100 Subject: [PATCH] BUG: Added missing call to base class updateCoeffs --- .../flowRateInletVelocityFvPatchVectorField.C | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C b/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C index f5cd4413b1a..c59d8d89ee4 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -172,6 +172,8 @@ void Foam::flowRateInletVelocityFvPatchVectorField::updateCoeffs // mass flow-rate operator==(n*avgU/uniformRho); } + + fixedValueFvPatchVectorField::updateCoeffs(); } @@ -223,7 +225,7 @@ void Foam::flowRateInletVelocityFvPatchVectorField::updateCoeffs() } } - fixedValueFvPatchField<vector>::updateCoeffs(); + fixedValueFvPatchVectorField::updateCoeffs(); } -- GitLab