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
2a5c29a8
Commit
2a5c29a8
authored
6 years ago
by
Dennis Gläser
Committed by
Timo Koch
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[mpfa][elemvolvars] rename detail namespace -> ccmpfa
parent
89de7c0b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1286
[cc/staggered] Do not cache Dirichlet volVars
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/discretization/cellcentered/mpfa/elementvolumevariables.hh
+6
-6
6 additions, 6 deletions
...iscretization/cellcentered/mpfa/elementvolumevariables.hh
with
6 additions
and
6 deletions
dumux/discretization/cellcentered/mpfa/elementvolumevariables.hh
+
6
−
6
View file @
2a5c29a8
...
...
@@ -32,7 +32,7 @@
#include
<dumux/discretization/cellcentered/elementsolution.hh>
namespace
Dumux
{
namespace
Detail
{
namespace
CCMpfa
{
/*!
* \ingroup CCMpfaDiscretization
...
...
@@ -178,7 +178,7 @@ namespace Detail {
gridIvIndexSets
.
secondaryIndexSet
(
scvf
).
nodalIndexSet
()
);
}
}
}
// end namespace
Detail
}
// end namespace
CCMpfa
/*!
* \ingroup CCMpfaDiscretization
...
...
@@ -235,12 +235,12 @@ public:
clear
();
// maybe prepare boundary volume variables
const
auto
maxNumBoundaryVolVars
=
Detail
::
maxNumBoundaryVolVars
(
fvGeometry
);
const
auto
maxNumBoundaryVolVars
=
CCMpfa
::
maxNumBoundaryVolVars
(
fvGeometry
);
if
(
maxNumBoundaryVolVars
>
0
)
{
boundaryVolVars_
.
reserve
(
maxNumBoundaryVolVars
);
boundaryVolVarIndices_
.
reserve
(
maxNumBoundaryVolVars
);
Detail
::
addBoundaryVolVars
(
boundaryVolVars_
,
boundaryVolVarIndices_
,
gridVolVars
().
problem
(),
element
,
fvGeometry
);
CCMpfa
::
addBoundaryVolVars
(
boundaryVolVars_
,
boundaryVolVarIndices_
,
gridVolVars
().
problem
(),
element
,
fvGeometry
);
}
}
...
...
@@ -314,7 +314,7 @@ public:
const
auto
numVolVars
=
assemblyMapI
.
size
()
+
1
;
// resize local containers to the required size (for internal elements)
const
auto
maxNumBoundaryVolVars
=
Detail
::
maxNumBoundaryVolVars
(
fvGeometry
);
const
auto
maxNumBoundaryVolVars
=
CCMpfa
::
maxNumBoundaryVolVars
(
fvGeometry
);
volumeVariables_
.
reserve
(
numVolVars
+
maxNumBoundaryVolVars
);
volVarIndices_
.
reserve
(
numVolVars
+
maxNumBoundaryVolVars
);
...
...
@@ -345,7 +345,7 @@ public:
// maybe prepare boundary volume variables
if
(
maxNumBoundaryVolVars
>
0
)
Detail
::
addBoundaryVolVars
(
volumeVariables_
,
volVarIndices_
,
problem
,
element
,
fvGeometry
);
CCMpfa
::
addBoundaryVolVars
(
volumeVariables_
,
volVarIndices_
,
problem
,
element
,
fvGeometry
);
// //! TODO Check if user added additional DOF dependencies, i.e. the residual of DOF globalI depends
// //! on additional DOFs not included in the discretization schemes' occupation pattern
...
...
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