Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-elasticity
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
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
Patrick Jaap
dune-elasticity
Commits
8b5616b7
Commit
8b5616b7
authored
11 years ago
by
akbib
Committed by
akbib
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add dummy implementation of a pure virtual method from the base class.
[[Imported from SVN: r12622]]
parent
5a2ed7b8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/elasticity/assemblers/ogdenassembler.hh
+9
-1
9 additions, 1 deletion
dune/elasticity/assemblers/ogdenassembler.hh
with
9 additions
and
1 deletion
dune/elasticity/assemblers/ogdenassembler.hh
+
9
−
1
View file @
8b5616b7
...
...
@@ -101,8 +101,16 @@ template <class GridType, class TrialLocalFE, class AnsatzLocalFE>
const
Dune
::
BlockVector
<
Dune
::
FieldVector
<
double
,
dim
>
>&
localSolution
,
LocalMatrix
&
localMatrix
,
Dune
::
BlockVector
<
Dune
::
FieldVector
<
double
,
dim
>
>&
localRhs
,
const
TrialLocalFE
&
tFE
,
const
AnsatzLocalFE
&
aFE
)
const
;
// This method is never actually called, it's just here to implement all pure virtual functions
void
assemble
(
const
Element
&
element
,
LocalMatrix
&
localMatrix
,
const
TrialLocalFE
&
tFE
,
const
AnsatzLocalFE
&
aFE
)
const
{
// dummy
Dune
::
BlockVector
<
Dune
::
FieldVector
<
double
,
dim
>
>
localSol
(
tFE
.
localBasis
().
size
());
localSol
=
0
;
assemble
(
element
,
localSol
,
localMatrix
,
tFE
,
aFE
);
}
};
...
...
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