Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
integration-cfmesh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Community
integration-cfmesh
Commits
fcd1649b
Commit
fcd1649b
authored
Jul 14, 2015
by
Franjo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates of edgeExtractor
parent
dab7b668
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
meshLibrary/utilities/surfaceTools/edgeExtraction/edgeExtractor/edgeExtractor.C
...surfaceTools/edgeExtraction/edgeExtractor/edgeExtractor.C
+7
-6
No files found.
meshLibrary/utilities/surfaceTools/edgeExtraction/edgeExtractor/edgeExtractor.C
View file @
fcd1649b
...
...
@@ -524,10 +524,11 @@ void edgeExtractor::findFaceCandidates
if
(
!
otherFacePatchPtr
)
{
Map
<
label
>
otherFacePatch
;
findOtherFacePatchesParallel
(
otherFacePatch
,
&
fPatches
);
Map
<
label
>*
helperPtr
=
new
Map
<
label
>
();
otherFacePatchPtr
=
&
otherFacePatch
;
findOtherFacePatchesParallel
(
*
helperPtr
,
facePatchPtr
);
otherFacePatchPtr
=
helperPtr
;
}
const
Map
<
label
>&
otherFacePatch
=
*
otherFacePatchPtr
;
...
...
@@ -547,15 +548,15 @@ void edgeExtractor::findFaceCandidates
forAll
(
faceEdges
,
bfI
)
{
DynList
<
label
>
allNeiPatches
;
forAllRow
(
faceEdges
,
bfI
,
eI
)
forAllRow
(
faceEdges
,
bfI
,
f
eI
)
{
const
label
beI
=
faceEdges
(
bfI
,
eI
);
const
label
beI
=
faceEdges
(
bfI
,
f
eI
);
if
(
edgeFaces
.
sizeOfRow
(
beI
)
==
2
)
{
label
fNei
=
edgeFaces
(
beI
,
0
);
if
(
fNei
==
bfI
)
fNei
=
edgeFaces
(
faceEdges
(
bfI
,
eI
)
,
1
);
fNei
=
edgeFaces
(
beI
,
1
);
allNeiPatches
.
appendIfNotIn
(
fPatches
[
fNei
]);
}
...
...
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