Bases: dolfin.functions.functionspace.MixedFunctionSpace
VectorFunctionSpace represents a vector-valued finite element function space.
Create vector-valued finite element function space.
Use VectorFunctionSpace if the unknown is a vector field, instead of a FunctionSpace object for scalar fields.
If the dim argument is not provided, the dimension will be deduced from the dimension of the mesh.
Example of usage
V = VectorFunctionSpace(mesh, "CG", 1)