Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
143800ab
Commit
143800ab
authored
Jul 26, 2016
by
Andrew Heather
Browse files
BUG: Turbulence DFSEM - protect sigFpe for reconstruct - see
#194
parent
2d96fc50
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/finiteVolume/fields/fvPatchFields/derived/turbulentDFSEMInlet/turbulentDFSEMInletFvPatchVectorField.C
View file @
143800ab
...
...
@@ -848,7 +848,7 @@ turbulentDFSEMInletFvPatchVectorField
eddy
::
debug
=
debug
;
// Set UMean as patch area average value
UMean_
=
gSum
(
U_
*
patch
().
magSf
())
/
gSum
(
patch
().
magSf
());
UMean_
=
gSum
(
U_
*
patch
().
magSf
())
/
(
gSum
(
patch
().
magSf
())
+
ROOTVSMALL
)
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment