Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Backofen, Rainer
amdis
Commits
00fc1298
Commit
00fc1298
authored
Nov 06, 2012
by
Thomas Witkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
da
parent
43c4b5c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
10 deletions
+7
-10
AMDiS/src/io/ArhReader.cc
AMDiS/src/io/ArhReader.cc
+1
-9
AMDiS/src/parallel/PetscSolverFeti.cc
AMDiS/src/parallel/PetscSolverFeti.cc
+6
-1
No files found.
AMDiS/src/io/ArhReader.cc
View file @
00fc1298
...
...
@@ -216,16 +216,8 @@ namespace AMDiS {
MeshStructure
elementStructure
;
elementStructure
.
init
(
structureCode
,
codeSize
);
if
(
macroInMesh
.
count
(
elIndex
))
{
MSG
(
"READ MACRO EL %d
\n
"
,
elIndex
);
if
(
MPI
::
COMM_WORLD
.
Get_rank
()
==
52
&&
elIndex
==
19777
)
{
debug
::
writeMacroElementIndexMesh
(
mesh
,
"test"
);
}
if
(
macroInMesh
.
count
(
elIndex
))
elementStructure
.
fitMeshToStructure
(
mesh
,
refManager
,
false
,
elIndex
);
}
if
(
nValueVectors
>
0
)
{
uint32_t
nValuesPerVector
=
0
;
...
...
AMDiS/src/parallel/PetscSolverFeti.cc
View file @
00fc1298
...
...
@@ -717,12 +717,16 @@ namespace AMDiS {
{
FUNCNAME
(
"PetscSolverFeti::testWirebasketEdge()"
);
return
true
;
if
(
meshDistributor
->
getMesh
()
->
getDim
()
==
2
)
return
true
;
if
(
meshDistributor
->
getIntBoundary
().
getDegreeOwn
(
edge
)
!=
3
)
return
false
;
return
true
;
Element
*
el
=
edge
.
el
;
int
i0
=
el
->
getVertexOfEdge
(
edge
.
ithObj
,
0
);
int
i1
=
el
->
getVertexOfEdge
(
edge
.
ithObj
,
1
);
...
...
@@ -786,7 +790,7 @@ namespace AMDiS {
if
(
it
->
rankObj
.
subObj
==
FACE
)
allFaces
[
it
.
getRank
()].
insert
(
it
->
rankObj
);
#if 0
std::set<BoundaryObject> allMyEdges;
TraverseStack stack;
ElInfo *elInfo = stack.traverseFirst(meshDistributor->getMesh(), 0, Mesh::CALL_EL_LEVEL | Mesh::FILL_BOUND);
...
...
@@ -818,6 +822,7 @@ namespace AMDiS {
}
}
}
#endif
int
nEmptyFaces
=
0
;
...
...
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