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
55c16e86
Commit
55c16e86
authored
5 years ago
by
Ned Coltman
Browse files
Options
Downloads
Patches
Plain Diff
[maxwellstefan] Add documentation for the maxwellstefan container
parent
879eeac2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1684
Improve effective laws
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/flux/maxwellstefandiffusioncoefficients.hh
+26
-3
26 additions, 3 deletions
dumux/flux/maxwellstefandiffusioncoefficients.hh
with
26 additions
and
3 deletions
dumux/flux/maxwellstefandiffusioncoefficients.hh
+
26
−
3
View file @
55c16e86
...
@@ -19,8 +19,9 @@
...
@@ -19,8 +19,9 @@
/*!
/*!
* \file
* \file
* \ingroup Flux
* \ingroup Flux
* \brief Container storing the diffusion coefficients required by Fick's law.
* \brief Container storing the diffusion coefficients required by the Maxwell-
* Uses the minimal possible container size and provides unified access.
* Stefan diffusion law. Uses the minimal possible container size and
* provides unified access.
*/
*/
#ifndef DUMUX_DISCRETIZATION_MAXWELLSTEFAN_DIFFUSION_COEFFICIENTS_HH
#ifndef DUMUX_DISCRETIZATION_MAXWELLSTEFAN_DIFFUSION_COEFFICIENTS_HH
#define DUMUX_DISCRETIZATION_MAXWELLSTEFAN_DIFFUSION_COEFFICIENTS_HH
#define DUMUX_DISCRETIZATION_MAXWELLSTEFAN_DIFFUSION_COEFFICIENTS_HH
...
@@ -60,7 +61,29 @@ public:
...
@@ -60,7 +61,29 @@ public:
}
}
private
:
private
:
std
::
array
<
Scalar
,
(
numPhases
*
((
numComponents
*
numComponents
-
numComponents
)
/
2
))
>
diffCoeff_
;
/*!
* \brief Maxwell Stefan diffusion coefficient container.
* This container is sized to hold all required diffusion coefficients.
*
* For each phase "(numPhases * ("
* We have a square coefficient matrix sized by
* the number of components "((numComponents * numComponents)".
* The diagonal is not used and removed " - numComponents)".
* The matrix is symmetrical, but only the upper triangle is required " / 2))".
*/
std
::
array
<
Scalar
,
(
numPhases
*
(((
numComponents
*
numComponents
)
-
numComponents
)
/
2
))
>
diffCoeff_
;
/*!
* \brief Index logic for collecting the correct diffusion coefficient from the container.
*
* First, we advance our index to the correct phase coefficient matrix:
* " phaseIdx * ((numComponents * numComponents - numComponents) / 2) ".
* The individual index within each phase matrix is then calculated using
* " i*n - (i^2+i)/2 + j-(i+1) ".
*
* This index calculation can be reduced from the following:
* https://stackoverflow.com/questions/27086195/
*/
const
int
getIndex_
(
int
phaseIdx
,
int
compIIdx
,
int
compJIdx
)
const
const
int
getIndex_
(
int
phaseIdx
,
int
compIIdx
,
int
compJIdx
)
const
{
{
return
phaseIdx
*
((
numComponents
*
numComponents
-
numComponents
)
/
2
)
return
phaseIdx
*
((
numComponents
*
numComponents
-
numComponents
)
/
2
)
...
...
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