-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdgt_grid.cpp
146 lines (126 loc) · 4.35 KB
/
dgt_grid.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include <stdexcept>
#include "dgt_defines.hpp"
#include "dgt_grid.hpp"
#include "dgt_point.hpp"
namespace dgt {
int get_dim(p3a::vector3<int> const& v) {
if ((v.x() > 0) && (v.y() > 0) && (v.z() > 0)) return 3;
if ((v.x() > 0) && (v.y() > 0) && (v.z() == 0)) return 2;
if ((v.x() > 0) && (v.y() == 0) && (v.z() == 0)) return 1;
throw std::runtime_error("get_dim");
}
int get_dim(p3a::grid3 const& g) {
return get_dim(g.extents());
}
p3a::grid3 generalize(p3a::grid3 const& g) {
int const dim = get_dim(g);
p3a::vector3<int> n = g.extents();
for (int axis = dim; axis < DIMS; ++axis) {
n[axis] = 1;
}
return p3a::grid3(n);
}
p3a::subgrid3 generalize(p3a::subgrid3 const& s) {
p3a::vector3<int> start = s.lower();
p3a::vector3<int> end = s.upper();
int const dim = get_dim(end);
for (int axis = dim; axis < DIMS; ++axis) {
start[axis] = 0;
end[axis] = 1;
}
return p3a::subgrid3(start, end);
}
p3a::grid3 get_child_grid(int dim) {
if (dim == 1) return p3a::grid3(2,0,0);
if (dim == 2) return p3a::grid3(2,2,0);
if (dim == 3) return p3a::grid3(2,2,2);
throw std::runtime_error("get_child_grid");
}
p3a::grid3 get_node_grid(p3a::grid3 const& cells) {
int const dim = get_dim(cells);
p3a::vector3<int> nodes = cells.extents();
for (int axis = 0; axis < dim; ++axis) {
nodes[axis] += 1;
}
return p3a::grid3(nodes);
}
p3a::grid3 get_side_grid(p3a::grid3 const& cells, int axis) {
return p3a::grid3(cells.extents() + p3a::vector3<int>::axis(axis));
}
p3a::subgrid3 get_intr_sides(p3a::grid3 const& cells, int axis) {
p3a::grid3 const sides = get_side_grid(cells, axis);
p3a::vector3<int> const nsides = sides.extents();
p3a::vector3<int> const start = p3a::vector3<int>::axis(axis);
p3a::vector3<int> const end = nsides - p3a::vector3<int>::axis(axis);
return p3a::subgrid3(start, end);
}
p3a::subgrid3 get_adj_sides(p3a::grid3 const& cells, int axis, int dir) {
p3a::grid3 const sides = get_side_grid(cells, axis);
p3a::vector3<int> const nsides = sides.extents();
p3a::vector3<int> start = p3a::vector3<int>::zero();
p3a::vector3<int> end = nsides;
if (dir == left) end[axis] = 1;
if (dir == right) start[axis] = nsides[axis] - 1;
return p3a::subgrid3(start, end);
}
p3a::subgrid3 get_adj_cells(p3a::grid3 const& cells, int axis, int dir) {
p3a::vector3<int> const ncells = cells.extents();
p3a::vector3<int> start = p3a::vector3<int>::zero();
p3a::vector3<int> end = ncells;
if (dir == left) end[axis] = 1;
if (dir == right) start[axis] = ncells[axis] - 1;
return p3a::subgrid3(start, end);
}
p3a::grid3 get_viz_cell_grid(p3a::grid3 const& cells, int p) {
p3a::vector3<int> const ncells = (p+1)*cells.extents();
return p3a::grid3(ncells);
}
static p3a::vector3<int> map_to_fine(Point const& pt, int fine_depth) {
int const diff = fine_depth - pt.depth;
return p3a::vector3<int>(
pt.ijk.x() << diff,
pt.ijk.y() << diff,
pt.ijk.z() << diff);
}
static bool contains(p3a::subgrid3 const& s, p3a::vector3<int> const& ijk) {
bool in = true;
int const dim = get_dim(s.upper());
for (int axis = 0; axis < dim; ++axis) {
if (ijk[axis] < s.lower()[axis]) in = false;
if (ijk[axis] >= s.upper()[axis]) in = false;
}
for (int axis = dim; axis < DIMS; ++axis) {
if (ijk[axis] != 0) in = false;
}
return in;
}
bool contains(p3a::grid3 const& g, p3a::subgrid3 const& s) {
bool in = true;
if (get_dim(g) != get_dim(s.upper())) in = false;
if (!contains(g, s.lower())) in = false;
if (!contains(g, s.upper())) in = false;
return in;
}
bool contains(int depth, p3a::subgrid3 const& s, Point const& pt) {
if (depth == pt.depth) {
return contains(s, pt.ijk);
} else if (depth > pt.depth) {
p3a::vector3<int> const fine_pt = map_to_fine(pt, depth);
return contains(s, fine_pt);
} else {
p3a::vector3<int> const start = map_to_fine({depth, s.lower()}, pt.depth);
p3a::vector3<int> const end = map_to_fine({depth, s.upper()}, pt.depth);
return contains(p3a::subgrid3(start, end), pt.ijk);
}
}
int get_num_local(int ntotal, int nparts, int part) {
int quotient = ntotal / nparts;
int remainder = ntotal % nparts;
return (part < remainder) ? (quotient + 1) : quotient;
}
int get_local_offset(int ntotal, int nparts, int part) {
int quotient = ntotal / nparts;
int remainder = ntotal % nparts;
return (quotient * part) + p3a::min(remainder, part);
}
}