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
cb5b701b
Commit
cb5b701b
authored
7 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup small things in plot thermal conduct model
parent
7106a5b2
No related branches found
No related tags found
1 merge request
!617
[WIP] Next
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/io/plotthermalconductivitymodel.hh
+3
-13
3 additions, 13 deletions
dumux/io/plotthermalconductivitymodel.hh
with
3 additions
and
13 deletions
dumux/io/plotthermalconductivitymodel.hh
+
3
−
13
View file @
cb5b701b
...
@@ -24,23 +24,13 @@
...
@@ -24,23 +24,13 @@
#ifndef DUMUX_PLOT_THERMAL_CONDUCTIVITY_LAW_HH
#ifndef DUMUX_PLOT_THERMAL_CONDUCTIVITY_LAW_HH
#define DUMUX_PLOT_THERMAL_CONDUCTIVITY_LAW_HH
#define DUMUX_PLOT_THERMAL_CONDUCTIVITY_LAW_HH
#include
<dumux/common/
basic
properties.hh>
#include
<dumux/common/properties.hh>
#include
<dumux/io/gnuplotinterface.hh>
#include
<dumux/io/gnuplotinterface.hh>
#include
<dumux/material/fluidstates/compositional.hh>
#include
<dumux/material/fluidstates/compositional.hh>
namespace
Dumux
namespace
Dumux
{
{
namespace
Properties
{
NEW_PROP_TAG
(
ThermalConductivityModel
);
NEW_PROP_TAG
(
CompositionalFluidState
);
NEW_PROP_TAG
(
FluidSystem
);
NEW_PROP_TAG
(
FluidState
);
NEW_PROP_TAG
(
Indices
);
NEW_PROP_TAG
(
Scalar
);
}
/*!
/*!
* \brief Interface for plotting the non-isothermal two-phase fluid-matrix-interaction laws
* \brief Interface for plotting the non-isothermal two-phase fluid-matrix-interaction laws
*/
*/
...
@@ -75,8 +65,8 @@ public:
...
@@ -75,8 +65,8 @@ public:
fluidstate
.
setTemperature
(
temperature
);
fluidstate
.
setTemperature
(
temperature
);
fluidstate
.
setPressure
(
wPhaseIdx
,
pressure
);
fluidstate
.
setPressure
(
wPhaseIdx
,
pressure
);
fluidstate
.
setPressure
(
nPhaseIdx
,
pressure
);
fluidstate
.
setPressure
(
nPhaseIdx
,
pressure
);
lambdaW_
=
FluidSystem
::
template
thermalConductivity
<
FluidState
>
(
fluidstate
,
wPhaseIdx
);
lambdaW_
=
FluidSystem
::
thermalConductivity
(
fluidstate
,
wPhaseIdx
);
lambdaN_
=
FluidSystem
::
template
thermalConductivity
<
FluidState
>
(
fluidstate
,
nPhaseIdx
);
lambdaN_
=
FluidSystem
::
thermalConductivity
(
fluidstate
,
nPhaseIdx
);
}
}
/*!
/*!
...
...
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