Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gdt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ag-ohlberger
dune-community
dune-gdt
Commits
1942894b
Commit
1942894b
authored
12 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
[discretefunctionspace.continuous.lagrange] uses stuff.la.container.pattern
parent
aac057e8
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
dune/detailed/discretizations/discretefunctionspace/continuous/lagrange.hh
+21
-24
21 additions, 24 deletions
...cretizations/discretefunctionspace/continuous/lagrange.hh
with
21 additions
and
24 deletions
dune/detailed/discretizations/discretefunctionspace/continuous/lagrange.hh
+
21
−
24
View file @
1942894b
#ifndef DUNE_DETAILED_DISCRETIZATIONS_DISCRETEFUNCTIONSPACE_CONTINUOUS_LAGRANGE_HH
#ifndef DUNE_DETAILED_DISCRETIZATIONS_DISCRETEFUNCTIONSPACE_CONTINUOUS_LAGRANGE_HH
#define DUNE_DETAILED_DISCRETIZATIONS_DISCRETEFUNCTIONSPACE_CONTINUOUS_LAGRANGE_HH
#define DUNE_DETAILED_DISCRETIZATIONS_DISCRETEFUNCTIONSPACE_CONTINUOUS_LAGRANGE_HH
// system
#include
<map>
#include
<set>
// dune-common
#include
<dune/common/shared_ptr.hh>
#include
<dune/common/shared_ptr.hh>
// dune-fem includes
#include
<dune/fem/space/lagrangespace.hh>
#include
<dune/fem/space/lagrangespace.hh>
// dune-detailed-discretizations includes
#include
<dune/stuff/la/container/pattern.hh>
#include
<dune/detailed/discretizations/basefunctionset/continuous/lagrange.hh>
#include
<dune/detailed/discretizations/basefunctionset/continuous/lagrange.hh>
#include
<dune/detailed/discretizations/mapper/continuous/lagrange.hh>
#include
<dune/detailed/discretizations/mapper/continuous/lagrange.hh>
...
@@ -44,23 +39,23 @@ public:
...
@@ -44,23 +39,23 @@ public:
typedef
Dune
::
Detailed
::
Discretizations
::
BaseFunctionSet
::
Continuous
::
Lagrange
<
ThisType
>
BaseFunctionSetType
;
typedef
Dune
::
Detailed
::
Discretizations
::
BaseFunctionSet
::
Continuous
::
Lagrange
<
ThisType
>
BaseFunctionSetType
;
typedef
typename
FunctionSpaceType
::
DomainFieldType
DomainFieldType
;
//
typedef typename FunctionSpaceType::DomainFieldType DomainFieldType;
typedef
typename
FunctionSpaceType
::
DomainType
DomainType
;
//
typedef typename FunctionSpaceType::DomainType DomainType;
typedef
typename
FunctionSpaceType
::
RangeFieldType
RangeFieldType
;
//
typedef typename FunctionSpaceType::RangeFieldType RangeFieldType;
typedef
typename
FunctionSpaceType
::
RangeType
RangeType
;
//
typedef typename FunctionSpaceType::RangeType RangeType;
typedef
typename
FunctionSpaceType
::
JacobianRangeType
JacobianRangeType
;
//
typedef typename FunctionSpaceType::JacobianRangeType JacobianRangeType;
typedef
typename
FunctionSpaceType
::
HessianRangeType
HessianRangeType
;
//
typedef typename FunctionSpaceType::HessianRangeType HessianRangeType;
static
const
unsigned
int
dimDomain
=
FunctionSpaceType
::
dimDomain
;
static
const
unsigned
int
dimDomain
=
FunctionSpaceType
::
dimDomain
;
static
const
unsigned
int
dimRange
=
FunctionSpaceType
::
dimRange
;
static
const
unsigned
int
dimRange
=
FunctionSpaceType
::
dimRange
;
typedef
std
::
map
<
unsigned
int
,
std
::
set
<
unsigned
int
>>
PatternType
;
typedef
Dune
::
Stuff
::
LA
::
Container
::
Pattern
::
Default
PatternType
;
Lagrange
(
const
GridPartType
&
gridPart
)
Lagrange
(
const
GridPartType
&
gridPart
)
:
gridPart_
(
gridPart
)
:
gridPart_
(
gridPart
)
...
@@ -99,7 +94,8 @@ public:
...
@@ -99,7 +94,8 @@ public:
Dune
::
shared_ptr
<
PatternType
>
computeLocalPattern
(
const
LocalGridPartType
&
localGridPart
,
Dune
::
shared_ptr
<
PatternType
>
computeLocalPattern
(
const
LocalGridPartType
&
localGridPart
,
const
OtherDiscreteFunctionSpaceType
&
other
)
const
const
OtherDiscreteFunctionSpaceType
&
other
)
const
{
{
Dune
::
shared_ptr
<
PatternType
>
ret
(
new
PatternType
());
typedef
typename
PatternType
::
size_type
size_type
;
Dune
::
shared_ptr
<
PatternType
>
ret
(
new
PatternType
(
mapper_
.
size
()));
PatternType
&
pattern
=
*
ret
;
PatternType
&
pattern
=
*
ret
;
// walk the grid part
// walk the grid part
for
(
typename
LocalGridPartType
::
template
Codim
<
0
>
::
IteratorType
entityIt
=
localGridPart
.
template
begin
<
0
>();
for
(
typename
LocalGridPartType
::
template
Codim
<
0
>
::
IteratorType
entityIt
=
localGridPart
.
template
begin
<
0
>();
...
@@ -107,11 +103,11 @@ public:
...
@@ -107,11 +103,11 @@ public:
++
entityIt
)
{
++
entityIt
)
{
const
typename
LocalGridPartType
::
template
Codim
<
0
>
::
EntityType
&
entity
=
*
entityIt
;
const
typename
LocalGridPartType
::
template
Codim
<
0
>
::
EntityType
&
entity
=
*
entityIt
;
for
(
unsigned
int
i
=
0
;
i
<
baseFunctionSet
().
local
(
entity
).
size
();
++
i
)
{
for
(
unsigned
int
i
=
0
;
i
<
baseFunctionSet
().
local
(
entity
).
size
();
++
i
)
{
const
unsigned
int
globalI
=
map
().
toGlobal
(
entity
,
i
);
const
size_type
globalI
=
map
().
toGlobal
(
entity
,
i
);
std
::
set
<
unsigned
int
>&
rowSet
=
pattern
[
globalI
]
;
typename
PatternType
::
ColumnsType
&
columns
=
pattern
.
columns
(
globalI
)
;
for
(
unsigned
int
j
=
0
;
j
<
other
.
baseFunctionSet
().
local
(
entity
).
size
();
++
j
)
{
for
(
unsigned
int
j
=
0
;
j
<
other
.
baseFunctionSet
().
local
(
entity
).
size
();
++
j
)
{
const
unsigned
int
globalJ
=
other
.
map
().
toGlobal
(
entity
,
j
);
const
size_type
globalJ
=
other
.
map
().
toGlobal
(
entity
,
j
);
rowSet
.
insert
(
globalJ
);
columns
.
insert
(
globalJ
);
}
}
}
}
}
// walk the grid part
}
// walk the grid part
...
@@ -128,7 +124,8 @@ public:
...
@@ -128,7 +124,8 @@ public:
Dune
::
shared_ptr
<
PatternType
>
computeCouplingPattern
(
const
CouplingGridPartType
&
couplingGridPart
,
Dune
::
shared_ptr
<
PatternType
>
computeCouplingPattern
(
const
CouplingGridPartType
&
couplingGridPart
,
const
OutsideDiscreteFunctionSpaceType
&
outerSpace
)
const
const
OutsideDiscreteFunctionSpaceType
&
outerSpace
)
const
{
{
Dune
::
shared_ptr
<
PatternType
>
ret
(
new
PatternType
());
typedef
typename
PatternType
::
size_type
size_type
;
Dune
::
shared_ptr
<
PatternType
>
ret
(
new
PatternType
(
mapper_
.
size
()));
PatternType
&
pattern
=
*
ret
;
PatternType
&
pattern
=
*
ret
;
// walk the coupling grid part
// walk the coupling grid part
for
(
typename
CouplingGridPartType
::
template
Codim
<
0
>
::
IteratorType
entityIt
=
couplingGridPart
.
template
begin
<
0
>();
for
(
typename
CouplingGridPartType
::
template
Codim
<
0
>
::
IteratorType
entityIt
=
couplingGridPart
.
template
begin
<
0
>();
...
@@ -153,11 +150,11 @@ public:
...
@@ -153,11 +150,11 @@ public:
outerSpace
.
baseFunctionSet
().
local
(
outsideNeighbor
);
outerSpace
.
baseFunctionSet
().
local
(
outsideNeighbor
);
// compute pattern
// compute pattern
for
(
unsigned
int
i
=
0
;
i
<
ansatzBaseFunctionSet
.
size
();
++
i
)
{
for
(
unsigned
int
i
=
0
;
i
<
ansatzBaseFunctionSet
.
size
();
++
i
)
{
const
unsigned
int
globalI
=
map
().
toGlobal
(
insideEntity
,
i
);
const
size_type
globalI
=
map
().
toGlobal
(
insideEntity
,
i
);
std
::
set
<
unsigned
int
>&
rowSet
=
pattern
[
globalI
]
;
typename
PatternType
::
ColumnsType
&
columns
=
pattern
.
columns
(
globalI
)
;
for
(
unsigned
int
j
=
0
;
j
<
testBaseFunctionSet
.
size
();
++
j
)
{
for
(
unsigned
int
j
=
0
;
j
<
testBaseFunctionSet
.
size
();
++
j
)
{
const
unsigned
int
globalJ
=
outerSpace
.
map
().
toGlobal
(
outsideNeighbor
,
j
);
const
size_type
globalJ
=
outerSpace
.
map
().
toGlobal
(
outsideNeighbor
,
j
);
rowSet
.
insert
(
globalJ
);
columns
.
insert
(
globalJ
);
}
}
}
// compute pattern
}
// compute pattern
}
// walk the neighbors
}
// walk the neighbors
...
...
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