Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
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
Container Registry
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
dumux-repositories
dumux
Commits
f4a882f4
Commit
f4a882f4
authored
11 months ago
by
Dennis Gläser
Committed by
Timo Koch
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
[facet][cc][localres] do not bring in parent overloads
parent
bd6fb320
No related branches found
No related tags found
1 merge request
!3774
Fix/facet coupling on boundary
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/multidomain/facet/cellcentered/localresidual.hh
+7
-1
7 additions, 1 deletion
dumux/multidomain/facet/cellcentered/localresidual.hh
with
7 additions
and
1 deletion
dumux/multidomain/facet/cellcentered/localresidual.hh
+
7
−
1
View file @
f4a882f4
...
...
@@ -15,6 +15,8 @@
#ifndef DUMUX_FACETCOUPLING_CC_LOCAL_RESIDUAL_HH
#define DUMUX_FACETCOUPLING_CC_LOCAL_RESIDUAL_HH
#include
<utility>
#include
<dumux/common/properties.hh>
#include
<dumux/common/numeqvector.hh>
#include
<dumux/assembly/cclocalresidual.hh>
...
...
@@ -50,8 +52,12 @@ public:
//! export the type used for element residuals
using
ElementResidualVector
=
typename
ParentType
::
ElementResidualVector
;
//! evaluate the flux residual for a sub control volume face and add to residual
template
<
class
...
Args
>
void
evalFlux
(
ElementResidualVector
&
residual
,
Args
&&
...
args
)
const
{
ParentType
::
evalFlux
(
residual
,
std
::
forward
<
Args
>
(
args
)...);
}
//! evaluate the flux residual for a sub control volume face
using
ParentType
::
evalFlux
;
template
<
class
Problem
>
NumEqVector
evalFlux
(
const
Problem
&
problem
,
const
Element
&
element
,
...
...
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