From c5ef3fe18dc06ff1b6d806919a6cd27f6837d3b9 Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Sun, 24 Jul 2022 17:33:06 +0200 Subject: [PATCH] [pmflow][velocity][cleanup] Remove unused aliases --- dumux/porousmediumflow/velocityoutput.hh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/dumux/porousmediumflow/velocityoutput.hh b/dumux/porousmediumflow/velocityoutput.hh index 161ea07c33..fcf3f922ec 100644 --- a/dumux/porousmediumflow/velocityoutput.hh +++ b/dumux/porousmediumflow/velocityoutput.hh @@ -46,8 +46,6 @@ class PorousMediumFlowVelocityOutput : public VelocityOutput<GridVariables> using ParentType = VelocityOutput<GridVariables>; using GridGeometry = typename GridVariables::GridGeometry; using FVElementGeometry = typename GridGeometry::LocalView; - using SubControlVolume = typename GridGeometry::SubControlVolume; - using SubControlVolumeFace = typename GridGeometry::SubControlVolumeFace; using GridView = typename GridGeometry::GridView; using Element = typename GridView::template Codim<0>::Entity; using GridVolumeVariables = typename GridVariables::GridVolumeVariables; @@ -55,16 +53,7 @@ class PorousMediumFlowVelocityOutput : public VelocityOutput<GridVariables> using VolumeVariables = typename GridVariables::VolumeVariables; using ElementVolumeVariables = typename GridVolumeVariables::LocalView; using FluidSystem = typename VolumeVariables::FluidSystem; - using Scalar = typename GridVariables::Scalar; - static constexpr int dim = GridView::dimension; - static constexpr int dimWorld = GridView::dimensionworld; - static constexpr bool isBox = GridGeometry::discMethod == DiscretizationMethods::box; - static constexpr int dofCodim = isBox ? dim : 0; - - using GlobalPosition = typename Element::Geometry::GlobalCoordinate; - - using Problem = typename GridVolumeVariables::Problem; using VelocityBackend = PorousMediumFlowVelocity<GridVariables, FluxVariables>; public: -- GitLab