From 7cdb6dc4fd986e6778d02cf66ec3730a4490d76d Mon Sep 17 00:00:00 2001 From: Henry Date: Sun, 28 Dec 2014 17:00:11 +0000 Subject: [PATCH] fanFvPatchField: Correct the type specialization Resolves bug report http://www.openfoam.org/mantisbt/view.php?id=1415 --- .../fields/fvPatchFields/derived/fan/fanFvPatchField.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C index 775c0f1ced..6885bd7d4d 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.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-2014 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -108,8 +108,8 @@ void Foam::fanFvPatchField::updateCoeffs() calcFanJump(); - // call fixedJump variant - uniformJump will overwrite the jump value - fixedJumpFvPatchField::updateCoeffs(); + // Call fixedJump variant - uniformJump will overwrite the jump value + fixedJumpFvPatchField::updateCoeffs(); }