From 62bc5fd6c433c6aca3095b229328bedf99d0a9a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20H=C3=B6rl?= <maximilian.hoerl@mathematik.uni-stuttgart.de> Date: Wed, 20 May 2020 12:19:11 +0200 Subject: [PATCH] increase quadrature order for debug --- dune/mmdg/problems/coupleddgproblem.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dune/mmdg/problems/coupleddgproblem.hh b/dune/mmdg/problems/coupleddgproblem.hh index 9f7774f..ff022d9 100644 --- a/dune/mmdg/problems/coupleddgproblem.hh +++ b/dune/mmdg/problems/coupleddgproblem.hh @@ -68,7 +68,7 @@ public: //over x * qInterface(x) virtual int quadratureOrder_qInterface () const { - return 1; + return 10;//1; } //returns the recommended quadrature order to compute an integral @@ -77,7 +77,7 @@ public: //and d^2 * interfaceBoundary(x) * Kpar virtual int quadratureOrderInterfaceBoundary () const { - return 1; + return 10;//1; } //returns the recommended quadrature order to compute integrals @@ -87,14 +87,14 @@ public: //and x * d^2 * Kpar virtual int quadratureOrder_Kparallel () const { - return 2; + return 10;//2; } //returns the recommended quadrature order to compute an integral //over x * Kperp(x) virtual int quadratureOrder_Kperp () const { - return 1; + return 10;//1; } }; -- GitLab