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
c64902ea
Commit
c64902ea
authored
Feb 15, 2009
by
henry
Browse files
Use gSum rather than sum for parallel running.
parent
8a474e2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/finiteVolume/fields/fvPatchFields/derived/pressureInletUniformVelocity/pressureInletUniformVelocityFvPatchVectorField.C
View file @
c64902ea
...
...
@@ -104,7 +104,7 @@ void pressureInletUniformVelocityFvPatchVectorField::updateCoeffs()
pressureInletVelocityFvPatchVectorField
::
updateCoeffs
();
operator
==
(
patch
().
nf
()
*
s
um
(
patch
().
Sf
()
&
*
this
)
/
s
um
(
patch
().
magSf
()));
operator
==
(
patch
().
nf
()
*
gS
um
(
patch
().
Sf
()
&
*
this
)
/
gS
um
(
patch
().
magSf
()));
}
...
...
@@ -115,7 +115,7 @@ void pressureInletUniformVelocityFvPatchVectorField::operator=
const
fvPatchField
<
vector
>&
pvf
)
{
operator
==
(
patch
().
nf
()
*
s
um
(
patch
().
Sf
()
&
pvf
)
/
s
um
(
patch
().
magSf
()));
operator
==
(
patch
().
nf
()
*
gS
um
(
patch
().
Sf
()
&
pvf
)
/
gS
um
(
patch
().
magSf
()));
}
...
...
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