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

[navierstokes][localresidual] Replace template, type is known

parent d6dc2d4c
No related branches found
No related tags found
1 merge request!1495Feature/improve flux over surface
......@@ -68,6 +68,7 @@ class NavierStokesResidualImpl<TypeTag, DiscretizationMethod::staggered>
using Element = typename GridView::template Codim<0>::Entity;
using SubControlVolume = typename FVElementGeometry::SubControlVolume;
using SubControlVolumeFace = typename FVElementGeometry::SubControlVolumeFace;
using ElementBoundaryTypes = GetPropType<TypeTag, Properties::ElementBoundaryTypes>;
using CellCenterPrimaryVariables = GetPropType<TypeTag, Properties::CellCenterPrimaryVariables>;
using FacePrimaryVariables = GetPropType<TypeTag, Properties::FacePrimaryVariables>;
using FluxVariables = GetPropType<TypeTag, Properties::FluxVariables>;
......@@ -184,7 +185,6 @@ public:
/*!
* \brief Evaluate boundary conditions for a cell center dof
*/
template<class ElementBoundaryTypes>
CellCenterResidual computeBoundaryFluxForCellCenter(const Problem& problem,
const Element& element,
const FVElementGeometry& fvGeometry,
......@@ -232,7 +232,6 @@ public:
/*!
* \brief Evaluate Dirichlet (fixed value) boundary conditions for a face dof
*/
template<class ElementBoundaryTypes>
void evalDirichletBoundariesForFace(FaceResidual& residual,
const Problem& problem,
const Element& element,
......@@ -269,7 +268,6 @@ public:
/*!
* \brief Evaluate boundary boundary fluxes for a face dof
*/
template<class ElementBoundaryTypes>
FaceResidual computeBoundaryFluxForFace(const Problem& problem,
const Element& element,
const FVElementGeometry& fvGeometry,
......
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