1#ifndef GLOBALDOFNUMBERING_HH
2#define GLOBALDOFNUMBERING_HH
4template<
class X,
class GFS>
9 GlobalNumbering (
const GFS& gfs)
10 : my_rank(gfs.gridView().comm().rank()),
11 ranks(gfs.gridView().comm().size()),
13 global_index(gfs, -1.0)
15 using Dune::PDELab::Backend::native;
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);
26 Dune::PDELab::MaxDataHandle<GFS,X> maxdh(gfs,claims);
27 gfs.gridView().communicate(maxdh,Dune::All_All_Interface,Dune::ForwardCommunication);
31 for (
unsigned int i = 0; i < native(claims).N(); i++) {
33 if (my_rank == native(claims)[i][0])
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());
43 for (
int r = 0; r < ranks; r++) {
44 global_dof_number += local_dof_numbers_[r];
46 global_dof_offset += local_dof_numbers_[r];
51 int global_dof_counter = global_dof_offset;
52 for (
unsigned int i = 0; i < native(claims).N(); i++) {
54 if (my_rank == native(claims)[i][0]) {
55 native(global_index)[i][0] = global_dof_counter;
58 native(global_index)[i][0] = 0.0;
64 Dune::PDELab::AddDataHandle<GFS,X> adddh(gfs,global_index);
65 gfs.gridView().communicate(adddh,Dune::All_All_Interface,Dune::ForwardCommunication);
69 int claimedByRank(
int localIndex) {
70 using Dune::PDELab::Backend::native;
71 return native(claims)[localIndex][0];
74 int numberOfLocalDOFs() {
75 return local_dof_number;
78 int numberOfGlobalDOFs() {
79 return global_dof_number;
82 int globalIndexOffset() {
83 return global_dof_offset;
86 int globalIndex(
int localIndex) {
87 using Dune::PDELab::Backend::native;
88 return native(global_index)[localIndex][0];
91 X globalIndexVector() {
104 int local_dof_number = 0;
105 int global_dof_number = 0;
106 int global_dof_offset = 0;