Skip to content
Snippets Groups Projects

Feature function objects

Merged Andrew Heather requested to merge feature-functionObjects into develop
Viewing commit c2b96e5d
Prev
Show latest version
1 file
+ 3
2
Preferences
Compare changes
@@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\/ M anipulation |
\\/ M anipulation | Copyright (C) 2015 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
@@ -107,7 +107,8 @@ Type Foam::fieldValues::cellSource::processValues
if (wSize > 0)
{
result = gSum(weightField*values)/(gSum(weightField) + ROOTVSMALL);
result =
gSum(weightField*values)/(gSum(weightField) + ROOTVSMALL);
}
else
{