From 0055268a7c9fceb7aa5cd041fb891f5d4a60c9a1 Mon Sep 17 00:00:00 2001 From: DennisGlaeser <dennis.glaeser@iws.uni-stuttgart.de> Date: Mon, 13 Feb 2017 10:27:54 +0100 Subject: [PATCH] [facetcoupling][gmshgridcreator] add handling of points in .msh file --- dumux/mixeddimension/facet/gmshdualfacetgridcreator.hh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dumux/mixeddimension/facet/gmshdualfacetgridcreator.hh b/dumux/mixeddimension/facet/gmshdualfacetgridcreator.hh index 28d1433781..6f9617a2b6 100644 --- a/dumux/mixeddimension/facet/gmshdualfacetgridcreator.hh +++ b/dumux/mixeddimension/facet/gmshdualfacetgridcreator.hh @@ -188,6 +188,12 @@ public: switch (elemType) { + case 15: // points + { + // do nothing for points + break; + } + case 1: // 2-node line { // the geometry type for lines -- GitLab