This code
from dolfin import * mesh = UnitSquareMesh(10,10) V = VectorFunctionSpace(mesh,"CG", 1) VV = V * V v1v2 = Function(VV) (v1, v2) = split(v1v2) plot(v1)
forces a projection. Is this the same issue of Issue #84 ?
Is this the same issue of Issue #84 ?
No, but it is related. Simply, subfunction's vector has no good meaning.