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
Commits
48b9358e
Commit
48b9358e
authored
2 weeks ago
by
Sander, Oliver
Browse files
Options
Downloads
Patches
Plain Diff
Fix building EmbeddedGlobalGFEFunction with the 2.9 branch of dune-fufem
parent
d4da6401
No related branches found
Branches containing commit
No related tags found
1 merge request
!181
Improve handling of local functions
Pipeline
#17519
failed
1 week ago
Stage: .pre
Stage: test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/gfe/functions/embeddedglobalgfefunction.hh
+4
-2
4 additions, 2 deletions
dune/gfe/functions/embeddedglobalgfefunction.hh
with
4 additions
and
2 deletions
dune/gfe/functions/embeddedglobalgfefunction.hh
+
4
−
2
View file @
48b9358e
...
...
@@ -177,7 +177,8 @@ namespace Dune::GFE
localCoeff
[
i
]
=
this
->
dofs
()[
localView
.
index
(
i
)];
// create local gfe function
LocalInterpolationRule
localInterpolationRule
(
localView
.
tree
().
finiteElement
(),
localCoeff
);
LocalInterpolationRule
localInterpolationRule
(
localView
.
globalBasis
());
localInterpolationRule
.
bind
(
element
,
localCoeff
);
return
localInterpolationRule
.
evaluate
(
local
).
globalCoordinates
();
}
...
...
@@ -201,7 +202,8 @@ namespace Dune::GFE
localCoeff
[
i
]
=
this
->
dofs
()[
localView
.
index
(
i
)];
// create local gfe function
LocalInterpolationRule
localInterpolationRule
(
localView
.
tree
().
finiteElement
(),
localCoeff
);
LocalInterpolationRule
localInterpolationRule
(
localView
.
globalBasis
());
localInterpolationRule
.
bind
(
element
,
localCoeff
);
// use it to evaluate the derivative
auto
refJac
=
localInterpolationRule
.
evaluateDerivative
(
local
);
...
...
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