Loading [MathJax]/extensions/tex2jax.js

dune-composites (unstable)

globalDOFNumbering.hh
1#ifndef GLOBALDOFNUMBERING_HH
2#define GLOBALDOFNUMBERING_HH
3
4template<class X, class GFS>
5class GlobalNumbering {
6
7public:
8
9 GlobalNumbering (const GFS& gfs)
10 : my_rank(gfs.gridView().comm().rank()),
11 ranks(gfs.gridView().comm().size()),
12 claims(gfs, my_rank),
13 global_index(gfs, -1.0)
14 {
15 using Dune::PDELab::Backend::native;
16
17 // Construct Dirichlet constraints for processor boundaries; needed to not claim DOFs on boundary
18 typedef typename GFS::template ConstraintsContainer<typename X::field_type>::Type CC;
19 auto cc_proc_boundaries = CC();
20 Dune::PDELab::NoDirichletConstraintsParameters pnbc;
21 Dune::PDELab::constraints(pnbc,gfs,cc_proc_boundaries);
22 Dune::PDELab::set_constrained_dofs(cc_proc_boundaries,-1.0,claims); // -1 processor boundaries
23
24
25 // Communicate claims and retain maximum claimed rank per DOF
26 Dune::PDELab::MaxDataHandle<GFS,X> maxdh(gfs,claims);
27 gfs.gridView().communicate(maxdh,Dune::All_All_Interface,Dune::ForwardCommunication);
28
29
30 // Iterate over DOFs, counting only those not claimed by higher ranks as local DOFs
31 for (unsigned int i = 0; i < native(claims).N(); i++) {
32
33 if (my_rank == native(claims)[i][0])
34 local_dof_number++;
35 }
36
37 // Communicate local DOF numbers to allow consecutive global numbering
38 std::vector<int> local_dof_numbers_(ranks);
39 MPI_Allgather(&local_dof_number, 1, Dune::MPITraits<int>::getType(), local_dof_numbers_.data(), 1, Dune::MPITraits<int>::getType(), gfs.gridView().comm());
40
41
42 // Compute offset within global numbering by adding DOF numbers of lower ranks
43 for (int r = 0; r < ranks; r++) {
44 global_dof_number += local_dof_numbers_[r];
45 if (r < my_rank)
46 global_dof_offset += local_dof_numbers_[r];
47 }
48
49 // Set vector to global DOF index, starting from offset and incrementing.
50 // DOFs claimed by higher ranks are instead set to zero.
51 int global_dof_counter = global_dof_offset;
52 for (unsigned int i = 0; i < native(claims).N(); i++) {
53
54 if (my_rank == native(claims)[i][0]) {
55 native(global_index)[i][0] = global_dof_counter;
56 global_dof_counter++;
57 } else {
58 native(global_index)[i][0] = 0.0;
59 }
60 }
61
62 // Finally add together everything so that all DOFs claimed by others (currently at zero)
63 // receive their global indices from neighbors
64 Dune::PDELab::AddDataHandle<GFS,X> adddh(gfs,global_index);
65 gfs.gridView().communicate(adddh,Dune::All_All_Interface,Dune::ForwardCommunication);
66
67 }
68
69 int claimedByRank(int localIndex) {
70 using Dune::PDELab::Backend::native;
71 return native(claims)[localIndex][0];
72 }
73
74 int numberOfLocalDOFs() {
75 return local_dof_number;
76 }
77
78 int numberOfGlobalDOFs() {
79 return global_dof_number;
80 }
81
82 int globalIndexOffset() {
83 return global_dof_offset;
84 }
85
86 int globalIndex(int localIndex) {
87 using Dune::PDELab::Backend::native;
88 return native(global_index)[localIndex][0];
89 }
90
91 X globalIndexVector() {
92 return global_index;
93 }
94
95 X claimsVector() {
96 return claims;
97 }
98
99private:
100 int my_rank;
101 int ranks;
102 X claims;
103 X global_index;
104 int local_dof_number = 0;
105 int global_dof_number = 0;
106 int global_dof_offset = 0;
107
108};
109
110#endif
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 3, 22:46, 2025)