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
6a37ced1
Commit
6a37ced1
authored
8 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
[liquid2c] Compute density according to composition
parent
ed054eac
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/material/fluidsystems/liquidphase2c.hh
+16
-3
16 additions, 3 deletions
dumux/material/fluidsystems/liquidphase2c.hh
with
16 additions
and
3 deletions
dumux/material/fluidsystems/liquidphase2c.hh
+
16
−
3
View file @
6a37ced1
...
@@ -57,6 +57,8 @@ public:
...
@@ -57,6 +57,8 @@ public:
/****************************************
/****************************************
* Fluid phase related static parameters
* Fluid phase related static parameters
****************************************/
****************************************/
static
constexpr
int
mainCompIdx
=
0
;
static
constexpr
int
secondCompIdx
=
1
;
static
constexpr
int
wPhaseIdx
=
0
;
static
constexpr
int
wPhaseIdx
=
0
;
static
constexpr
int
numPhases
=
1
;
static
constexpr
int
numPhases
=
1
;
static
constexpr
int
numComponents
=
2
;
static
constexpr
int
numComponents
=
2
;
...
@@ -175,8 +177,18 @@ public:
...
@@ -175,8 +177,18 @@ public:
static
Scalar
density
(
const
FluidState
&
fluidState
,
static
Scalar
density
(
const
FluidState
&
fluidState
,
const
int
phaseIdx
)
const
int
phaseIdx
)
{
{
return
density
(
fluidState
.
temperature
(
phaseIdx
),
const
Scalar
T
=
fluidState
.
temperature
(
phaseIdx
);
fluidState
.
pressure
(
phaseIdx
));
const
Scalar
p
=
fluidState
.
pressure
(
phaseIdx
);
// See: Eq. (7) in Class et al. (2002a)
// We assume each tracer molecule replaces on main component molecule
// this is consistent with the assumption in Fick's law and the computation
// of the composition molar mass in the compositional fluid state
const
Scalar
densityMain
=
MainComponent
::
liquidDensity
(
T
,
p
);
const
Scalar
molarDensity
=
densityMain
/
MainComponent
::
molarMass
();
return
molarDensity
*
(
MainComponent
::
molarMass
()
*
fluidState
.
moleFraction
(
wPhaseIdx
,
mainCompIdx
)
+
SecondComponent
::
molarMass
()
*
fluidState
.
moleFraction
(
wPhaseIdx
,
secondCompIdx
));
}
}
/*!
/*!
...
@@ -322,6 +334,7 @@ public:
...
@@ -322,6 +334,7 @@ public:
};
};
}
// namespace FluidSystems
}
// namespace FluidSystems
}
// namespace
}
// namespace Dumux
#endif
#endif
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