ffcx.ir.representationutils#

Utility functions for some code shared between representations.

Functions

create_quadrature_points_and_weights(...[, ...])

Create quadrature rule and return points and weights.

integral_type_to_entity_dim(integral_type, tdim)

Given integral_type and domain tdim, return the tdim of the integration entity.

map_integral_points(points, integral_type, ...)

Map points from reference entity to its parent reference cell.

Classes

QuadratureRule(points, weights[, tensor_factors])

A quadrature rule.

class ffcx.ir.representationutils.QuadratureRule(points, weights, tensor_factors=None)[source]#

Bases: object

A quadrature rule.

Initialise.

id()[source]#

Return unique deterministic identifier.

Note

This identifier is used to provide unique names to tables and symbols in generated code.

ffcx.ir.representationutils.create_quadrature_points_and_weights(integral_type, cell, degree, rule, elements, use_tensor_product=False)[source]#

Create quadrature rule and return points and weights.

ffcx.ir.representationutils.integral_type_to_entity_dim(integral_type, tdim)[source]#

Given integral_type and domain tdim, return the tdim of the integration entity.

ffcx.ir.representationutils.map_integral_points(points, integral_type, cell, entity)[source]#

Map points from reference entity to its parent reference cell.