Total number of gauss point

The number of Gauss-points used depends on the variational form.
DOLFINx uses ufl to estimate the quadrature degree of the variational form, see:

This is in turn sent to basix which tabulates at the relevant points.

You can use basix directly to investigate the default quadrature of any order, see:Creating and using a quadrature rule — Basix 0.8.0.0 documentation

You can also by-pass the basix/ufl workflow by supplying your own quadrature rule:

1 Like