pymor.discretizers.builtin.quadratures

Module Contents

class pymor.discretizers.builtin.quadratures.GaussQuadratures[source]

Gauss quadrature on the interval [0, 1]

Methods

iter_quadrature

Iterate over a quadrature tuple-wise.

maxpoints

quadrature

Return Gauss points with corresponding weights.

order_map[source]
orders[source]
points[source]
weights[source]
classmethod iter_quadrature(order=None, npoints=None)[source]

Iterate over a quadrature tuple-wise.

Parameters

order

Integration order.

npoints

Number of integration points.

classmethod maxpoints()[source]
classmethod quadrature(order=None, npoints=None)[source]

Return Gauss points with corresponding weights.

Parameters

order

Integration order.

npoints

Number of integration points.

Returns

points

Array of Gauss points.

weights

Integration weights.