Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-xt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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-xt
Commits
d436d42a
Commit
d436d42a
authored
6 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
[interfaces.element-functions] some minor fixes and docs
parent
b9a63f9a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/xt/functions/interfaces/element-functions.hh
+48
-7
48 additions, 7 deletions
dune/xt/functions/interfaces/element-functions.hh
with
48 additions
and
7 deletions
dune/xt/functions/interfaces/element-functions.hh
+
48
−
7
View file @
d436d42a
...
@@ -172,7 +172,9 @@ public:
...
@@ -172,7 +172,9 @@ public:
**/
**/
/**
/**
* The number of functions in this set, after being bound to an element.
* The number of functions in this set.
*
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
**/
virtual
size_t
size
(
const
Common
::
Parameter
&
/*param*/
=
{})
const
=
0
;
virtual
size_t
size
(
const
Common
::
Parameter
&
/*param*/
=
{})
const
=
0
;
...
@@ -182,12 +184,15 @@ public:
...
@@ -182,12 +184,15 @@ public:
auto local_function_set = ...;
auto local_function_set = ...;
size_t max_set_size = 0;
size_t max_set_size = 0;
for (auto&& element : grid_view)
for (auto&& element : grid_view)
max_set_size = std::max(max_set_size, local_function_set.bind(element).size());
max_set_size = std::max(max_set_size, local_function_set.bind(element).size(
param
));
assert(max_set_size <= local_function_set.max_size());
assert(max_set_size <= local_function_set.max_size());
\endcode
\endcode
**/
**/
virtual
size_t
max_size
(
const
Common
::
Parameter
&
/*param*/
=
{})
const
=
0
;
virtual
size_t
max_size
(
const
Common
::
Parameter
&
/*param*/
=
{})
const
=
0
;
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
int
order
(
const
Common
::
Parameter
&
/*param*/
=
{})
const
=
0
;
virtual
int
order
(
const
Common
::
Parameter
&
/*param*/
=
{})
const
=
0
;
/**
/**
...
@@ -196,6 +201,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -196,6 +201,9 @@ assert(max_set_size <= local_function_set.max_size());
* \{
* \{
**/
**/
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
void
evaluate
(
const
DomainType
&
/*point_in_reference_element*/
,
virtual
void
evaluate
(
const
DomainType
&
/*point_in_reference_element*/
,
std
::
vector
<
RangeType
>&
/*result*/
,
std
::
vector
<
RangeType
>&
/*result*/
,
const
Common
::
Parameter
&
/*param*/
=
{})
const
const
Common
::
Parameter
&
/*param*/
=
{})
const
...
@@ -204,6 +212,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -204,6 +212,9 @@ assert(max_set_size <= local_function_set.max_size());
"This set of element functions does not provide evaluations, override the 'evaluate' method!"
);
"This set of element functions does not provide evaluations, override the 'evaluate' method!"
);
}
}
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
void
jacobians
(
const
DomainType
&
/*point_in_reference_element*/
,
virtual
void
jacobians
(
const
DomainType
&
/*point_in_reference_element*/
,
std
::
vector
<
DerivativeRangeType
>&
/*result*/
,
std
::
vector
<
DerivativeRangeType
>&
/*result*/
,
const
Common
::
Parameter
&
/*param*/
=
{})
const
const
Common
::
Parameter
&
/*param*/
=
{})
const
...
@@ -212,6 +223,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -212,6 +223,9 @@ assert(max_set_size <= local_function_set.max_size());
"This set of element functions does not provide jacobians, override the 'jacobians' method!"
);
"This set of element functions does not provide jacobians, override the 'jacobians' method!"
);
}
}
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
void
derivatives
(
const
std
::
array
<
size_t
,
d
>&
alpha
,
virtual
void
derivatives
(
const
std
::
array
<
size_t
,
d
>&
alpha
,
const
DomainType
&
point_in_reference_element
,
const
DomainType
&
point_in_reference_element
,
std
::
vector
<
DerivativeRangeType
>&
result
,
std
::
vector
<
DerivativeRangeType
>&
result
,
...
@@ -231,6 +245,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -231,6 +245,9 @@ assert(max_set_size <= local_function_set.max_size());
* \{
* \{
**/
**/
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
std
::
vector
<
RangeType
>
evaluate_set
(
const
DomainType
&
point_in_reference_element
,
virtual
std
::
vector
<
RangeType
>
evaluate_set
(
const
DomainType
&
point_in_reference_element
,
const
Common
::
Parameter
&
param
=
{})
const
const
Common
::
Parameter
&
param
=
{})
const
{
{
...
@@ -239,6 +256,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -239,6 +256,9 @@ assert(max_set_size <= local_function_set.max_size());
return
result
;
return
result
;
}
}
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
std
::
vector
<
DerivativeRangeType
>
jacobians_of_set
(
const
DomainType
&
point_in_reference_element
,
virtual
std
::
vector
<
DerivativeRangeType
>
jacobians_of_set
(
const
DomainType
&
point_in_reference_element
,
const
Common
::
Parameter
&
param
=
{})
const
const
Common
::
Parameter
&
param
=
{})
const
{
{
...
@@ -247,6 +267,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -247,6 +267,9 @@ assert(max_set_size <= local_function_set.max_size());
return
result
;
return
result
;
}
}
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
std
::
vector
<
DerivativeRangeType
>
derivatives_of_set
(
const
std
::
array
<
size_t
,
d
>&
alpha
,
virtual
std
::
vector
<
DerivativeRangeType
>
derivatives_of_set
(
const
std
::
array
<
size_t
,
d
>&
alpha
,
const
DomainType
&
point_in_reference_element
,
const
DomainType
&
point_in_reference_element
,
const
Common
::
Parameter
&
param
=
{})
const
const
Common
::
Parameter
&
param
=
{})
const
...
@@ -263,6 +286,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -263,6 +286,9 @@ assert(max_set_size <= local_function_set.max_size());
* \{
* \{
**/
**/
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
void
evaluate
(
const
DomainType
&
point_in_reference_element
,
virtual
void
evaluate
(
const
DomainType
&
point_in_reference_element
,
std
::
vector
<
R
>&
result
,
std
::
vector
<
R
>&
result
,
const
size_t
row
,
const
size_t
row
,
...
@@ -276,6 +302,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -276,6 +302,9 @@ assert(max_set_size <= local_function_set.max_size());
single_evaluate_helper
<>::
call
(
tmp_values
,
row
,
col
,
result
);
single_evaluate_helper
<>::
call
(
tmp_values
,
row
,
col
,
result
);
}
}
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
void
jacobians
(
const
DomainType
&
point_in_reference_element
,
virtual
void
jacobians
(
const
DomainType
&
point_in_reference_element
,
std
::
vector
<
SingleDerivativeRangeType
>&
result
,
std
::
vector
<
SingleDerivativeRangeType
>&
result
,
const
size_t
row
,
const
size_t
row
,
...
@@ -289,6 +318,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -289,6 +318,9 @@ assert(max_set_size <= local_function_set.max_size());
single_derivative_helper
<>::
call
(
tmp_values
,
row
,
col
,
result
);
single_derivative_helper
<>::
call
(
tmp_values
,
row
,
col
,
result
);
}
}
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
void
derivatives
(
const
std
::
array
<
size_t
,
d
>&
alpha
,
virtual
void
derivatives
(
const
std
::
array
<
size_t
,
d
>&
alpha
,
const
DomainType
&
point_in_reference_element
,
const
DomainType
&
point_in_reference_element
,
std
::
vector
<
SingleDerivativeRangeType
>&
result
,
std
::
vector
<
SingleDerivativeRangeType
>&
result
,
...
@@ -310,6 +342,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -310,6 +342,9 @@ assert(max_set_size <= local_function_set.max_size());
* \{
* \{
**/
**/
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
void
evaluate
(
const
DomainType
&
point_in_reference_element
,
virtual
void
evaluate
(
const
DomainType
&
point_in_reference_element
,
std
::
vector
<
DynamicRangeType
>&
result
,
std
::
vector
<
DynamicRangeType
>&
result
,
const
Common
::
Parameter
&
param
=
{})
const
const
Common
::
Parameter
&
param
=
{})
const
...
@@ -328,6 +363,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -328,6 +363,9 @@ assert(max_set_size <= local_function_set.max_size());
RangeSelector
::
convert
((
*
tmp_result
)[
ii
],
result
[
ii
]);
RangeSelector
::
convert
((
*
tmp_result
)[
ii
],
result
[
ii
]);
}
// ... evaluate(...)
}
// ... evaluate(...)
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
void
jacobians
(
const
DomainType
&
point_in_reference_element
,
virtual
void
jacobians
(
const
DomainType
&
point_in_reference_element
,
std
::
vector
<
DynamicDerivativeRangeType
>&
result
,
std
::
vector
<
DynamicDerivativeRangeType
>&
result
,
const
Common
::
Parameter
&
param
=
{})
const
const
Common
::
Parameter
&
param
=
{})
const
...
@@ -346,6 +384,9 @@ assert(max_set_size <= local_function_set.max_size());
...
@@ -346,6 +384,9 @@ assert(max_set_size <= local_function_set.max_size());
DerivativeRangeSelector
::
convert
((
*
tmp_result
)[
ii
],
result
[
ii
]);
DerivativeRangeSelector
::
convert
((
*
tmp_result
)[
ii
],
result
[
ii
]);
}
// ... jacobians(...)
}
// ... jacobians(...)
/**
* \note Will throw Exceptions::not_bound_to_an_element_yet error if not bound yet!
**/
virtual
void
derivatives
(
const
std
::
array
<
size_t
,
d
>&
alpha
,
virtual
void
derivatives
(
const
std
::
array
<
size_t
,
d
>&
alpha
,
const
DomainType
&
point_in_reference_element
,
const
DomainType
&
point_in_reference_element
,
std
::
vector
<
DynamicDerivativeRangeType
>&
result
,
std
::
vector
<
DynamicDerivativeRangeType
>&
result
,
...
@@ -372,10 +413,10 @@ protected:
...
@@ -372,10 +413,10 @@ protected:
#ifndef DUNE_XT_FUNCTIONS_DISABLE_CHECKS
#ifndef DUNE_XT_FUNCTIONS_DISABLE_CHECKS
void
assert_inside_reference_element
(
const
DomainType
&
point_in_reference_element
)
const
void
assert_inside_reference_element
(
const
DomainType
&
point_in_reference_element
)
const
{
{
if
(
!
ReferenceElements
<
D
,
d
>::
general
(
element
().
type
()).
checkInside
(
point_in_reference_element
))
{
if
(
!
ReferenceElements
<
D
,
d
>::
general
(
this
->
element
().
geometry
().
type
()).
checkInside
(
point_in_reference_element
))
{
std
::
stringstream
error_message
;
std
::
stringstream
error_message
;
error_message
<<
"Given point_in_reference_element is not inside the current element!
\n\n
"
;
error_message
<<
"Given point_in_reference_element is not inside the current
elements reference
element!
\n\n
"
;
XT
::
Grid
::
print_entity
(
element
(),
XT
::
Common
::
Typename
<
E
>::
value
(),
error_message
,
" "
);
XT
::
Grid
::
print_entity
(
this
->
element
(),
XT
::
Common
::
Typename
<
E
>::
value
(),
error_message
,
" "
);
error_message
<<
"
\n
point_in_reference_element = "
<<
point_in_reference_element
<<
std
::
endl
;
error_message
<<
"
\n
point_in_reference_element = "
<<
point_in_reference_element
<<
std
::
endl
;
DUNE_THROW
(
XT
::
Functions
::
Exceptions
::
wrong_input_given
,
error_message
.
str
());
DUNE_THROW
(
XT
::
Functions
::
Exceptions
::
wrong_input_given
,
error_message
.
str
());
}
}
...
@@ -408,8 +449,8 @@ private:
...
@@ -408,8 +449,8 @@ private:
template
<
size_t
_r
=
r
,
size_t
_rC
=
rC
,
bool
anything
=
true
>
template
<
size_t
_r
=
r
,
size_t
_rC
=
rC
,
bool
anything
=
true
>
struct
single_evaluate_helper
struct
single_evaluate_helper
{
{
template
<
class
FullType
,
class
SingleType
>
template
<
class
FullType
>
static
void
call
(
const
std
::
vector
<
FullType
>&
val
,
const
size_t
row
,
const
size_t
col
,
std
::
vector
<
SingleType
>&
ret
)
static
void
call
(
const
std
::
vector
<
FullType
>&
val
,
const
size_t
row
,
const
size_t
col
,
std
::
vector
<
R
>&
ret
)
{
{
for
(
size_t
ii
=
0
;
ii
<
val
.
size
();
++
ii
)
for
(
size_t
ii
=
0
;
ii
<
val
.
size
();
++
ii
)
ret
[
ii
]
=
val
[
ii
][
row
][
col
];
ret
[
ii
]
=
val
[
ii
][
row
][
col
];
...
...
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