Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
774dcadb
Commit
774dcadb
authored
Dec 21, 2017
by
mattijs
Browse files
BUG: cellCuts: incorrect correspondence. Fixes
#670
.
parent
351fa4f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dynamicMesh/meshCut/cellCuts/cellCuts.C
View file @
774dcadb
...
...
@@ -242,7 +242,12 @@ void Foam::cellCuts::syncProc()
else
{
label
oppFp
=
relCut
[
i
]
-
1
;
label
fp
=
f
.
size
()
-
1
-
oppFp
;
label
fp
=
(
oppFp
==
0
?
0
:
f
.
size
()
-
oppFp
);
absoluteCut
[
i
]
=
vertToEVert
(
f
[
fp
]);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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