Skip to content
Snippets Groups Projects
Commit 8c714c31 authored by Gabi Seitz's avatar Gabi Seitz Committed by Dennis Gläser
Browse files

[test][mpnc] Use NumEqVector for sources and neumann

parent 8e34933c
No related branches found
No related tags found
1 merge request!766Feature/primaryvariables numeqvector
...@@ -181,6 +181,7 @@ class MaxwellStefanTestProblem : public PorousMediumFlowProblem<TypeTag> ...@@ -181,6 +181,7 @@ class MaxwellStefanTestProblem : public PorousMediumFlowProblem<TypeTag>
using GridView = typename GET_PROP_TYPE(TypeTag, GridView); using GridView = typename GET_PROP_TYPE(TypeTag, GridView);
using BoundaryTypes = typename GET_PROP_TYPE(TypeTag, BoundaryTypes); using BoundaryTypes = typename GET_PROP_TYPE(TypeTag, BoundaryTypes);
using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables); using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables);
using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector);
using FluidSystem = typename GET_PROP_TYPE(TypeTag, FluidSystem); using FluidSystem = typename GET_PROP_TYPE(TypeTag, FluidSystem);
using SpatialParams = typename GET_PROP_TYPE(TypeTag, SpatialParams); using SpatialParams = typename GET_PROP_TYPE(TypeTag, SpatialParams);
using FVGridGeometry = typename GET_PROP_TYPE(TypeTag, FVGridGeometry); using FVGridGeometry = typename GET_PROP_TYPE(TypeTag, FVGridGeometry);
...@@ -339,8 +340,8 @@ public: ...@@ -339,8 +340,8 @@ public:
* \param globalPos The position for which the bc type should be evaluated * \param globalPos The position for which the bc type should be evaluated
* The units must be according to either using mole or mass fractions. (mole/(m^2*s) or kg/(m^2*s)) * The units must be according to either using mole or mass fractions. (mole/(m^2*s) or kg/(m^2*s))
*/ */
PrimaryVariables neumannAtPos(const GlobalPosition& globalPos) const NumEqVector neumannAtPos(const GlobalPosition& globalPos) const
{ return PrimaryVariables(0.0); } { return NumEqVector(0.0); }
// \} // \}
......
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