Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Koch
dune-common
Commits
1232f532
Commit
1232f532
authored
20 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
bugfixes in getChildrenOfSubface
[[Imported from SVN: r1783]]
parent
216c94cf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
grid/uggrid/uggrid.cc
+100
-39
100 additions, 39 deletions
grid/uggrid/uggrid.cc
with
100 additions
and
39 deletions
grid/uggrid/uggrid.cc
+
100
−
39
View file @
1232f532
...
...
@@ -8,7 +8,6 @@
//
//************************************************************************
//#include <stdlib.h>
#include
<dune/common/tuples.hh>
#include
<dune/common/sllist.hh>
...
...
@@ -129,14 +128,22 @@ template<> int Dune::UGGrid < 2, 2 >::numOfUGGrids = 0;
template
<
>
int
Dune
::
UGGrid
<
3
,
3
>::
numOfUGGrids
=
0
;
template
<
int
dim
,
int
dimworld
>
inline
Dune
::
UGGrid
<
dim
,
dimworld
>::
UGGrid
()
:
multigrid_
(
NULL
),
refinementType_
(
COPY
),
omitGreenClosure_
(
false
)
inline
Dune
::
UGGrid
<
dim
,
dimworld
>::
UGGrid
()
:
multigrid_
(
NULL
),
refinementType_
(
COPY
),
omitGreenClosure_
(
false
),
hierarchicIndexSet_
(
*
this
),
levelIndexSet_
(
NULL
)
{
init
(
500
,
10
);
}
template
<
int
dim
,
int
dimworld
>
inline
Dune
::
UGGrid
<
dim
,
dimworld
>::
UGGrid
(
unsigned
int
heapSize
,
unsigned
envHeapSize
)
:
multigrid_
(
NULL
),
refinementType_
(
COPY
),
omitGreenClosure_
(
false
)
:
multigrid_
(
NULL
),
refinementType_
(
COPY
),
omitGreenClosure_
(
false
),
hierarchicIndexSet_
(
*
this
)
,
levelIndexSet_
(
NULL
)
{
init
(
heapSize
,
envHeapSize
);
}
...
...
@@ -224,6 +231,9 @@ inline Dune::UGGrid < dim, dimworld >::~UGGrid()
if
(
extra_boundary_data_
)
free
(
extra_boundary_data_
);
if
(
levelIndexSet_
)
delete
(
levelIndexSet_
);
if
(
multigrid_
)
{
// Set UG's currBVP variable to the BVP corresponding to this
// grid. This is necessary if we have more than one UGGrid in use.
...
...
@@ -489,7 +499,7 @@ bool Dune::UGGrid < dim, dimworld >::adapt()
// Collapse the complete grid hierarchy into a single level if requested
if
(
refinementType_
==
COLLAPSE
)
if
(
Collapse
(
multigrid_
))
DUNE_THROW
(
GridError
,
"UG
?
d::Collapse returned error code!"
);
DUNE_THROW
(
GridError
,
"UG
"
<<
dim
<<
"
d::Collapse returned error code!"
);
// Renumber everything
setLocalIndices
();
...
...
@@ -534,7 +544,7 @@ void Dune::UGGrid<dim,dimworld>::getChildrenOfSubface(typename Traits::template
int
maxl
,
Array
<
FixedArray
<
unsigned
int
,
3
>
>&
children
)
const
{
#if 0
typedef
typename
TargetType
<
0
,
dim
>::
T
ElementType
;
typedef
Tuple
<
ElementType
*
,
int
,
int
>
ListEntryType
;
...
...
@@ -545,6 +555,34 @@ void Dune::UGGrid<dim,dimworld>::getChildrenOfSubface(typename Traits::template
const
int
MAX_SONS
=
30
;
// copied from UG
// //////////////////////////////////////////////////////////////////////
// Change the input face number from Dune numbering to UG numbering
// //////////////////////////////////////////////////////////////////////
switch
(
e
->
geometry
().
type
())
{
case
hexahedron
:
{
// Dune numbers the faces of a hexahedron differently than UG.
// The following two lines do the transformation
const
int
renumbering
[
6
]
=
{
4
,
2
,
1
,
3
,
0
,
5
};
elementSide
=
renumbering
[
elementSide
];
break
;
}
case
tetrahedron
:
{
// Dune numbers the faces of a tetrahedron differently than UG.
// The following two lines do the transformation
const
int
renumbering
[
4
]
=
{
1
,
2
,
3
,
0
};
elementSide
=
renumbering
[
elementSide
];
break
;
}
case
triangle
:
{
// Dune numbers the faces of a triangle differently from UG.
// The following two lines do the transformation
const
int
renumbering
[
3
]
=
{
1
,
2
,
0
};
elementSide
=
renumbering
[
elementSide
];
break
;
}
}
// ///////////////
// init list
// ///////////////
...
...
@@ -565,7 +603,7 @@ void Dune::UGGrid<dim,dimworld>::getChildrenOfSubface(typename Traits::template
&
Sons_of_Side
,
SonList
,
// the output elements
SonSides
,
// Output element side numbers
fals
e
,
// Element sons are not precomputed
tru
e
,
// Element sons are not precomputed
true
);
// ioflag: I have no idea what this is supposed to do
for
(
int
i
=
0
;
i
<
Sons_of_Side
;
i
++
)
...
...
@@ -580,33 +618,33 @@ void Dune::UGGrid<dim,dimworld>::getChildrenOfSubface(typename Traits::template
typename
SLList
<
ListEntryType
>::
iterator
f
=
list
.
begin
();
for
(;
f
!=
list
.
end
();
++
f
)
{
ElementType
*
theElement
=
(
*
f
)
[
0
]
;
int
side
=
(
*
f
)
[
1
]
;
level
=
(
*
f
)
[
2
]
;
ElementType
*
theElement
=
Element
<
0
>::
get
(
*
f
);
int
side
=
Element
<
1
>::
get
(
*
f
);
level
=
Element
<
2
>::
get
(
*
f
);
int
Sons_of_Side
=
0
;
ElementType
*
SonList
[
MAX_SONS
];
int
SonSides
[
MAX_SONS
];
int
Sons_of_Side
=
0
;
ElementType
*
SonList
[
MAX_SONS
];
int
SonSides
[
MAX_SONS
];
if
(
level
<
maxl
)
{
if
(
level
<
maxl
)
{
#ifdef _2
UG2d
::
Get_Sons_of_ElementSide
(
UG2d
::
Get_Sons_of_ElementSide
(
#else
UG3d
::
Get_Sons_of_ElementSide
(
UG3d
::
Get_Sons_of_ElementSide
(
#endif
theElement
,
side
,
// Input element side number
&
Sons_of_Side
,
// Number of topological sons of the element side
SonList
,
// Output elements
SonSides
,
// Output element side numbers
fals
e
,
true
);
theElement
,
side
,
// Input element side number
&
Sons_of_Side
,
// Number of topological sons of the element side
SonList
,
// Output elements
SonSides
,
// Output element side numbers
tru
e
,
true
);
for
(
int
i
=
0
;
i
<
Sons_of_Side
;
i
++
)
list
.
push_back
(
ListEntryType
(
SonList
[
i
],
SonSides
[
i
],
level
+
1
));
for
(
int
i
=
0
;
i
<
Sons_of_Side
;
i
++
)
list
.
push_back
(
ListEntryType
(
SonList
[
i
],
SonSides
[
i
],
level
+
1
));
}
}
}
...
...
@@ -616,11 +654,34 @@ void Dune::UGGrid<dim,dimworld>::getChildrenOfSubface(typename Traits::template
children
.
resize
(
list
.
size
());
int
i
=
0
;
for
(
f
=
list
.
begin
();
f
!=
list
.
end
();
++
f
,
++
i
)
{
children
[
i
][
0
]
=
(
*
f
)[
0
];
children
[
i
][
1
]
=
(
*
f
)[
1
];
children
[
i
][
2
]
=
(
*
f
)[
2
];
int
side
=
Element
<
1
>::
get
(
*
f
);
// Dune numbers the faces of several elements differently than UG.
// The following switch does the transformation
switch
(
e
->
geometry
().
type
())
{
case
hexahedron
:
{
const
int
renumbering
[
6
]
=
{
4
,
2
,
1
,
3
,
0
,
5
};
side
=
renumbering
[
side
];
break
;
}
case
tetrahedron
:
{
const
int
renumbering
[
4
]
=
{
3
,
0
,
1
,
2
};
side
=
renumbering
[
side
];
break
;
}
case
triangle
:
{
const
int
renumbering
[
3
]
=
{
2
,
0
,
1
};
side
=
renumbering
[
side
];
break
;
}
}
children
[
i
][
0
]
=
UG_NS
<
dim
>::
index
(
Element
<
0
>::
get
(
*
f
));
children
[
i
][
1
]
=
side
;
children
[
i
][
2
]
=
Element
<
2
>::
get
(
*
f
);
}
#endif
}
template
<
int
dim
,
int
dimworld
>
...
...
@@ -648,7 +709,7 @@ void Dune::UGGrid < dim, dimworld >::loadBalance(int strategy, int minlevel, int
argStrings
[
3
].
c_str
()};
#ifdef _2
int
errCode
=
UG2d
::
LBCommand
(
4
,
(
char
**
)
argv
);
int
errCode
=
UG2d
::
LBCommand
(
4
,
(
char
**
)
argv
);
#else
int
errCode
=
UG3d
::
LBCommand
(
4
,
(
char
**
)
argv
);
#endif
...
...
@@ -754,11 +815,9 @@ void Dune::UGGrid < dim, dimworld >::createend()
for
(
theElement
=
multigrid_
->
grids
[
0
]
->
elements
[
0
];
theElement
!=
NULL
;
theElement
=
theElement
->
ge
.
succ
)
UG_NS
<
dim
>::
SetSubdomain
(
theElement
,
1
);
#ifdef _3
UG3d
::
SetEdgeAndNodeSubdomainFromElements
(
multigrid_
->
grids
[
0
]);
#else
UG2d
::
SetEdgeAndNodeSubdomainFromElements
(
multigrid_
->
grids
[
0
]);
#endif
// Complete the subdomain structure
// From namespace UG?d
SetEdgeAndNodeSubdomainFromElements
(
multigrid_
->
grids
[
0
]);
// Complete the UG-internal grid data structure
#ifdef _3
...
...
@@ -769,9 +828,10 @@ void Dune::UGGrid < dim, dimworld >::createend()
DUNE_THROW
(
IOError
,
"Call of 'UG::CreateAlgebra' failed!"
);
/* here all temp memory since CreateMultiGrid is released */
#define ReleaseTmpMem(p,k) Release(p, UG::FROM_TOP,k)
ReleaseTmpMem
(
multigrid_
->
theHeap
,
multigrid_
->
MarkKey
);
#undef ReleaseTmpMem
// #define ReleaseTmpMem(p,k) Release(p, UG::FROM_TOP,k)
// ReleaseTmpMem(multigrid_->theHeap, multigrid_->MarkKey);
// #undef ReleaseTmpMem
Release
(
multigrid_
->
theHeap
,
UG
::
FROM_TOP
,
multigrid_
->
MarkKey
);
multigrid_
->
MarkKey
=
0
;
// Set the local indices
...
...
@@ -783,6 +843,7 @@ void Dune::UGGrid < dim, dimworld >::createend()
template
<
int
dim
,
int
dimworld
>
void
Dune
::
UGGrid
<
dim
,
dimworld
>::
setLocalIndices
()
{
#ifndef UGGRID_WITH_INDEX_SETS
// Renumber everything
for
(
int
i
=
0
;
i
<=
maxlevel
();
i
++
)
{
...
...
@@ -801,5 +862,5 @@ void Dune::UGGrid < dim, dimworld >::setLocalIndices()
UG_NS
<
dim
>::
index
(
getRealEntity
<
dim
>
(
*
vIt
).
target_
)
=
id
++
;
}
#endif
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment