DOLFINx 0.11.0.0
DOLFINx C++ interface
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 <cstdint>
11#include <dolfinx/common/MPI.h>
12#include <dolfinx/graph/AdjacencyList.h>
13#include <map>
14#include <memory>
15#include <optional>
16#include <span>
17#include <tuple>
18#include <utility>
19#include <vector>
20
21namespace dolfinx::common
22{
23class IndexMap;
24}
25
26namespace dolfinx::mesh
27{
28enum class CellType : std::int8_t;
29
41{
42public:
62 std::vector<CellType> cell_types,
63 std::shared_ptr<const common::IndexMap> vertex_map,
64 std::vector<std::shared_ptr<const common::IndexMap>> cell_maps,
65 std::vector<std::shared_ptr<graph::AdjacencyList<std::int32_t>>> cells,
66 const std::optional<std::vector<std::vector<std::int64_t>>>&
67 original_cell_index = std::nullopt,
68 int num_threads = 1);
69
71 Topology(const Topology& topology) = default;
72
74 Topology(Topology&& topology) = default;
75
77 ~Topology() = default;
78
80 Topology& operator=(const Topology& topology) = delete;
81
83 Topology& operator=(Topology&& topology) = default;
84
86 int dim() const noexcept;
87
91 const std::vector<CellType>& entity_types(int dim) const;
92
98 CellType cell_type() const;
99
105 std::vector<std::shared_ptr<const common::IndexMap>>
106 index_maps(int dim) const;
107
114 std::shared_ptr<const common::IndexMap> index_map(int dim) const;
115
129 std::shared_ptr<const graph::AdjacencyList<std::int32_t>>
130 connectivity(std::array<int, 2> d0, std::array<int, 2> d1) const;
131
141 std::shared_ptr<const graph::AdjacencyList<std::int32_t>>
142 connectivity(int d0, int d1) const;
143
145 const std::vector<std::uint32_t>& get_cell_permutation_info() const;
146
161 const std::vector<std::uint8_t>& get_facet_permutations() const;
162
165 std::vector<CellType> cell_types() const;
166
179 const std::vector<std::int32_t>& interprocess_facets(int index) const;
180
189 const std::vector<std::int32_t>& interprocess_facets() const;
190
197 bool create_entities(int dim, int num_threads = 1);
198
203 void create_connectivity(int d0, int d1);
204
207
209 std::vector<std::vector<std::int64_t>> original_cell_index;
210
213 MPI_Comm comm() const;
214
215private:
216 // Cell types for entities in Topology, where _entity_types_new[d][i]
217 // is the ith entity type of dimension d
218 std::vector<std::vector<CellType>> _entity_types;
219
220 // Parallel layout of entities for each dimension and cell type
221 // flattened in the same layout as _entity_types above.
222 // std::vector<std::shared_ptr<const common::IndexMap>> _index_map;
223
224 // _index_maps[(d, i) is the index map for the ith entity type of
225 // dimension d
226 std::map<std::array<int, 2>, std::shared_ptr<const common::IndexMap>>
227 _index_maps;
228
229 // Connectivity between cell types _connectivity_new[(dim0, i0),
230 // (dim1, i1)] is the connection from (dim0, i0) -> (dim1, i1),
231 // where dim0 and dim1 are topological dimensions and i0 and i1
232 // are the indices of cell types (following the order in _entity_types).
233 std::map<std::pair<std::array<int, 2>, std::array<int, 2>>,
234 std::shared_ptr<graph::AdjacencyList<std::int32_t>>>
235 _connectivity;
236
237 // The facet permutations (local facet, cell))
238 // [cell0_0, cell0_1, ,cell0_2, cell1_0, cell1_1, ,cell1_2, ...,
239 // celln_0, celln_1, ,celln_2,]
240 std::vector<std::uint8_t> _facet_permutations;
241
242 // Cell permutation info. See the documentation for
243 // get_cell_permutation_info for documentation of how this is encoded.
244 std::vector<std::uint32_t> _cell_permutations;
245
246 // List of facets that are on the inter-process boundary for each
247 // facet type. _interprocess_facets[i] is the inter-process facets of
248 // facet type i.
249 std::vector<std::vector<std::int32_t>> _interprocess_facets;
250};
251
282create_topology(MPI_Comm comm, const std::vector<CellType>& cell_types,
283 std::vector<std::span<const std::int64_t>> cells,
284 std::vector<std::span<const std::int64_t>> original_cell_index,
285 std::vector<std::span<const int>> ghost_owners,
286 std::span<const std::int64_t> boundary_vertices,
287 int num_threads);
288
314Topology create_topology(MPI_Comm comm, std::span<const std::int64_t> cells,
315 std::span<const std::int64_t> original_cell_index,
316 std::span<const int> ghost_owners, CellType cell_type,
317 std::span<const std::int64_t> boundary_vertices,
318 int num_threads);
319
332std::tuple<Topology, std::vector<int32_t>, std::vector<int32_t>>
333create_subtopology(const Topology& topology, int dim,
334 std::span<const std::int32_t> entities);
335
345std::vector<std::int32_t>
346entities_to_index(const Topology& topology, int dim,
347 std::span<const std::int32_t> entities);
348
366std::vector<std::vector<std::int32_t>>
367compute_mixed_cell_pairs(const Topology& topology, mesh::CellType facet_type);
368
369} // 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:209
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
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