When I build a domain $\Omega$ in dolfin:
from dolfin import *
import numpy as np
omega = UnitCubeMesh(10,10,10)
after this I need a numpy array with the elements (tetrahedra)
elements = # ... I have not idea what to put here
and I want to do this
>>>elements[6]
[1, 24, 49, 56]
therefore, the tetrahedron with the index 6 have the points with the index 1, 24, 49 and 56 this index is over the points array.