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
967078c6
Commit
967078c6
authored
5 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[ccmpfa][fickslaw] Clean-up
parent
b42a5109
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1696
Feature/diffusion laws mass refvelocity
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/flux/ccmpfa/fickslaw.hh
+4
-5
4 additions, 5 deletions
dumux/flux/ccmpfa/fickslaw.hh
with
4 additions
and
5 deletions
dumux/flux/ccmpfa/fickslaw.hh
+
4
−
5
View file @
967078c6
...
@@ -250,25 +250,24 @@ private:
...
@@ -250,25 +250,24 @@ private:
// use arithmetic mean of the densities around the scvf
// use arithmetic mean of the densities around the scvf
if
(
!
scvf
.
boundary
())
if
(
!
scvf
.
boundary
())
{
{
const
auto
rhoInside
=
Dumux
::
massOrMolarDensity
(
elemVolVars
[
scvf
.
insideScvIdx
()],
referenceSystem
,
phaseIdx
);
const
Scalar
rhoInside
=
massOrMolarDensity
(
elemVolVars
[
scvf
.
insideScvIdx
()],
referenceSystem
,
phaseIdx
);
Scalar
rho
=
rhoInside
;
Scalar
rho
=
rhoInside
;
for
(
const
auto
outsideIdx
:
scvf
.
outsideScvIndices
())
for
(
const
auto
outsideIdx
:
scvf
.
outsideScvIndices
())
{
{
const
auto
rhoOutside
=
Dumux
::
massOrMolarDensity
(
elemVolVars
[
outsideIdx
],
referenceSystem
,
phaseIdx
);
const
Scalar
rhoOutside
=
massOrMolarDensity
(
elemVolVars
[
outsideIdx
],
referenceSystem
,
phaseIdx
);
rho
+=
rhoOutside
;
rho
+=
rhoOutside
;
}
}
return
rho
/
(
scvf
.
outsideScvIndices
().
size
()
+
1
);
return
rho
/
(
scvf
.
outsideScvIndices
().
size
()
+
1
);
}
}
else
else
return
Dumux
::
massOrMolarDensity
(
elemVolVars
[
scvf
.
outsideScvIdx
()],
referenceSystem
,
phaseIdx
);
return
massOrMolarDensity
(
elemVolVars
[
scvf
.
outsideScvIdx
()],
referenceSystem
,
phaseIdx
);
}
}
//! Here we want to calculate the factors with which the diffusion coefficient has to be
//! Here we want to calculate the factors with which the diffusion coefficient has to be
//! scaled to get the effective diffusivity. For this we use the effective diffusivity with
//! scaled to get the effective diffusivity. For this we use the effective diffusivity with
//! a diffusion coefficient of 1.0 as input. Then we scale the transmissibilites during flux
//! a diffusion coefficient of 1.0 as input. Then we scale the transmissibilites during flux
//
//! calculation (above) with the harmonic average of the two factors
//! calculation (above) with the harmonic average of the two factors
static
Scalar
computeEffectivityFactor
(
const
ElementVolumeVariables
&
elemVolVars
,
static
Scalar
computeEffectivityFactor
(
const
ElementVolumeVariables
&
elemVolVars
,
const
SubControlVolumeFace
&
scvf
,
const
SubControlVolumeFace
&
scvf
,
const
unsigned
int
phaseIdx
)
const
unsigned
int
phaseIdx
)
...
...
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