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

Merge branch 'fix/velocityoutput' into 'next'

[fix][velocityoutput] fix velocityoutput on next

See merge request !376
parents 7cfed33c 086b6a58
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!376[fix][velocityoutput] fix velocityoutput on next
......@@ -120,7 +120,7 @@ public:
//! we should never call this method for box models
template <class T = TypeTag>
typename std::enable_if<GET_PROP_VALUE(T, ImplicitIsBox), BoundaryTypes>::type
problemBoundaryTypes(const Element& element, const SubControlVolume& scv) const
problemBoundaryTypes(const Element& element, const SubControlVolumeFace& scvf) const
{ return BoundaryTypes(); }
//! Calculate the velocities for the scvs in the element
......@@ -247,7 +247,7 @@ public:
}
else
{
auto bcTypes = problem_.boundaryTypes(element, scvf);
auto bcTypes = problemBoundaryTypes(element, scvf);
if (bcTypes.hasOnlyDirichlet())
{
FluxVariables fluxVars;
......@@ -274,7 +274,7 @@ public:
{
if (scvf.boundary())
{
auto bcTypes = problem_.boundaryTypes(element, scvf);
auto bcTypes = problemBoundaryTypes(element, scvf);
if (bcTypes.hasNeumann())
{
// cubes
......
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