Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Backofen, Rainer
amdis
Commits
70c8d9cc
Commit
70c8d9cc
authored
Mar 31, 2009
by
Thomas Witkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* NOTHING
parent
6577015f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
4 deletions
+23
-4
AMDiS/src/ElInfo2d.cc
AMDiS/src/ElInfo2d.cc
+16
-3
AMDiS/src/ParallelProblem.cc
AMDiS/src/ParallelProblem.cc
+4
-1
AMDiS/src/ProblemVec.cc
AMDiS/src/ProblemVec.cc
+3
-0
No files found.
AMDiS/src/ElInfo2d.cc
View file @
70c8d9cc
...
...
@@ -88,7 +88,7 @@ namespace AMDiS {
neighbourCoord_
[
i
][
0
]
=
macroNeighbour
->
coord
[
1
];
neighbourCoord_
[
i
][
1
]
=
macroNeighbour
->
coord
[
2
];
}
else
{
ERROR_EXIT
(
"
s
hould not happen!
\n
"
);
ERROR_EXIT
(
"
S
hould not happen!
\n
"
);
}
neighbourCoord_
[
i
][
2
]
=
oppCoord_
[
i
];
...
...
@@ -102,15 +102,28 @@ namespace AMDiS {
neighbourCoord_
[
i
][
0
]
=
macroNeighbour
->
coord
[
2
];
neighbourCoord_
[
i
][
1
]
=
macroNeighbour
->
coord
[
0
];
}
else
{
ERROR_EXIT
(
"
s
hould not happen!
\n
"
);
ERROR_EXIT
(
"
S
hould not happen!
\n
"
);
}
neighbourCoord_
[
i
][
2
]
=
oppCoord_
[
i
];
break
;
case
2
:
if
(
*
(
macroNeighbour
->
getElement
()
->
getDOF
(
2
))
==
*
(
element_
->
getDOF
(
0
)))
{
neighbourCoord_
[
i
][
0
]
=
macroNeighbour
->
coord
[
2
];
neighbourCoord_
[
i
][
1
]
=
macroNeighbour
->
coord
[
1
];
}
else
if
(
*
(
macroNeighbour
->
getElement
()
->
getDOF
(
2
))
==
*
(
element_
->
getDOF
(
1
)))
{
neighbourCoord_
[
i
][
0
]
=
macroNeighbour
->
coord
[
0
];
neighbourCoord_
[
i
][
1
]
=
macroNeighbour
->
coord
[
2
];
}
else
{
ERROR_EXIT
(
"Should not happen!
\n
"
);
}
break
;
default:
std
::
cout
<<
"------------- Error --------------"
<<
std
::
endl
;
std
::
cout
<<
" Element index = "
<<
element_
->
getIndex
()
<<
"
\n\n
"
;
std
::
cout
<<
" Neighbour counter = "
<<
i
<<
"
\n
"
;
std
::
cout
<<
" Element index = "
<<
element_
->
getIndex
()
<<
"
\n\n
"
;
for
(
int
j
=
0
;
j
<
neighbours
;
j
++
)
{
if
(
mel
->
getNeighbour
(
j
))
{
std
::
cout
<<
" Neighbour "
<<
j
<<
": "
...
...
AMDiS/src/ParallelProblem.cc
View file @
70c8d9cc
...
...
@@ -1359,6 +1359,8 @@ namespace AMDiS {
// and now partition the mesh
partitionMesh
(
adaptInfo
);
#if 0
// 2009-03-31 THOMAS, DO NOT REMOVE THIS BLOCK
TraverseStack stack;
ElInfo *elInfo = stack.traverseFirst(mesh, -1, Mesh::CALL_LEAF_EL);
int nLeaves = 0;
...
...
@@ -1377,8 +1379,9 @@ namespace AMDiS {
}
mesh->setNumberOfLeaves(nLeaves);
#endif
#if
0
#if
1
globalRefineOutOfPartition
(
adaptInfo
);
refineOverlap
(
adaptInfo
);
...
...
AMDiS/src/ProblemVec.cc
View file @
70c8d9cc
...
...
@@ -25,6 +25,7 @@
#include "Lagrange.h"
#include "Flag.h"
#include "TraverseParallel.h"
#include "VtkWriter.h"
namespace
AMDiS
{
...
...
@@ -573,6 +574,8 @@ namespace AMDiS {
{
FUNCNAME
(
"ProblemVec::estimate()"
);
VtkWriter
::
writeFile
(
solution
->
getDOFVector
(
0
),
"test.vtu"
);
clock_t
first
=
clock
();
#ifdef _OPENMP
...
...
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