From 4ed2c338f2e4551747e0bedc71a8312118801951 Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Mon, 13 Apr 2020 19:34:00 +0200 Subject: [PATCH] [io] Remove deprecated parameter WellRadius --- dumux/io/grid/cakegridmanager.hh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/dumux/io/grid/cakegridmanager.hh b/dumux/io/grid/cakegridmanager.hh index 8f17d2d4e5..7dd1c9dcaf 100644 --- a/dumux/io/grid/cakegridmanager.hh +++ b/dumux/io/grid/cakegridmanager.hh @@ -136,14 +136,6 @@ public: if (indices[i] < 0) DUNE_THROW(Dune::RangeError, "Please specify Positions Angular and Radial and Axial correctly and unambiguously!" << std::endl); - if(hasParam("Grid.WellRadius")) - { - std::cerr << "Deprecation warning: parameter Grid.WellRadius is deprecated. " - << "Specify the WellRadius as the first radial coordinate." << std::endl; - - positions[indices[0]][0] = getParamFromGroup<Scalar>(modelParamGroup, "Grid.WellRadius"); - } - // the number of cells (has a default) std::array<std::vector<int>, dim> cells; for (int i = 0; i < dim; ++i) -- GitLab