I am trying to solve two different Poisson problems simultaneously on two processors. It appears that fenics is automatically distributing the mesh between the two processors. I can't seem to figure out how to disable this.
I am currently generating my mesh via
domain = Circle(Point(circle_outx,circle_outy),circle_outr) - Circle(Point(circle_inx,circle_iny),circle_inr)
mesh = generate_mesh ( domain, 30 )