take this example please
from dolfin import *
omega = BoxMesh(-1, -1, -1, 1, 1, 1, 20, 20, 20)
this is $\Omega$. The question is how to get the elements (tetrahedrons), facets (triangles) and nodes (points) for this domain, and how to iterate over that objects. additionally how to get these objects as a list of indexes over the points list.
I want to get this (numpy or list) arrays
>>>elements[1]
[1,4,3,5]
>>>facets[5]
[3,2,9]
>>>node[23]
[2.9, 3.0, 9.0]
thaks!