RectPartition.cell_volume

property RectPartition.cell_volume

Volume of the ‘inner’ cells of a uniform partition.

Only defined if self.grid is uniform.

Examples

We create a partition of the rectangle [0, 1] x [-1, 2] into 3 x 3 cells, where the grid points lie on the boundary. This means that the grid points are [0, 0.5, 1] x [-1, 0.5, 2], i.e. the inner cell has side lengths 0.5 x 1.5:

>>> rect = odl.IntervalProd([0, -1], [1, 2])
>>> grid = odl.uniform_grid([0, -1], [1, 2], (3, 3))
>>> part = odl.RectPartition(rect, grid)
>>> part.cell_sides
array([ 0.5,  1.5])
>>> part.cell_volume
0.75