.. Documentation for the header file dolfin/function/MultiMeshFunctionSpace.h .. _programmers_reference_cpp_function_multimeshfunctionspace: MultiMeshFunctionSpace.h ======================== .. note:: The documentation on this page was automatically extracted from the DOLFIN C++ code and may need to be edited or expanded. .. cpp:class:: MultiMeshFunctionSpace *Parent class(es)* * :cpp:class:`Variable` This class represents a function space on a multimesh. It may may be created from a set of standard function spaces by repeatedly calling add(), followed by a call to build(). Note that a multimesh function space is not useful and its data structures are empty until build() has been called. .. cpp:function:: MultiMeshFunctionSpace() Create empty multimesh function space .. cpp:function:: std::size_t dim() const Return dimension of the multimesh function space *Returns* std::size_t The dimension of the multimesh function space. .. cpp:function:: std::shared_ptr multimesh() const Return multimesh *Returns* :cpp:class:`MultiMesh` The multimesh. .. cpp:function:: std::shared_ptr dofmap() const Return multimesh dofmap *Returns* :cpp:class:`MultiMeshDofMap` The dofmap. .. cpp:function:: std::size_t num_parts() const Return the number of function spaces (parts) of the multimesh function space *Returns* std::size_t The number of function spaces (parts) of the multimesh function space. .. cpp:function:: std::shared_ptr part(std::size_t i) const Return function space (part) number i *Arguments* i (std::size_t) The part number *Returns* :cpp:class:`FunctionSpace` Function space (part) number i .. cpp:function:: std::shared_ptr view(std::size_t i) const Return view of multimesh function space for part number i. This function differs from the part() function in that it does not return the original function space for a part, but rather a view of the common multimesh function space (dofs global to the collection of parts). *Arguments* i (std::size_t) The part number *Returns* :cpp:class:`FunctionSpace` Function space (part) number i .. cpp:function:: void add(std::shared_ptr function_space) Add function space (shared pointer version) *Arguments* function_space (:cpp:class:`FunctionSpace`) The function space. .. cpp:function:: void add(const FunctionSpace& function_space) Add function space (reference version) *Arguments* function_space (:cpp:class:`FunctionSpace`) The function space. .. cpp:function:: void build() Build multimesh function space .. cpp:function:: void build(std::shared_ptr multimesh, const std::vector& offsets) Build multimesh function space. This function reuses an existing multimesh and uses offsets computed from the full function spaces on each part. .. cpp:function:: static Parameters default_parameters() Default parameter values