Skip to content
Snippets Groups Projects
Commit 373e27de authored by Katharina Heck's avatar Katharina Heck Committed by Timo Koch
Browse files

[fix][material] adapt thermalconductivitysimplefluidlumping to new strucutre

parent 466ab780
No related branches found
No related tags found
2 merge requests!666Feature/mpnc on next,!617[WIP] Next
...@@ -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 scvIdx) 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(numEnergyEquationsFluid != 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 (numEnergyEquationsFluid == 1){ // solid dealed with individually (extra balance equation)
keff = kfeff ; keff = kfeff ;
} }
else { else {
......
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