diff --git a/dumux/implicit/common/implicitpropertydefaults.hh b/dumux/implicit/common/implicitpropertydefaults.hh index 388d8584de99979676d0f31b2b2678640b4f9049..50d14de9102a99d649a60b2bf5364ed4518d65e4 100644 --- a/dumux/implicit/common/implicitpropertydefaults.hh +++ b/dumux/implicit/common/implicitpropertydefaults.hh @@ -39,7 +39,7 @@ namespace Dumux { // forward declarations template <class TypeTag> class NewtonController; -template <class TypeTag> class BoxBiCGStabILU0Solver; +template <class TypeTag> class ILU0BiCGSTABBackend; namespace Properties { ////////////////////////////////////////////////////////////////// @@ -130,7 +130,7 @@ public: }; //! use the stabilized BiCG solver preconditioned by the ILU-0 by default -SET_TYPE_PROP(ImplicitBase, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag> ); +SET_TYPE_PROP(ImplicitBase, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> ); // if the deflection of the newton method is large, we do not // need to solve the linear approximation accurately. Assuming diff --git a/dumux/linear/borderindex.hh b/dumux/linear/borderindex.hh index 43eacf886ed66d00858960dbabfd976f585e6048..3e8e823dc07688a9fedd19201baa7c143ef52559 100644 --- a/dumux/linear/borderindex.hh +++ b/dumux/linear/borderindex.hh @@ -24,6 +24,8 @@ #ifndef DUMUX_BORDER_INDEX_HH #define DUMUX_BORDER_INDEX_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + namespace Dumux { /*! diff --git a/dumux/linear/boxlinearsolver.hh b/dumux/linear/boxlinearsolver.hh index fbfba0c39fafc96e26f826086503b22b8b3840de..e3a9583ea64fa7c3bc123d101989dbba62e3ebbf 100644 --- a/dumux/linear/boxlinearsolver.hh +++ b/dumux/linear/boxlinearsolver.hh @@ -25,6 +25,9 @@ #ifndef DUMUX_BOXLINEARSOLVER_HH #define DUMUX_BOXLINEARSOLVER_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + +#include <dune/common/deprecated.hh> #include <dune/istl/solvers.hh> #include <dune/istl/preconditioners.hh> @@ -264,6 +267,7 @@ class BoxBiCGStabILU0Solver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use ILU0BiCGSTABBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxBiCGStabILU0Solver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} @@ -295,6 +299,7 @@ class BoxBiCGStabSORSolver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use SORBiCGSTABBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxBiCGStabSORSolver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} @@ -326,6 +331,7 @@ class BoxBiCGStabSSORSolver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use SSORBiCGSTABBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxBiCGStabSSORSolver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} @@ -357,6 +363,7 @@ class BoxBiCGStabJacSolver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use JacBiCGSTABBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxBiCGStabJacSolver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} @@ -388,6 +395,7 @@ class BoxBiCGStabGSSolver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use GSBiCGSTABBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxBiCGStabGSSolver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} @@ -419,6 +427,7 @@ class BoxCGILU0Solver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use ILUnCGBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxCGILU0Solver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} @@ -450,6 +459,7 @@ class BoxCGSORSolver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use SORCGBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxCGSORSolver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} @@ -481,6 +491,7 @@ class BoxCGSSORSolver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use SSORCGBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxCGSSORSolver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} @@ -512,6 +523,7 @@ class BoxCGJacSolver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use JacCGBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxCGJacSolver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} @@ -543,6 +555,7 @@ class BoxCGGSSolver : public BoxLinearSolver<TypeTag> public: template <class Problem> + DUNE_DEPRECATED_MSG("Use GSCGBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") BoxCGGSSolver(const Problem &problem, int overlapSize = 1) : ParentType(problem, overlapSize) {} diff --git a/dumux/linear/domesticoverlapfrombcrsmatrix.hh b/dumux/linear/domesticoverlapfrombcrsmatrix.hh index 661e066255f4144128fbee675a75014da2b94231..cbef540978b6efbcc0e3dec884c138d942896a2a 100644 --- a/dumux/linear/domesticoverlapfrombcrsmatrix.hh +++ b/dumux/linear/domesticoverlapfrombcrsmatrix.hh @@ -28,6 +28,8 @@ #ifndef DUMUX_DOMESTIC_OVERLAP_FROM_BCRS_MATRIX_HH #define DUMUX_DOMESTIC_OVERLAP_FROM_BCRS_MATRIX_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #include <list> #include <set> #include <map> diff --git a/dumux/linear/elementborderlistfromgrid.hh b/dumux/linear/elementborderlistfromgrid.hh index 317cca2809cadde32fabb42166e0519fd49fd66b..9d644c215815f519f84c2757bdf72c401d2172fe 100644 --- a/dumux/linear/elementborderlistfromgrid.hh +++ b/dumux/linear/elementborderlistfromgrid.hh @@ -25,6 +25,8 @@ #ifndef DUMUX_ELEMENT_BORDER_LIST_FROM_GRID_HH #define DUMUX_ELEMENT_BORDER_LIST_FROM_GRID_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #include <dune/grid/common/datahandleif.hh> #include <dune/grid/common/gridenums.hh> #include <dune/common/fmatrix.hh> diff --git a/dumux/linear/foreignoverlapfrombcrsmatrix.hh b/dumux/linear/foreignoverlapfrombcrsmatrix.hh index 81965c650930e3b75091d3f83abd9fcbe8a035e6..9bdf7e29f1a47d5ef430c2ae865435c5a3f69a04 100644 --- a/dumux/linear/foreignoverlapfrombcrsmatrix.hh +++ b/dumux/linear/foreignoverlapfrombcrsmatrix.hh @@ -28,6 +28,8 @@ #ifndef DUMUX_FOREIGN_OVERLAP_FROM_BCRS_MATRIX_HH #define DUMUX_FOREIGN_OVERLAP_FROM_BCRS_MATRIX_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #include <list> #include <set> #include <map> diff --git a/dumux/linear/globalindices.hh b/dumux/linear/globalindices.hh index cc571cbe03f4a953e395515c5a41fda22fa3ac9d..aa67af8544092e56c2357416a80662b763c75dc0 100644 --- a/dumux/linear/globalindices.hh +++ b/dumux/linear/globalindices.hh @@ -26,6 +26,8 @@ #ifndef DUMUX_GLOBAL_INDICES_HH #define DUMUX_GLOBAL_INDICES_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #include <list> #include <set> #include <map> diff --git a/dumux/linear/impetbicgstabilu0solver.hh b/dumux/linear/impetbicgstabilu0solver.hh index d3a82b23654ddd7401460336323ff6d61851e016..fb04c17830c142c230b845a544eddc17b1d8c927 100644 --- a/dumux/linear/impetbicgstabilu0solver.hh +++ b/dumux/linear/impetbicgstabilu0solver.hh @@ -81,6 +81,7 @@ class IMPETBiCGStabILU0Solver typedef Dune::BiCGSTABSolver<OverlappingVector> Solver; public: + DUNE_DEPRECATED_MSG("Use ILU0BiCGSTABBackend/AMGBackend from seqsolverbackend.hh/amgbackend.hh instead") IMPETBiCGStabILU0Solver(const Problem &problem, int overlapSize=1) : problem_(problem) , overlapSize_(overlapSize) diff --git a/dumux/linear/overlappingbcrsmatrix.hh b/dumux/linear/overlappingbcrsmatrix.hh index 1946d3326cf21385b8e6d9f79f623ef6a4f5a7b5..62905197ba559025f4c83a84054c6bba96f4dca1 100644 --- a/dumux/linear/overlappingbcrsmatrix.hh +++ b/dumux/linear/overlappingbcrsmatrix.hh @@ -25,6 +25,8 @@ #ifndef DUMUX_OVERLAPPING_BCRS_MATRIX_HH #define DUMUX_OVERLAPPING_BCRS_MATRIX_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #include <algorithm> #include <list> #include <set> diff --git a/dumux/linear/overlappingblockvector.hh b/dumux/linear/overlappingblockvector.hh index a0691ab1c457deb01d34b3f59a37f1a9fea30ba5..eda7c843bad725e2029f9349b44499d6d3bfcedb 100644 --- a/dumux/linear/overlappingblockvector.hh +++ b/dumux/linear/overlappingblockvector.hh @@ -25,6 +25,8 @@ #ifndef DUMUX_OVERLAPPING_BLOCK_VECTOR_HH #define DUMUX_OVERLAPPING_BLOCK_VECTOR_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #include <iostream> #include <map> #include <memory> diff --git a/dumux/linear/overlappingoperator.hh b/dumux/linear/overlappingoperator.hh index 6f9723317cb0af7abd0ba616a3978f6285d1e1c9..b6862337d17f2f8253364eb9b9ac6d8defa3ae6d 100644 --- a/dumux/linear/overlappingoperator.hh +++ b/dumux/linear/overlappingoperator.hh @@ -24,6 +24,8 @@ #ifndef DUMUX_OVERLAPPING_OPERATOR_HH #define DUMUX_OVERLAPPING_OPERATOR_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #include <dune/istl/operators.hh> namespace Dumux { diff --git a/dumux/linear/overlappingpreconditioner.hh b/dumux/linear/overlappingpreconditioner.hh index 71a0edfcb28c52ebbe5984bd252dc9a902a1000e..cd6a8312e2164582503ee4bb82667e074efd4af0 100644 --- a/dumux/linear/overlappingpreconditioner.hh +++ b/dumux/linear/overlappingpreconditioner.hh @@ -24,6 +24,8 @@ #ifndef DUMUX_OVERLAPPING_PRECONDITIONER_HH #define DUMUX_OVERLAPPING_PRECONDITIONER_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #include <dumux/common/exceptions.hh> #include <dune/istl/preconditioners.hh> diff --git a/dumux/linear/overlappingscalarproduct.hh b/dumux/linear/overlappingscalarproduct.hh index 54c4f9c1dd69d9e818e175bc4b8e7e21d097b7a7..9ff54469ee5f220363041d733c66967e73642c58 100644 --- a/dumux/linear/overlappingscalarproduct.hh +++ b/dumux/linear/overlappingscalarproduct.hh @@ -24,6 +24,8 @@ #ifndef DUMUX_OVERLAPPING_SCALAR_PRODUCT_HH #define DUMUX_OVERLAPPING_SCALAR_PRODUCT_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #if HAVE_MPI #include <mpi.h> #endif diff --git a/dumux/linear/vertexborderlistfromgrid.hh b/dumux/linear/vertexborderlistfromgrid.hh index edf493e4a7975d416335abed331ec64affdd9c2f..60f0dadca70f9fd0f6d65f3f35fe2533a3bb1b81 100644 --- a/dumux/linear/vertexborderlistfromgrid.hh +++ b/dumux/linear/vertexborderlistfromgrid.hh @@ -25,6 +25,8 @@ #ifndef DUMUX_VERTEX_BORDER_LIST_FROM_GRID_HH #define DUMUX_VERTEX_BORDER_LIST_FROM_GRID_HH +#warning This file is deprecated and will be removed after Dumux 2.9 + #include "borderindex.hh" #include <dune/grid/common/datahandleif.hh> diff --git a/dumux/multidomain/common/multidomainpropertydefaults.hh b/dumux/multidomain/common/multidomainpropertydefaults.hh index c80af7259be7da00270207133e6ac41d253ae2c1..012704787c0e335aab3fecb4ca29a2593fe5b511 100644 --- a/dumux/multidomain/common/multidomainpropertydefaults.hh +++ b/dumux/multidomain/common/multidomainpropertydefaults.hh @@ -231,7 +231,7 @@ public: }; // set the type of the linear solver -SET_TYPE_PROP(MultiDomain, LinearSolver, BoxBiCGStabILU0Solver<TypeTag>); +SET_TYPE_PROP(MultiDomain, LinearSolver, ILU0BiCGSTABBackend<TypeTag>); // set the minimum residual reduction of the linear solver SET_SCALAR_PROP(MultiDomain, LinearSolverResidualReduction, 1e-6); diff --git a/dumux/nonlinear/newtoncontroller.hh b/dumux/nonlinear/newtoncontroller.hh index 18cc4175b6661b4fd7eaf79dc18414ab7d67ed40..1e9ee4f23366efc4918b226f927d379fe8da9fd1 100644 --- a/dumux/nonlinear/newtoncontroller.hh +++ b/dumux/nonlinear/newtoncontroller.hh @@ -29,7 +29,7 @@ #include <dumux/common/exceptions.hh> #include <dumux/common/math.hh> #include <dumux/io/vtkmultiwriter.hh> -#include <dumux/linear/boxlinearsolver.hh> +#include <dumux/linear/seqsolverbackend.hh> #include "newtonconvergencewriter.hh" diff --git a/test/porousmediumflow/1p/implicit/1ptestproblem.hh b/test/porousmediumflow/1p/implicit/1ptestproblem.hh index 7501c07ef427ceca8936b6d77b224e6aff8cd8fe..2e097b163d4d206fda15f99df74f0c8b02ae3e1a 100644 --- a/test/porousmediumflow/1p/implicit/1ptestproblem.hh +++ b/test/porousmediumflow/1p/implicit/1ptestproblem.hh @@ -74,7 +74,7 @@ SET_TYPE_PROP(OnePTestProblem, Problem, Dumux::OnePTestProblem<TypeTag> ); SET_TYPE_PROP(OnePTestProblem, SpatialParams, Dumux::OnePTestSpatialParams<TypeTag> ); // Linear solver settings -SET_TYPE_PROP(OnePTestProblem, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag> ); +SET_TYPE_PROP(OnePTestProblem, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> ); NEW_TYPE_TAG(OnePTestBoxProblemWithAMG, INHERITS_FROM(OnePTestBoxProblem)); NEW_TYPE_TAG(OnePTestCCProblemWithAMG, INHERITS_FROM(OnePTestCCProblem)); diff --git a/test/porousmediumflow/2p/implicit/lensproblem.hh b/test/porousmediumflow/2p/implicit/lensproblem.hh index 0bc9fddd61091aaad8f6e4a865dbc373c8186366..b3c938b6979f364ef1c6787346fbc6d13d938f53 100644 --- a/test/porousmediumflow/2p/implicit/lensproblem.hh +++ b/test/porousmediumflow/2p/implicit/lensproblem.hh @@ -98,8 +98,8 @@ public: }; // Linear solver settings -SET_TYPE_PROP(LensCCProblem, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag> ); -SET_TYPE_PROP(LensBoxProblem, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag> ); +SET_TYPE_PROP(LensCCProblem, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> ); +SET_TYPE_PROP(LensBoxProblem, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> ); #if HAVE_DUNE_ALUGRID SET_TYPE_PROP(LensCCAdaptiveProblem, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> ); SET_TYPE_PROP(LensBoxAdaptiveProblem, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> ); diff --git a/test/porousmediumflow/2p2c/sequential/test_dec2p2cproblem.hh b/test/porousmediumflow/2p2c/sequential/test_dec2p2cproblem.hh index f102ffa3fb8dff8661fc37e312fc46472b5dc66b..86bbdad66336bf7e81c80267615a41bd3c197700 100644 --- a/test/porousmediumflow/2p2c/sequential/test_dec2p2cproblem.hh +++ b/test/porousmediumflow/2p2c/sequential/test_dec2p2cproblem.hh @@ -35,7 +35,7 @@ #include <dumux/material/fluidsystems/h2oairfluidsystem.hh> #include "test_dec2p2c_spatialparams.hh" -#include <dumux/linear/impetbicgstabilu0solver.hh> + namespace Dumux { @@ -77,8 +77,6 @@ SET_PROP(TestDecTwoPTwoCProblem, Components) : public GET_PROP(TypeTag, DefaultC typedef Dumux::H2O<Scalar> H2O; }; -//SET_TYPE_PROP(TestDecTwoPTwoCProblem, LinearSolver, IMPETBiCGStabILU0Solver<TypeTag> ); - SET_BOOL_PROP(TestDecTwoPTwoCProblem, EnableCapillarity, true); SET_INT_PROP(TestDecTwoPTwoCProblem, BoundaryMobility, GET_PROP_TYPE(TypeTag, Indices)::satDependent); } diff --git a/test/porousmediumflow/2pdfm/implicit/2pdfmtestproblem.hh b/test/porousmediumflow/2pdfm/implicit/2pdfmtestproblem.hh index f91fd806b18faf449a527e3bc30572a4d3026f4c..97b7e4041a806172a3a81d88fbbb2d9771eb5d9b 100644 --- a/test/porousmediumflow/2pdfm/implicit/2pdfmtestproblem.hh +++ b/test/porousmediumflow/2pdfm/implicit/2pdfmtestproblem.hh @@ -82,7 +82,7 @@ public: }; // Linear solver settings -SET_TYPE_PROP(TwoPDFMTestProblem, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag>); +SET_TYPE_PROP(TwoPDFMTestProblem, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag>); } diff --git a/test/porousmediumflow/2pminc/implicit/2pminctestproblem.hh b/test/porousmediumflow/2pminc/implicit/2pminctestproblem.hh index 03898214e36700331a584063a39aff3bb45b33a7..16017c21b4eb08e7e5ea407ac298fe8881fc5d3f 100644 --- a/test/porousmediumflow/2pminc/implicit/2pminctestproblem.hh +++ b/test/porousmediumflow/2pminc/implicit/2pminctestproblem.hh @@ -32,13 +32,11 @@ #include <dune/grid/yaspgrid.hh> -#include <dumux/implicit/cellcentered/ccpropertydefaults.hh> +#include <dumux/implicit/2pminc/2pmincmodel.hh> +#include <dumux/implicit/2pminc/2pmincvolumevariables.hh> #include <dumux/implicit/common/implicitporousmediaproblem.hh> #include <dumux/material/components/simpleh2o.hh> #include <dumux/material/components/dnapl.hh> -#include <dumux/material/fluidsystems/h2on2fluidsystem.hh> -#include <dumux/implicit/2pminc/2pmincmodel.hh> -#include <dumux/implicit/2pminc/2pmincvolumevariables.hh> #include <dumux/io/cubegridcreator.hh> #include "2pminctestspatialparams.hh" @@ -109,7 +107,7 @@ SET_BOOL_PROP(TwoPMincTestProblem, NewtonWriteConvergence, false); SET_INT_PROP(TwoPMincTestProblem, ImplicitNumericDifferenceMethod, +1); // Linear solver settings -SET_TYPE_PROP(TwoPMincTestProblem, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag> ); +SET_TYPE_PROP(TwoPMincTestProblem, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> ); SET_INT_PROP(TwoPMincTestProblem, LinearSolverVerbosity, 0); SET_INT_PROP(TwoPMincTestProblem, LinearSolverPreconditionerIterations, 1); SET_SCALAR_PROP(TwoPMincTestProblem, LinearSolverPreconditionerRelaxation, 1.0);