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
373e27de
Commit
373e27de
authored
7 years ago
by
Katharina Heck
Committed by
Timo Koch
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[fix][material] adapt thermalconductivitysimplefluidlumping to new strucutre
parent
466ab780
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!666
Feature/mpnc on next
,
!617
[WIP] Next
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/material/fluidmatrixinteractions/2p/thermalconductivitysimplefluidlumping.hh
+12
-10
12 additions, 10 deletions
...xinteractions/2p/thermalconductivitysimplefluidlumping.hh
with
12 additions
and
10 deletions
dumux/material/fluidmatrixinteractions/2p/thermalconductivitysimplefluidlumping.hh
+
12
−
10
View file @
373e27de
...
@@ -25,23 +25,25 @@
...
@@ -25,23 +25,25 @@
#define THERMALCONDUCTIVITY_SIMPLE_FLUID_LUMPING_HH
#define THERMALCONDUCTIVITY_SIMPLE_FLUID_LUMPING_HH
#include
<algorithm>
#include
<algorithm>
#include
<dumux/
porousmediumflow/mpnc/implicit
/properties.hh>
#include
<dumux/
common
/properties.hh>
namespace
Dumux
namespace
Dumux
{
{
struct
SimpleLumpingIndices
{
static
const
int
wPhaseIdx
=
0
;
static
const
int
nPhaseIdx
=
1
;
};
/*!
/*!
* \ingroup fluidmatrixinteractionslaws
* \ingroup fluidmatrixinteractionslaws
* \brief Relation for the saturation-dependent effective thermal conductivity
* \brief Relation for the saturation-dependent effective thermal conductivity
* \todo This shouldn't depend on TypeTag!!
* \todo This shouldn't depend on TypeTag!!
*/
*/
template
<
class
TypeTag
>
template
<
class
TypeTag
,
class
Scalar
,
class
Indices
=
SimpleLumpingIndices
>
class
ThermalConductivitySimpleFluidLumping
class
ThermalConductivitySimpleFluidLumping
{
{
using
Scalar
=
typename
GET_PROP_TYPE
(
TypeTag
,
Scalar
);
enum
{
numEnergyEquationsFluid
=
GET_PROP_VALUE
(
TypeTag
,
NumEnergyEqFluid
)};
using
Indices
=
typename
GET_PROP_TYPE
(
TypeTag
,
Indices
);
enum
{
numEnergyEquations
=
GET_PROP_VALUE
(
TypeTag
,
NumEnergyEquations
)};
public
:
public
:
/*!
/*!
...
@@ -55,12 +57,12 @@ public:
...
@@ -55,12 +57,12 @@ public:
*
*
* \return effective thermal conductivity \f$\mathrm{[W/(m K)]}\f$
* \return effective thermal conductivity \f$\mathrm{[W/(m K)]}\f$
*/
*/
template
<
class
VolumeVariables
,
class
SpatialParams
,
class
Element
,
class
FVGeometry
>
template
<
class
VolumeVariables
,
class
SpatialParams
,
class
Element
,
class
FVGeometry
,
class
SubControlVolume
>
static
Scalar
effectiveThermalConductivity
(
const
VolumeVariables
&
volVars
,
static
Scalar
effectiveThermalConductivity
(
const
VolumeVariables
&
volVars
,
const
SpatialParams
&
spatialParams
,
const
SpatialParams
&
spatialParams
,
const
Element
&
element
,
const
Element
&
element
,
const
FVGeometry
&
fvGeometry
,
const
FVGeometry
&
fvGeometry
,
int
scv
Idx
)
SubControlVolume
&
scv
)
{
{
Scalar
sw
=
volVars
.
saturation
(
Indices
::
wPhaseIdx
);
Scalar
sw
=
volVars
.
saturation
(
Indices
::
wPhaseIdx
);
Scalar
lambdaW
=
volVars
.
fluidThermalConductivity
(
Indices
::
wPhaseIdx
);
Scalar
lambdaW
=
volVars
.
fluidThermalConductivity
(
Indices
::
wPhaseIdx
);
...
@@ -90,7 +92,7 @@ public:
...
@@ -90,7 +92,7 @@ public:
const
Scalar
porosity
,
const
Scalar
porosity
,
const
Scalar
rhoSolid
=
0.0
/*unused*/
)
const
Scalar
rhoSolid
=
0.0
/*unused*/
)
{
{
assert
(
numEnergyEquations
!=
3
)
;
assert
(
numEnergyEquations
Fluid
!=
2
)
;
// Franz Lindner / Shi & Wang 2011
// Franz Lindner / Shi & Wang 2011
using
std
::
max
;
using
std
::
max
;
...
@@ -100,7 +102,7 @@ public:
...
@@ -100,7 +102,7 @@ public:
Scalar
keff
;
Scalar
keff
;
if
(
numEnergyEquations
==
2
){
// solid dealed with individually (extra balance equation)
if
(
numEnergyEquations
Fluid
==
1
){
// solid dealed with individually (extra balance equation)
keff
=
kfeff
;
keff
=
kfeff
;
}
}
else
{
else
{
...
...
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