From 2cf90a265676d8ccfb67a59d6d277761526e79bd Mon Sep 17 00:00:00 2001 From: "Dennis.Glaeser" <dennis.glaeser@iws.uni-stuttgart.de> Date: Mon, 20 May 2019 16:37:58 +0200 Subject: [PATCH] [discretization] add fem as discretization method --- doc/doxygen/modules.txt | 5 +++++ dumux/discretization/method.hh | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/doxygen/modules.txt b/doc/doxygen/modules.txt index 8b1afb8a78..b0c15db748 100644 --- a/doc/doxygen/modules.txt +++ b/doc/doxygen/modules.txt @@ -452,6 +452,11 @@ * \defgroup StaggeredDiscretization Staggered FV scheme * \brief A staggered finite volume scheme with degrees of freedom at cell-centers and facets. */ + /*! + * \ingroup Discretization + * \defgroup FEMDiscretization Finite element method + * \brief The finite element method + */ /* ***************** Flux ******************/ /*! * \defgroup Flux Flux diff --git a/dumux/discretization/method.hh b/dumux/discretization/method.hh index cc89b9ced7..15478a56bd 100644 --- a/dumux/discretization/method.hh +++ b/dumux/discretization/method.hh @@ -35,7 +35,7 @@ namespace Dumux { */ enum class DiscretizationMethod { - none, box, cctpfa, ccmpfa, staggered + none, box, cctpfa, ccmpfa, staggered, fem }; } // end namespace Dumux -- GitLab