Thanks for your answer! What I would like to do is to calculate the inner product of two dolfin::functions v and w which have different FE meshes. And I would like to avoid interpolation or projection. Mathematically, this is possible. Say
v=\sum a_i phi_i and
w = \sum b_j psi_j.
Then, < v,w>L2 = \sum_i \sum_j a_i b_j <phi_i, psi_j>.
So I need to calculate the inner product of the finite element ansatz functions. How can I do this in Fenics when the meshes are different? So far, I was not able to get "access" to the FE ansatz functions. And I believe, there must be an easier way...?
I am very thankful for any help!!
frieder