82 auto* cmgi = ICartesianMeshGenerationInfo::getReference(m_mesh,
false);
84 ARCANE_FATAL(
"No 'ICartesianMeshGenerationInfo'. The mesh is not a cartesian mesh "
85 "or was not generated by 'CartesianMeshGenerator'");
87 Integer dimension = m_mesh->dimension();
88 if (dimension != 2 && dimension != 3)
91 Int32 my_rank = m_mesh->parallelMng()->commRank();
94 info() <<
"Dim=" << dimension;
97 Int64x3 nb_cell = grid_dimension.
nbCell();
98 Int64x3 nb_face = grid_dimension.
nbFace();
101 Int64 nb_cell_xy = nb_cell.x * nb_cell.y;
103 Int64 face_offset_z = nb_face_dir.x + nb_face_dir.y;
104 Int64 nb_face_xyz = face_offset_z + nb_cell_xy;
105 Int64 total_nb_face_xy = (nb_face_dir.x + nb_face_dir.y) * nb_cell.z;
106 Int64 total_nb_face_x = (nb_face_dir.x * nb_cell.z);
108 info() <<
"NB_Cell: X=" << nb_cell.x <<
" Y=" << nb_cell.y <<
" Z=" << nb_cell.z
109 <<
" XY=" << nb_cell_xy;
110 info() <<
"NB_Face: X=" << nb_face.x <<
" Y=" << nb_face.y <<
" Z=" << nb_face.z
111 <<
" NbDirX=" << nb_face_dir.x <<
" NbDirY=" << nb_face_dir.y <<
" NbDirZ=" << nb_face_dir.z
112 <<
" NbFaceXYZ=" << nb_face_xyz <<
" OffsetZ=" << face_offset_z
113 <<
" TotalNbFaceX=" << total_nb_face_x <<
" TotalNbFaceXY=" << total_nb_face_xy;
115 auto own_cells_offsets = cmgi->ownCellOffsets();
116 Int64 own_cell_offset_x = own_cells_offsets[0];
117 Int64 own_cell_offset_y = own_cells_offsets[1];
118 Int64 own_cell_offset_z = own_cells_offsets[2];
119 info() <<
"CellOffset: X=" << own_cell_offset_x <<
" Y=" << own_cell_offset_y <<
" Z=" << own_cell_offset_z;
121 auto sub_domain_offsets = cmgi->subDomainOffsets();
122 Int64 sub_domain_offset_x = sub_domain_offsets[0];
123 Int64 sub_domain_offset_y = sub_domain_offsets[1];
124 Int64 sub_domain_offset_z = sub_domain_offsets[2];
125 info() <<
"SubDomainOffset: X=" << sub_domain_offset_x <<
" Y=" << sub_domain_offset_y <<
" Z=" << sub_domain_offset_z;
127 auto nb_sub_domains = cmgi->nbSubDomains();
128 Int32 nb_sub_domain_x = nb_sub_domains[0];
129 Int32 nb_sub_domain_y = nb_sub_domains[1];
130 Int32 nb_sub_domain_z = nb_sub_domains[2];
131 info() <<
"NbSubDomain: X=" << nb_sub_domain_x <<
" Y=" << nb_sub_domain_y <<
" Z=" << nb_sub_domain_z;
134 Int32 previous_rank_x = my_rank;
135 Int32 previous_rank_y = my_rank;
136 Int32 previous_rank_z = my_rank;
139 bool is_verbose = m_is_verbose;
141 if (dimension == 2) {
142 if (sub_domain_offset_x > 0)
143 previous_rank_x = my_rank - 1;
144 if (sub_domain_offset_y > 0)
145 previous_rank_y = my_rank - nb_sub_domain_x;
146 info() <<
"PreviousRank X=" << previous_rank_x <<
" Y=" << previous_rank_y;
151 std::array<Int64, 4> face_uids;
152 std::array<Int64, 4> face_uids2;
156 const Int64 y2 = uid / nb_cell.x;
157 const Int64 x2 = uid % nb_cell.x;
158 Int64x3 xyz = cell_uid_computer.compute(uid);
167 info() <<
"CELL (UID=" << uid <<
",XY=" << x <<
"," << y <<
") "
174 face_uids[0] = (x + 0) + ((y + 0) * nb_cell.x) + nb_face_dir.x;
175 face_uids[2] = (x + 0) + ((y + 1) * nb_cell.x) + nb_face_dir.x;
178 face_uids[1] = (x + 1) + (y + 0) * nb_face.x;
179 face_uids[3] = (x + 0) + (y + 0) * nb_face.x;
181 for (
int i = 0; i < 4; ++i) {
182 if (face_uids[i] != face_uids2[i])
183 ARCANE_FATAL(
"Bad face uid i={0} ref={1} new={2}", i, face_uids[i], face_uids2[i]);
185 for (
int i = 0; i < 4; ++i) {
188 info() <<
"CELL=" << uid <<
" Face=" << i <<
" uid=" << face_uids[i]
195 if (x == own_cell_offset_x && previous_rank_x != my_rank)
198 if (y == own_cell_offset_y && previous_rank_y != my_rank)
202 else if (dimension == 3) {
203 if (sub_domain_offset_x > 0)
204 previous_rank_x = my_rank - 1;
205 if (sub_domain_offset_y > 0)
206 previous_rank_y = my_rank - nb_sub_domain_x;
207 if (sub_domain_offset_z > 0)
208 previous_rank_z = my_rank - (nb_sub_domain_x * nb_sub_domain_y);
209 info() <<
"PreviousRank X=" << previous_rank_x <<
" Y=" << previous_rank_y <<
" Z=" << previous_rank_z;
213 std::array<Int64, 6> face_uids;
214 std::array<Int64, 6> face_uids2;
218 Int64 z2 = uid / nb_cell_xy;
219 Int64 v2 = uid - (z2 * nb_cell_xy);
220 Int64 y2 = v2 / nb_cell.x;
221 Int64 x2 = v2 % nb_cell.x;
222 Int64x3 xyz = cell_uid_computer.
compute(uid);
234 info() <<
"CELL (UID=" << uid <<
",XYZ=" << x <<
"," << y <<
"," << z <<
") "
246 face_uids[0] = (x + 0) + ((y + 0) * nb_cell.x) + ((z + 0) * nb_face_dir.z) + total_nb_face_xy;
247 face_uids[3] = (x + 0) + ((y + 0) * nb_cell.x) + ((z + 1) * nb_face_dir.z) + total_nb_face_xy;
250 face_uids[1] = (x + 0) + ((y + 0) * nb_face.x) + ((z + 0) * nb_face_dir.x);
251 face_uids[4] = (x + 1) + ((y + 0) * nb_face.x) + ((z + 0) * nb_face_dir.x);
254 face_uids[2] = (x + 0) + ((y + 0) * nb_cell.x) + ((z + 0) * nb_face_dir.y) + total_nb_face_x;
255 face_uids[5] = (x + 0) + ((y + 1) * nb_cell.x) + ((z + 0) * nb_face_dir.y) + total_nb_face_x;
258 for (
int i = 0; i < 6; ++i) {
259 if (face_uids[i] != face_uids2[i])
260 ARCANE_FATAL(
"Bad face uid i={0} ref={1} new={2}", i, face_uids[i], face_uids2[i]);
263 for (
int i = 0; i < 6; ++i) {
266 info() <<
"CELL=" << uid <<
" Face=" << i <<
" uid=" << face_uids[i]
275 if (x == own_cell_offset_x && previous_rank_x != my_rank)
278 if (y == own_cell_offset_y && previous_rank_y != my_rank)
281 if (z == own_cell_offset_z && previous_rank_z != my_rank)