9#include "CoordinateElement.h"
11#include "FiniteElement.h"
12#include <boost/uuid/uuid.hpp>
13#include <boost/uuid/uuid_generators.hpp>
17#include <dolfinx/common/IndexMap.h>
18#include <dolfinx/mesh/Geometry.h>
19#include <dolfinx/mesh/Mesh.h>
20#include <dolfinx/mesh/Topology.h>
32template <std::
floating_po
int T>
46 std::shared_ptr<const DofMap>
dofmap,
48 : _mesh(
mesh), _element(element), _dofmap(
dofmap),
49 _id(boost::uuids::random_generator()()), _root_space_id(_id),
86 throw std::runtime_error(
"Component must be non-empty");
89 auto element = this->_element->extract_sub_element(
component);
93 = std::make_shared<DofMap>(_dofmap->extract_sub_dofmap(
component));
98 _mesh->topology()->dim(),
99 _mesh->geometry().dim()));
102 sub_space._root_space_id = _root_space_id;
103 sub_space._component = _component;
104 sub_space._component.insert(sub_space._component.end(),
component.begin(),
115 if (
this == std::addressof(V))
120 else if (_root_space_id != V._root_space_id)
125 else if (_component.size() > V._component.size())
130 else if (!std::equal(_component.begin(), _component.end(),
131 V._component.begin()))
147 std::pair<FunctionSpace, std::vector<std::int32_t>>
collapse()
const
149 if (_component.empty())
150 throw std::runtime_error(
"Function space is not a subspace");
153 auto [_collapsed_dofmap, collapsed_dofs]
154 = _dofmap->collapse(_mesh->comm(), *_mesh->topology());
155 auto collapsed_dofmap
156 = std::make_shared<DofMap>(std::move(_collapsed_dofmap));
161 _mesh->geometry().dim())),
162 std::move(collapsed_dofs)};
168 std::vector<int>
component()
const {
return _component; }
175 return _element->symmetric();
192 if (!_component.empty())
194 throw std::runtime_error(
"Cannot tabulate coordinates for a "
195 "FunctionSpace that is a subspace.");
199 if (_element->is_mixed())
201 throw std::runtime_error(
202 "Cannot tabulate coordinates for a mixed FunctionSpace.");
208 const std::size_t gdim = _mesh->geometry().dim();
209 const int tdim = _mesh->topology()->dim();
213 std::shared_ptr<const common::IndexMap> index_map = _dofmap->index_map;
215 const int index_map_bs = _dofmap->index_map_bs();
216 const int dofmap_bs = _dofmap->bs();
218 const int element_block_size = _element->block_size();
219 const std::size_t scalar_dofs
220 = _element->space_dimension() / element_block_size;
221 const std::int32_t num_dofs
222 = index_map_bs * (index_map->size_local() + index_map->num_ghosts())
226 if (!_element->interpolation_ident())
228 throw std::runtime_error(
"Cannot evaluate dof coordinates - this element "
229 "does not have pointwise evaluation.");
231 const auto [X, Xshape] = _element->interpolation_points();
237 auto x_dofmap = _mesh->geometry().dofmap();
238 const std::size_t num_dofs_g = cmap.
dim();
239 std::span<const geometry_type> x_g = _mesh->geometry().x();
242 const std::size_t shape_c0 =
transpose ? 3 : num_dofs;
243 const std::size_t shape_c1 =
transpose ? num_dofs : 3;
244 std::vector<geometry_type> coords(shape_c0 * shape_c1, 0);
246 using mdspan2_t = MDSPAN_IMPL_STANDARD_NAMESPACE::mdspan<
248 MDSPAN_IMPL_STANDARD_NAMESPACE::dextents<std::size_t, 2>>;
249 using cmdspan4_t = MDSPAN_IMPL_STANDARD_NAMESPACE::mdspan<
251 MDSPAN_IMPL_STANDARD_NAMESPACE::dextents<std::size_t, 4>>;
254 std::vector<geometry_type> x_b(scalar_dofs * gdim);
255 mdspan2_t x(x_b.data(), scalar_dofs, gdim);
257 std::vector<geometry_type> coordinate_dofs_b(num_dofs_g * gdim);
258 mdspan2_t coordinate_dofs(coordinate_dofs_b.data(), num_dofs_g, gdim);
260 auto map = _mesh->topology()->index_map(tdim);
262 const int num_cells = map->size_local() + map->num_ghosts();
264 std::span<const std::uint32_t> cell_info;
265 if (_element->needs_dof_transformations())
267 _mesh->topology_mutable()->create_entity_permutations();
268 cell_info = std::span(_mesh->topology()->get_cell_permutation_info());
271 const std::array<std::size_t, 4> phi_shape
273 std::vector<geometry_type> phi_b(
274 std::reduce(phi_shape.begin(), phi_shape.end(), 1, std::multiplies{}));
275 cmdspan4_t phi_full(phi_b.data(), phi_shape);
277 auto phi = MDSPAN_IMPL_STANDARD_NAMESPACE::submdspan(
278 phi_full, 0, MDSPAN_IMPL_STANDARD_NAMESPACE::full_extent,
279 MDSPAN_IMPL_STANDARD_NAMESPACE::full_extent, 0);
283 auto apply_dof_transformation
284 = _element->template dof_transformation_fn<geometry_type>(
287 for (
int c = 0; c < num_cells; ++c)
290 auto x_dofs = MDSPAN_IMPL_STANDARD_NAMESPACE::submdspan(
291 x_dofmap, c, MDSPAN_IMPL_STANDARD_NAMESPACE::full_extent);
292 for (std::size_t i = 0; i < x_dofs.size(); ++i)
293 for (std::size_t j = 0; j < gdim; ++j)
294 coordinate_dofs(i, j) = x_g[3 * x_dofs[i] + j];
298 apply_dof_transformation(
299 x_b, std::span(cell_info.data(), cell_info.size()), c, x.extent(1));
302 auto dofs = _dofmap->cell_dofs(c);
307 for (std::size_t i = 0; i < dofs.size(); ++i)
308 for (std::size_t j = 0; j < gdim; ++j)
309 coords[dofs[i] * 3 + j] = x(i, j);
313 for (std::size_t i = 0; i < dofs.size(); ++i)
314 for (std::size_t j = 0; j < gdim; ++j)
315 coords[j * num_dofs + dofs[i]] = x(i, j);
323 std::shared_ptr<const mesh::Mesh<geometry_type>>
mesh()
const
329 std::shared_ptr<const FiniteElement<geometry_type>>
element()
const
335 std::shared_ptr<const DofMap>
dofmap()
const {
return _dofmap; }
350 return std::accumulate(_value_shape.begin(), _value_shape.end(), 1,
356 std::shared_ptr<const mesh::Mesh<geometry_type>> _mesh;
359 std::shared_ptr<const FiniteElement<geometry_type>> _element;
362 std::shared_ptr<const DofMap> _dofmap;
365 std::vector<int> _component;
368 boost::uuids::uuid _id;
369 boost::uuids::uuid _root_space_id;
371 std::vector<std::size_t> _value_shape;
383template <dolfinx::scalar T>
384std::array<std::vector<std::shared_ptr<const FunctionSpace<T>>>, 2>
390 std::vector<std::shared_ptr<const FunctionSpace<T>>> spaces0(V.size(),
392 std::vector<std::shared_ptr<const FunctionSpace<T>>> spaces1(V.front().size(),
396 for (std::size_t i = 0; i < V.size(); ++i)
399 for (std::size_t j = 0; j < V[i].size(); ++j)
401 auto& V0 = V[i][j][0];
402 auto& V1 = V[i][j][1];
409 if (spaces0[i] != V0)
410 throw std::runtime_error(
"Mismatched test space for row.");
417 if (spaces1[j] != V1)
418 throw std::runtime_error(
"Mismatched trial space for column.");
425 if (std::find(spaces0.begin(), spaces0.end(),
nullptr) != spaces0.end())
426 throw std::runtime_error(
"Could not deduce all block test spaces.");
427 if (std::find(spaces1.begin(), spaces1.end(),
nullptr) != spaces1.end())
428 throw std::runtime_error(
"Could not deduce all block trial spaces.");
430 return {spaces0, spaces1};
438template <std::
floating_po
int T>
441 std::size_t tdim, std::size_t gdim)
443 auto rvs = element->reference_value_shape();
444 std::vector<std::size_t> value_shape(rvs.size());
445 if (element->block_size() > 1)
447 for (std::size_t i = 0; i < rvs.size(); ++i)
449 value_shape[i] = rvs[i];
454 for (std::size_t i = 0; i < rvs.size(); ++i)
457 value_shape[i] = gdim;
459 value_shape[i] = rvs[i];
466template <
typename U,
typename V,
typename W,
typename X>
469 typename U::element_type>::type::geometry_type::value_type>;
Degree-of-freedom map representations and tools.
void tabulate(int nd, std::span< const T > X, std::array< std::size_t, 2 > shape, std::span< T > basis) const
Evaluate basis values and derivatives at set of points.
Definition CoordinateElement.cpp:55
std::array< std::size_t, 4 > tabulate_shape(std::size_t nd, std::size_t num_points) const
Shape of array to fill when calling tabulate.
Definition CoordinateElement.cpp:48
int dim() const
The dimension of the coordinate element space.
Definition CoordinateElement.cpp:206
static void push_forward(U &&x, const V &cell_geometry, const W &phi)
Compute physical coordinates x for points X in the reference configuration.
Definition CoordinateElement.h:188
Model of a finite element.
Definition FiniteElement.h:38
This class represents a finite element function space defined by a mesh, a finite element,...
Definition vtk_utils.h:32
std::vector< int > component() const
Get the component with respect to the root superspace.
Definition FunctionSpace.h:168
bool symmetric() const
Indicate whether this function space represents a symmetric 2-tensor.
Definition FunctionSpace.h:172
FunctionSpace & operator=(FunctionSpace &&V)=default
Move assignment operator.
std::pair< FunctionSpace, std::vector< std::int32_t > > collapse() const
Definition FunctionSpace.h:147
std::shared_ptr< const DofMap > dofmap() const
The dofmap.
Definition FunctionSpace.h:335
FunctionSpace(std::shared_ptr< const mesh::Mesh< geometry_type > > mesh, std::shared_ptr< const FiniteElement< geometry_type > > element, std::shared_ptr< const DofMap > dofmap, std::vector< std::size_t > value_shape)
Create function space for given mesh, element and dofmap.
Definition FunctionSpace.h:44
FunctionSpace sub(const std::vector< int > &component) const
Create a subspace (view) for a specific component.
Definition FunctionSpace.h:78
bool contains(const FunctionSpace &V) const
Check whether V is subspace of this, or this itself.
Definition FunctionSpace.h:113
int value_size() const
Definition FunctionSpace.h:348
std::shared_ptr< const mesh::Mesh< geometry_type > > mesh() const
The mesh.
Definition FunctionSpace.h:323
virtual ~FunctionSpace()=default
Destructor.
std::shared_ptr< const FiniteElement< geometry_type > > element() const
The finite element.
Definition FunctionSpace.h:329
T geometry_type
Geometry type of the Mesh that the FunctionSpace is defined on.
Definition FunctionSpace.h:37
std::span< const std::size_t > value_shape() const noexcept
The shape of the value space.
Definition FunctionSpace.h:338
std::vector< geometry_type > tabulate_dof_coordinates(bool transpose) const
Tabulate the physical coordinates of all dofs on this process.
Definition FunctionSpace.h:190
FunctionSpace(FunctionSpace &&V)=default
Move constructor.
A Mesh consists of a set of connected and numbered mesh topological entities, and geometry data.
Definition Mesh.h:23
Finite element method functionality.
Definition assemble_matrix_impl.h:26
FunctionSpace(U mesh, V element, W dofmap, X value_shape) -> FunctionSpace< typename std::remove_cvref< typename U::element_type >::type::geometry_type::value_type >
Type deduction.
std::vector< std::size_t > compute_value_shape(std::shared_ptr< const dolfinx::fem::FiniteElement< T > > element, std::size_t tdim, std::size_t gdim)
Compute the physical value shape of an element for a mesh.
Definition FunctionSpace.h:439
std::array< std::vector< std::shared_ptr< const FunctionSpace< T > > >, 2 > common_function_spaces(const std::vector< std::vector< std::array< std::shared_ptr< const FunctionSpace< T > >, 2 > > > &V)
Definition FunctionSpace.h:385