Skip to content
Snippets Groups Projects
Commit 21f5499d authored by Henry Weller's avatar Henry Weller
Browse files

fixedShearStressFvPatchVectorField: Corrected patch nuEff access

Resolves bug-report http://openfoam.org/mantisbt/view.php?id=2020
parent e5045949
Branches
Tags
No related merge requests found
......@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
......@@ -109,7 +109,7 @@ void Foam::fixedShearStressFvPatchVectorField::updateCoeffs()
)
);
scalarField nuEff(turbModel.nuEff()()[patch().index()]);
scalarField nuEff(turbModel.nuEff(patch().index()));
const vectorField Uc(patchInternalField());
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment