Skip to content
Snippets Groups Projects
Commit c828a67b authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[staggeredni] Clean-up Fourier's law

* return Scalar instead of vector (only one energy flux)
parent e006e85a
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!483Feature/staggered energy
...@@ -24,10 +24,7 @@ ...@@ -24,10 +24,7 @@
#ifndef DUMUX_DISCRETIZATION_STAGGERED_FOURIERS_LAW_HH #ifndef DUMUX_DISCRETIZATION_STAGGERED_FOURIERS_LAW_HH
#define DUMUX_DISCRETIZATION_STAGGERED_FOURIERS_LAW_HH #define DUMUX_DISCRETIZATION_STAGGERED_FOURIERS_LAW_HH
#include <dune/common/float_cmp.hh>
#include <dumux/common/math.hh> #include <dumux/common/math.hh>
#include <dumux/common/parameters.hh>
#include <dumux/implicit/properties.hh> #include <dumux/implicit/properties.hh>
#include <dumux/discretization/methods.hh> #include <dumux/discretization/methods.hh>
...@@ -36,12 +33,6 @@ ...@@ -36,12 +33,6 @@
namespace Dumux namespace Dumux
{ {
namespace Properties
{
// forward declaration of properties
NEW_PROP_TAG(CellCenterPrimaryVariables);
}
/*! /*!
* \ingroup StaggeredFouriersLaw * \ingroup StaggeredFouriersLaw
* \brief Specialization of Fourier's Law for the staggered free flow method. * \brief Specialization of Fourier's Law for the staggered free flow method.
...@@ -57,18 +48,9 @@ class FouriersLawImplementation<TypeTag, DiscretizationMethods::Staggered > ...@@ -57,18 +48,9 @@ class FouriersLawImplementation<TypeTag, DiscretizationMethods::Staggered >
using FVElementGeometry = typename GET_PROP_TYPE(TypeTag, FVElementGeometry); using FVElementGeometry = typename GET_PROP_TYPE(TypeTag, FVElementGeometry);
using ElementVolumeVariables = typename GET_PROP_TYPE(TypeTag, ElementVolumeVariables); using ElementVolumeVariables = typename GET_PROP_TYPE(TypeTag, ElementVolumeVariables);
using Element = typename GridView::template Codim<0>::Entity; using Element = typename GridView::template Codim<0>::Entity;
using CellCenterPrimaryVariables = typename GET_PROP_TYPE(TypeTag, CellCenterPrimaryVariables);
using Indices = typename GET_PROP_TYPE(TypeTag, Indices); using Indices = typename GET_PROP_TYPE(TypeTag, Indices);
using FluidSystem = typename GET_PROP_TYPE(TypeTag, FluidSystem);
static const int dim = GridView::dimension;
static const int dimWorld = GridView::dimensionworld;
enum { enum { energyBalanceIdx = Indices::energyBalanceIdx };
massBalanceIdx = Indices::massBalanceIdx,
energyBalanceIdx = Indices::energyBalanceIdx,
phaseIdx = Indices::phaseIdx
};
public: public:
// state the discretization method this implementation belongs to // state the discretization method this implementation belongs to
...@@ -79,13 +61,13 @@ public: ...@@ -79,13 +61,13 @@ public:
using Cache = FluxVariablesCaching::EmptyDiffusionCache; using Cache = FluxVariablesCaching::EmptyDiffusionCache;
using CacheFiller = FluxVariablesCaching::EmptyCacheFiller<TypeTag>; using CacheFiller = FluxVariablesCaching::EmptyCacheFiller<TypeTag>;
static CellCenterPrimaryVariables diffusiveFluxForCellCenter(const Problem& problem, static Scalar diffusiveFluxForCellCenter(const Problem& problem,
const Element& element, const Element& element,
const FVElementGeometry& fvGeometry, const FVElementGeometry& fvGeometry,
const ElementVolumeVariables& elemVolVars, const ElementVolumeVariables& elemVolVars,
const SubControlVolumeFace &scvf) const SubControlVolumeFace &scvf)
{ {
CellCenterPrimaryVariables flux(0.0); Scalar flux(0.0);
if(scvf.boundary()) if(scvf.boundary())
{ {
...@@ -115,8 +97,8 @@ public: ...@@ -115,8 +97,8 @@ public:
const Scalar distance = scvf.boundary() ? (insideScv.dofPosition() - scvf.ipGlobal()).two_norm() const Scalar distance = scvf.boundary() ? (insideScv.dofPosition() - scvf.ipGlobal()).two_norm()
: (outsideScv.dofPosition() - scvf.ipGlobal()).two_norm(); : (outsideScv.dofPosition() - scvf.ipGlobal()).two_norm();
flux[energyBalanceIdx] = -1.0 * (insideTemp - outsideTemp); flux = -1.0 * (insideTemp - outsideTemp);
flux[energyBalanceIdx] *= lambda / distance; flux *= lambda / distance;
flux *= scvf.area() * sign(scvf.outerNormalScalar()); flux *= scvf.area() * sign(scvf.outerNormalScalar());
return flux; return flux;
} }
......
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