This is a read only copy of the old FEniCS QA forum. Please visit the new QA forum to ask questions

change the order of quadrature

+1 vote

Hello,

how can I change the order of integration for internal facets integrals?
The following does not work

dS2 = dS({"integration_order":1})
print assemble(a_uh('-')*v_h('-')*dS2).array()

thanks a lot,
Fotini

asked Jun 4, 2014 by fotini.karakatsani FEniCS Novice (500 points)

1 Answer

0 votes

Hi, try instead

dS1 = dS(metadata={'quadrature_degree': 1})
answered Jun 4, 2014 by MiroK FEniCS Expert (80,920 points)
...