Skip to content
Snippets Groups Projects
Commit 62bc5fd6 authored by Hörl, Maximilian's avatar Hörl, Maximilian
Browse files

increase quadrature order for debug

parent 43180f03
Branches
Tags
No related merge requests found
......@@ -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;
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment