Skip to content
Snippets Groups Projects
Commit cb5b701b authored by Timo Koch's avatar Timo Koch
Browse files

Cleanup small things in plot thermal conduct model

parent 7106a5b2
No related branches found
No related tags found
1 merge request!617[WIP] Next
...@@ -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/basicproperties.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);
} }
/*! /*!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment