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
9601c992
Commit
9601c992
authored
7 years ago
by
Dennis Gläser
Browse files
Options
Downloads
Patches
Plain Diff
[mpfa][fluxvarcachefiller] avoid code duplication
parent
37e935ba
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/discretization/cellcentered/mpfa/fluxvariablescachefiller.hh
+16
-31
16 additions, 31 deletions
...cretization/cellcentered/mpfa/fluxvariablescachefiller.hh
with
16 additions
and
31 deletions
dumux/discretization/cellcentered/mpfa/fluxvariablescachefiller.hh
+
16
−
31
View file @
9601c992
...
...
@@ -189,45 +189,30 @@ private:
// First we upate data which are not dependent on the physical processes.
// We store pointers to the other flux var caches, so that we have to obtain
// this data only once and can use it again in the sub-cache fillers.
if
(
forceUpdateAll
)
{
const
auto
numGlobalScvfs
=
iv
.
localFaceData
().
size
();
std
::
vector
<
const
SubControlVolumeFace
*>
ivScvfs
(
numGlobalScvfs
);
std
::
vector
<
FluxVariablesCache
*>
ivFluxVarCaches
(
numGlobalScvfs
);
const
auto
numGlobalScvfs
=
iv
.
localFaceData
().
size
();
std
::
vector
<
const
SubControlVolumeFace
*>
ivScvfs
(
numGlobalScvfs
);
std
::
vector
<
FluxVariablesCache
*>
ivFluxVarCaches
(
numGlobalScvfs
);
unsigned
int
i
=
0
;
for
(
const
auto
&
d
:
iv
.
localFaceData
())
{
// obtain the scvf
const
auto
&
scvfJ
=
fvGeometry
().
scvf
(
d
.
globalScvfIndex
());
ivScvfs
[
i
]
=
&
scvfJ
;
ivFluxVarCaches
[
i
]
=
&
fluxVarsCacheContainer
[
scvfJ
];
ivFluxVarCaches
[
i
]
->
setIvIndexInContainer
(
ivIndexInContainer
);
ivFluxVarCaches
[
i
]
->
setUpdateStatus
(
true
);
i
++
;
}
unsigned
int
i
=
0
;
for
(
const
auto
&
d
:
iv
.
localFaceData
())
{
// obtain the scvf
const
auto
&
scvfJ
=
fvGeometry
().
scvf
(
d
.
globalScvfIndex
());
ivScvfs
[
i
]
=
&
scvfJ
;
ivFluxVarCaches
[
i
]
=
&
fluxVarsCacheContainer
[
scvfJ
];
ivFluxVarCaches
[
i
]
->
setIvIndexInContainer
(
ivIndexInContainer
);
ivFluxVarCaches
[
i
]
->
setUpdateStatus
(
true
);
i
++
;
}
if
(
forceUpdateAll
)
{
fillAdvection
(
fluxVarsCacheContainer
,
iv
,
handle
,
ivScvfs
,
ivFluxVarCaches
);
fillDiffusion
(
fluxVarsCacheContainer
,
iv
,
handle
,
ivScvfs
,
ivFluxVarCaches
);
fillHeatConduction
(
fluxVarsCacheContainer
,
iv
,
handle
,
ivScvfs
,
ivFluxVarCaches
);
}
else
{
const
auto
numGlobalScvfs
=
iv
.
localFaceData
().
size
();
std
::
vector
<
const
SubControlVolumeFace
*>
ivScvfs
(
numGlobalScvfs
);
std
::
vector
<
FluxVariablesCache
*>
ivFluxVarCaches
(
numGlobalScvfs
);
unsigned
int
i
=
0
;
for
(
const
auto
&
d
:
iv
.
localFaceData
())
{
// the iv index has been set already
const
auto
&
scvfJ
=
fvGeometry
().
scvf
(
d
.
globalScvfIndex
());
ivScvfs
[
i
]
=
&
scvfJ
;
ivFluxVarCaches
[
i
]
=
&
fluxVarsCacheContainer
[
scvfJ
];
ivFluxVarCaches
[
i
]
->
setUpdateStatus
(
true
);
i
++
;
}
if
(
doAdvection
&&
soldependentAdvection
)
fillAdvection
(
fluxVarsCacheContainer
,
iv
,
handle
,
ivScvfs
,
ivFluxVarCaches
);
if
(
doDiffusion
&&
soldependentDiffusion
)
...
...
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