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
619deaed
Commit
619deaed
authored
5 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[3pwateroil][localresidual] Clean-up
parent
a1c2c41d
No related branches found
No related tags found
1 merge request
!1696
Feature/diffusion laws mass refvelocity
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/porousmediumflow/3pwateroil/localresidual.hh
+14
-34
14 additions, 34 deletions
dumux/porousmediumflow/3pwateroil/localresidual.hh
with
14 additions
and
34 deletions
dumux/porousmediumflow/3pwateroil/localresidual.hh
+
14
−
34
View file @
619deaed
...
@@ -33,8 +33,6 @@ namespace Dumux {
...
@@ -33,8 +33,6 @@ namespace Dumux {
* \ingroup ThreePWaterOilModel
* \ingroup ThreePWaterOilModel
* \brief Element-wise calculation of the local residual for problems
* \brief Element-wise calculation of the local residual for problems
* using the ThreePWaterOil fully implicit model.
* using the ThreePWaterOil fully implicit model.
*
* This class is used to fill the gaps in the CompositionalLocalResidual for the 3PWaterOil flow.
*/
*/
template
<
class
TypeTag
>
template
<
class
TypeTag
>
class
ThreePWaterOilLocalResidual
:
public
GetPropType
<
TypeTag
,
Properties
::
BaseLocalResidual
>
class
ThreePWaterOilLocalResidual
:
public
GetPropType
<
TypeTag
,
Properties
::
BaseLocalResidual
>
...
@@ -172,46 +170,28 @@ public:
...
@@ -172,46 +170,28 @@ public:
//! Add diffusive energy fluxes. For isothermal model the contribution is zero.
//! Add diffusive energy fluxes. For isothermal model the contribution is zero.
EnergyLocalResidual
::
heatConductionFlux
(
flux
,
fluxVars
);
EnergyLocalResidual
::
heatConductionFlux
(
flux
,
fluxVars
);
const
auto
diffusionFluxesWPhase
=
fluxVars
.
molecularDiffusionFlux
(
wPhaseIdx
);
auto
referenceSystemFormulation
=
FluxVariables
::
MolecularDiffusionType
::
referenceSystemFormulation
();
Scalar
jNW
=
0.0
;
Scalar
jWW
=
0.0
;
// diffusive fluxes
// diffusive fluxes
//check for the reference system and adapt units of the diffusive flux accordingly.
auto
referenceSystemFormulation
=
FluxVariables
::
MolecularDiffusionType
::
referenceSystemFormulation
();
const
auto
diffusionFluxesWPhase
=
fluxVars
.
molecularDiffusionFlux
(
wPhaseIdx
);
Scalar
jNW
=
diffusionFluxesWPhase
[
nCompIdx
];
// check for the reference system and adapt units of the diffusive flux accordingly.
if
(
referenceSystemFormulation
==
ReferenceSystemFormulation
::
massAveraged
)
if
(
referenceSystemFormulation
==
ReferenceSystemFormulation
::
massAveraged
)
jNW
+=
diffusionFluxesWPhase
[
nCompIdx
]
/
FluidSystem
::
molarMass
(
nCompIdx
);
jNW
/=
FluidSystem
::
molarMass
(
nCompIdx
);
else
if
(
referenceSystemFormulation
==
ReferenceSystemFormulation
::
molarAveraged
)
const
Scalar
jWW
=
-
jNW
;
jNW
+=
diffusionFluxesWPhase
[
nCompIdx
];
else
DUNE_THROW
(
Dune
::
NotImplemented
,
"other reference systems than mass and molar averaged are not implemented"
);
jWW
+=
-
(
jNW
);
const
auto
diffusionFluxesGPhase
=
fluxVars
.
molecularDiffusionFlux
(
gPhaseIdx
);
const
auto
diffusionFluxesGPhase
=
fluxVars
.
molecularDiffusionFlux
(
gPhaseIdx
);
Scalar
jWG
=
diffusionFluxesGPhase
[
wCompIdx
];
Scalar
jWG
=
0.0
;
// check for the reference system and adapt units of the diffusive flux accordingly.
Scalar
jNG
=
0.0
;
if
(
referenceSystemFormulation
==
ReferenceSystemFormulation
::
massAveraged
)
if
(
referenceSystemFormulation
==
ReferenceSystemFormulation
::
massAveraged
)
jWG
+=
diffusionFluxesGPhase
[
wCompIdx
]
/
FluidSystem
::
molarMass
(
wCompIdx
);
jWG
/=
FluidSystem
::
molarMass
(
wCompIdx
);
else
const
Scalar
jNG
=
-
jWG
;
jWG
+=
diffusionFluxesGPhase
[
wCompIdx
];
jNG
+=
-
(
jWG
);
const
auto
diffusionFluxesNPhase
=
fluxVars
.
molecularDiffusionFlux
(
nPhaseIdx
);
const
auto
diffusionFluxesNPhase
=
fluxVars
.
molecularDiffusionFlux
(
nPhaseIdx
);
Scalar
jWN
=
diffusionFluxesNPhase
[
wCompIdx
];
Scalar
jWN
=
0.0
;
// check for the reference system and adapt units of the diffusive flux accordingly.
Scalar
jNN
=
0.0
;
if
(
referenceSystemFormulation
==
ReferenceSystemFormulation
::
massAveraged
)
if
(
referenceSystemFormulation
==
ReferenceSystemFormulation
::
massAveraged
)
jWN
+=
diffusionFluxesNPhase
[
wCompIdx
]
/
FluidSystem
::
molarMass
(
wCompIdx
);
jWN
/=
FluidSystem
::
molarMass
(
wCompIdx
);
else
const
Scalar
jNN
=
-
jWN
;
jWN
+=
diffusionFluxesNPhase
[
wCompIdx
];
jNN
+=
-
jWN
;
flux
[
conti0EqIdx
]
+=
jWW
+
jWG
+
jWN
;
flux
[
conti0EqIdx
]
+=
jWW
+
jWG
+
jWN
;
flux
[
conti1EqIdx
]
+=
jNW
+
jNG
+
jNN
;
flux
[
conti1EqIdx
]
+=
jNW
+
jNG
+
jNN
;
...
...
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