DOLFINx 0.11.0.0
DOLFINx C++
Loading...
Searching...
No Matches
Topology.h
1// Copyright (C) 2006-2024 Anders Logg and Garth N. Wells
2//
3// This file is part of DOLFINx (https://www.fenicsproject.org)
4//
5// SPDX-License-Identifier: LGPL-3.0-or-later
6
7#pragma once
8
9#include <array>
10#include <concepts>
11#include <cstdint>
12#include <dolfinx/common/MPI.h>
13#include <dolfinx/graph/AdjacencyList.h>
14#include <map>
15#include <memory>
16#include <optional>
17#include <span>
18#include <thread>
19#include <tuple>
20#include <utility>
21#include <vector>
22
23namespace dolfinx::common
24{
25class IndexMap;
26}
27
28namespace dolfinx::mesh
29{
31template <typename R>
32concept CellRange = std::ranges::input_range<R> and std::ranges::sized_range<R>
33 and std::is_integral_v<
34 std::remove_const_t<std::ranges::range_value_t<R>>>;
35
36enum class CellType : std::int8_t;
37
49{
50public:
70 std::vector<CellType> cell_types,
71 std::shared_ptr<const common::IndexMap> vertex_map,
72 std::vector<std::shared_ptr<const common::IndexMap>> cell_maps,
73 std::vector<std::shared_ptr<graph::AdjacencyList<std::int32_t>>> cells,
74 const std::optional<std::vector<std::vector<std::int64_t>>>&
75 original_cell_index = std::nullopt,
76 int num_threads = 1);
77
79 Topology(const Topology& topology) = default;
80
82 Topology(Topology&& topology) = default;
83
85 ~Topology() = default;
86
88 Topology& operator=(const Topology& topology) = delete;
89
91 Topology& operator=(Topology&& topology) = default;
92
94 int dim() const noexcept;
95
99 const std::vector<CellType>& entity_types(int dim) const;
100
106 CellType cell_type() const;
107
113 std::vector<std::shared_ptr<const common::IndexMap>>
114 index_maps(int dim) const;
115
122 std::shared_ptr<const common::IndexMap> index_map(int dim) const;
123
137 std::shared_ptr<const graph::AdjacencyList<std::int32_t>>
138 connectivity(std::array<int, 2> d0, std::array<int, 2> d1) const;
139
149 std::shared_ptr<const graph::AdjacencyList<std::int32_t>>
150 connectivity(int d0, int d1) const;
151
153 const std::vector<std::uint32_t>& get_cell_permutation_info() const;
154
169 const std::vector<std::uint8_t>& get_facet_permutations() const;
170
173 std::vector<CellType> cell_types() const;
174
187 const std::vector<std::int32_t>& interprocess_facets(int index) const;
188
197 const std::vector<std::int32_t>& interprocess_facets() const;
198
205 bool create_entities(int dim, int num_threads = 1);
206
211 void create_connectivity(int d0, int d1);
212
215
217 std::vector<std::vector<std::int64_t>> original_cell_index;
218
221 MPI_Comm comm() const;
222
223private:
224 // Cell types for entities in Topology, where _entity_types_new[d][i]
225 // is the ith entity type of dimension d
226 std::vector<std::vector<CellType>> _entity_types;
227
228 // Parallel layout of entities for each dimension and cell type
229 // flattened in the same layout as _entity_types above.
230 // std::vector<std::shared_ptr<const common::IndexMap>> _index_map;
231
232 // _index_maps[(d, i) is the index map for the ith entity type of
233 // dimension d
234 std::map<std::array<int, 2>, std::shared_ptr<const common::IndexMap>>
235 _index_maps;
236
237 // Connectivity between cell types _connectivity_new[(dim0, i0),
238 // (dim1, i1)] is the connection from (dim0, i0) -> (dim1, i1),
239 // where dim0 and dim1 are topological dimensions and i0 and i1
240 // are the indices of cell types (following the order in _entity_types).
241 std::map<std::pair<std::array<int, 2>, std::array<int, 2>>,
242 std::shared_ptr<graph::AdjacencyList<std::int32_t>>>
243 _connectivity;
244
245 // The facet permutations (local facet, cell))
246 // [cell0_0, cell0_1, ,cell0_2, cell1_0, cell1_1, ,cell1_2, ...,
247 // celln_0, celln_1, ,celln_2,]
248 std::vector<std::uint8_t> _facet_permutations;
249
250 // Cell permutation info. See the documentation for
251 // get_cell_permutation_info for documentation of how this is encoded.
252 std::vector<std::uint32_t> _cell_permutations;
253
254 // List of facets that are on the inter-process boundary for each
255 // facet type. _interprocess_facets[i] is the inter-process facets of
256 // facet type i.
257 std::vector<std::vector<std::int32_t>> _interprocess_facets;
258};
259
290create_topology(MPI_Comm comm, const std::vector<CellType>& cell_types,
291 std::vector<std::span<const std::int64_t>> cells,
292 std::vector<std::span<const std::int64_t>> original_cell_index,
293 std::vector<std::span<const int>> ghost_owners,
294 std::span<const std::int64_t> boundary_vertices,
295 int num_threads);
296
322Topology create_topology(MPI_Comm comm, std::span<const std::int64_t> cells,
323 std::span<const std::int64_t> original_cell_index,
324 std::span<const int> ghost_owners, CellType cell_type,
325 std::span<const std::int64_t> boundary_vertices,
326 int num_threads);
327
340std::tuple<Topology, std::vector<int32_t>, std::vector<int32_t>>
341create_subtopology(const Topology& topology, int dim,
342 std::span<const std::int32_t> entities);
343
353std::vector<std::int32_t>
354entities_to_index(const Topology& topology, int dim,
355 std::span<const std::int32_t> entities);
356
374std::vector<std::vector<std::int32_t>>
375compute_mixed_cell_pairs(const Topology& topology, mesh::CellType facet_type);
376
377} // namespace dolfinx::mesh
Definition IndexMap.h:97
This class provides a static adjacency list data structure.
Definition AdjacencyList.h:38
std::shared_ptr< const common::IndexMap > index_map(int dim) const
Get the IndexMap that described the parallel distribution of the mesh entities.
Definition Topology.cpp:843
void create_connectivity(int d0, int d1)
Create connectivity between given pair of dimensions, d0 -> d1.
Definition Topology.cpp:983
Topology(std::vector< CellType > cell_types, std::shared_ptr< const common::IndexMap > vertex_map, std::vector< std::shared_ptr< const common::IndexMap > > cell_maps, std::vector< std::shared_ptr< graph::AdjacencyList< std::int32_t > > > cells, const std::optional< std::vector< std::vector< std::int64_t > > > &original_cell_index=std::nullopt, int num_threads=1)
Create a mesh topology.
Definition Topology.cpp:758
std::vector< std::vector< std::int64_t > > original_cell_index
Original cell index for each cell type.
Definition Topology.h:217
void create_entity_permutations()
Compute entity permutations and reflections.
Definition Topology.cpp:1024
const std::vector< std::uint32_t > & get_cell_permutation_info() const
Returns the permutation information.
Definition Topology.cpp:885
std::shared_ptr< const graph::AdjacencyList< std::int32_t > > connectivity(std::array< int, 2 > d0, std::array< int, 2 > d1) const
Get the connectivity from entities of topological dimension d0 to dimension d1.
Definition Topology.cpp:865
const std::vector< std::uint8_t > & get_facet_permutations() const
Get the numbers that encode the number of permutations to apply to facets.
Definition Topology.cpp:900
Topology(const Topology &topology)=default
Copy constructor.
~Topology()=default
Destructor.
const std::vector< CellType > & entity_types(int dim) const
Entity types in the topology for a given dimension.
Definition Topology.cpp:808
int dim() const noexcept
Topological dimension of the mesh.
Definition Topology.cpp:803
const std::vector< std::int32_t > & interprocess_facets(int index) const
List of inter-process facets of a given type.
Definition Topology.cpp:914
Topology(Topology &&topology)=default
Move constructor.
bool create_entities(int dim, int num_threads=1)
Create entities of given topological dimension.
Definition Topology.cpp:926
std::vector< CellType > cell_types() const
Get the types of cells in the topology.
Definition Topology.cpp:825
Topology & operator=(const Topology &topology)=delete
Assignment.
MPI_Comm comm() const
Mesh MPI communicator.
Definition Topology.cpp:1044
CellType cell_type() const
Cell type.
Definition Topology.cpp:813
Topology & operator=(Topology &&topology)=default
Assignment.
std::vector< std::shared_ptr< const common::IndexMap > > index_maps(int dim) const
Get the index maps that described the parallel distribution of the mesh entities of a given topologic...
Definition Topology.cpp:831
Requirement on range of cell indices.
Definition Topology.h:32
Miscellaneous classes, functions and types.
Definition dolfinx_common.h:8
Graph data structures and algorithms.
Definition AdjacencyList.h:20
Mesh data structures and algorithms on meshes.
Definition DofMap.h:32
std::tuple< Topology, std::vector< int32_t >, std::vector< int32_t > > create_subtopology(const Topology &topology, int dim, std::span< const std::int32_t > entities)
Create a topology for a subset of entities of a given topological dimension.
Definition Topology.cpp:1369
CellType
Cell type identifier.
Definition cell_types.h:21
std::vector< std::vector< std::int32_t > > compute_mixed_cell_pairs(const Topology &topology, mesh::CellType facet_type)
Compute a list of cell-cell connections for each possible combination in the topology which have the ...
Definition Topology.cpp:1508
Topology create_topology(MPI_Comm comm, const std::vector< CellType > &cell_types, std::vector< std::span< const std::int64_t > > cells, std::vector< std::span< const std::int64_t > > original_cell_index, std::vector< std::span< const int > > ghost_owners, std::span< const std::int64_t > boundary_vertices, int num_threads)
Create a mesh topology.
Definition Topology.cpp:1051
std::vector< std::int32_t > entities_to_index(const Topology &topology, int dim, std::span< const std::int32_t > entities)
Get entity indices for entities defined by their vertices.
Definition Topology.cpp:1451