Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gfe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
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
Sander, Oliver
dune-gfe
Merge requests
!48
Migrate from dune-fufem to dune-functions bases
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Migrate from dune-fufem to dune-functions bases
lnebel/dune-gfe:migration
into
master
Overview
71
Commits
4
Pipelines
79
Changes
1
Merged
Nebel, Lisa Julia
requested to merge
lnebel/dune-gfe:migration
into
master
4 years ago
Overview
71
Commits
4
Pipelines
79
Changes
1
Expand
Migrate from dune-fufem to dune-functions bases.
Edited
4 years ago
by
Nebel, Lisa Julia
0
0
Merge request reports
Viewing commit
abb4c734
Show latest version
1 file
+
4
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
abb4c734
Small correction in localenergy.hh
· abb4c734
Lisa Julia Nebel
authored
4 years ago
dune/gfe/localenergy.hh
+
4
−
9
Options
@@ -3,9 +3,7 @@
#include
<vector>
namespace
Dune
{
namespace
GFE
{
namespace
Dune
::
GFE
{
/** \brief Base class for energies defined by integrating over one grid element */
template
<
class
Basis
,
class
TargetSpace
>
@@ -16,11 +14,9 @@ public:
/** \brief Compute the energy
*
* \param localView Local view specifying the current element and the FE space there
* \param
coefficients
The coefficients of a FE function on the current element
* \param
localSolution
The coefficients of a FE function on the current element
*/
virtual
typename
TargetSpace
::
ctype
energy
(
const
typename
Basis
::
LocalView
&
localView
,
const
std
::
vector
<
TargetSpace
>&
localSolution
)
const
=
0
;
virtual
typename
TargetSpace
::
ctype
energy
(
const
typename
Basis
::
LocalView
&
localView
,
const
std
::
vector
<
TargetSpace
>&
localSolution
)
const
=
0
;
/** Empty virtual default destructor
*
@@ -30,9 +26,8 @@ public:
};
}
// namespace GFE
}
// namespace
Dune::
GFE
}
// namespace Dune
#endif // DUNE_GFE_LOCALENERGY_HH
Loading