Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
77
Issue boards
Milestones
Wiki
Code
Merge requests
77
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
Merge requests
!585
An error occurred while fetching reviewers.
[2pnc] fix calculation of enthalpy
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[2pnc] fix calculation of enthalpy
cherry-pick-a1109fbe
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Bernd Flemisch
requested to merge
cherry-pick-a1109fbe
into
master
7 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
So far, no enthalpy has been calculated in the 2pnc(ni) model.
(cherry picked from commit
a1109fbe
)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
fb5b0cc1
1 commit,
7 years ago
1 file
+
3
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dumux/porousmediumflow/2pnc/implicit/volumevariables.hh
+
3
−
0
Options
@@ -361,6 +361,9 @@ public:
fluidState
.
setDensity
(
phaseIdx
,
rho
);
fluidState
.
setViscosity
(
phaseIdx
,
mu
);
Scalar
h
=
Implementation
::
enthalpy_
(
fluidState
,
paramCache
,
phaseIdx
);
fluidState
.
setEnthalpy
(
phaseIdx
,
h
);
}
}
Loading