14#include "arcane/tests/CartesianMeshTestUtils.h"
16#include "arcane/utils/CheckedConvert.h"
17#include "arcane/utils/PlatformUtils.h"
18#include "arcane/utils/Real2.h"
19#include "arcane/utils/ValueChecker.h"
23#include "arcane/core/IMesh.h"
24#include "arcane/core/IItemFamily.h"
25#include "arcane/core/ItemPrinter.h"
26#include "arcane/core/IParallelMng.h"
27#include "arcane/core/IMeshModifier.h"
28#include "arcane/core/IMeshUtilities.h"
29#include "arcane/core/SimpleSVGMeshExporter.h"
30#include "arcane/core/UnstructuredMeshConnectivity.h"
32#if defined(ARCANE_HAS_ACCELERATOR_API)
33#include "arcane/accelerator/Runner.h"
37#include "arcane/accelerator/core/IAcceleratorMng.h"
39#include "arcane/cartesianmesh/ICartesianMesh.h"
40#include "arcane/cartesianmesh/CellDirectionMng.h"
41#include "arcane/cartesianmesh/FaceDirectionMng.h"
42#include "arcane/cartesianmesh/NodeDirectionMng.h"
43#include "arcane/cartesianmesh/CartesianConnectivity.h"
51using namespace Arcane;
57CartesianMeshTestUtils::
62, m_accelerator_mng(am)
72CartesianMeshTestUtils::
73~CartesianMeshTestUtils()
80void CartesianMeshTestUtils::
85 _testDirCellAccelerator();
87 _testDirFaceAccelerator();
89 _testDirNodeAccelerator();
91 _testDirCellNodeAccelerator();
93 _testDirCellFaceAccelerator();
94 if (m_mesh->dimension() == 3) {
95 _testNodeToCellConnectivity3D();
96 _testNodeToCellConnectivity3DAccelerator();
97 _testCellToNodeConnectivity3D();
98 _testCellToNodeConnectivity3DAccelerator();
101 _testNodeToCellConnectivity2D();
102 _testCellToNodeConnectivity2D();
105 _testConnectivityByDirection();
111void CartesianMeshTestUtils::
114 IMesh* mesh = m_mesh;
122 for (NodeLocalId inode : cell.
nodeIds() )
123 center += nodes_coord[inode];
125 m_cell_center[icell] = center;
135 for (NodeLocalId inode : face.
nodeIds() )
136 center += nodes_coord[inode];
138 m_face_center[iface] = center;
146void CartesianMeshTestUtils::
147_checkSameId(FaceLocalId item, FaceLocalId local_id)
149 if (item != local_id)
150 ARCANE_FATAL(
"Bad FaceLocalId item={0} local_id={1}", item, local_id);
153void CartesianMeshTestUtils::
154_checkSameId(CellLocalId item, CellLocalId local_id)
156 if (item != local_id)
157 ARCANE_FATAL(
"Bad CellLocalId item={0} local_id={1}", item, local_id);
160void CartesianMeshTestUtils::
161_checkSameId(NodeLocalId item, NodeLocalId local_id)
163 if (item.localId() != local_id)
164 ARCANE_FATAL(
"Bad NodeLocalId item={0} local_id={1}", item, local_id);
170void CartesianMeshTestUtils::
171_checkItemGroupIsSorted(
const ItemGroup& group)
180void CartesianMeshTestUtils::
183 info() <<
"TEST_DIR_CELL";
185 IMesh* mesh = m_mesh;
186 Integer nb_dir = mesh->dimension();
190 for (
Integer idir = 0; idir < nb_dir; ++idir) {
192 cdm2 = m_cartesian_mesh->cellDirection(idir);
196 info() <<
"DIRECTION=" << idir <<
" Cells=" << cdm.allCells().name();
197 _checkItemGroupIsSorted(cdm.allCells());
201 Cell prev_cell = dir_cell.previous();
202 Cell next_cell = dir_cell.next();
206 DirCell dir_cell2(cdm2[icell]);
207 Cell prev_cell2 = dir_cell2.previous();
208 Cell next_cell2 = dir_cell2.next();
209 DirCell dir_cell3(cdm3[icell]);
210 Cell prev_cell3 = dir_cell3.previous();
211 Cell next_cell3 = dir_cell3.next();
212 _checkSameId(prev_cell, prev_cell2);
213 _checkSameId(next_cell, next_cell2);
214 _checkSameId(prev_cell, prev_cell3);
215 _checkSameId(next_cell, next_cell3);
216 if (nb_print < 0 || iprint < nb_print) {
218 if (!prev_cell.
null() && !next_cell.
null()) {
219 info() <<
"Cell uid=" <<
ItemPrinter(cell) <<
" dir=" << md
220 <<
" prev=" <<
ItemPrinter(prev_cell) <<
" xyz=" << m_cell_center[prev_cell]
221 <<
" next=" <<
ItemPrinter(next_cell) <<
" xyz=" << m_cell_center[next_cell];
224 info() <<
"Cell uid=" <<
ItemPrinter(cell) <<
" dir=" << md;
225 if (!prev_cell.
null())
226 info() <<
" prev=" <<
ItemPrinter(prev_cell) <<
" xyz=" << m_cell_center[prev_cell];
227 if (!next_cell.
null())
228 info() <<
" next=" <<
ItemPrinter(next_cell) <<
" xyz=" << m_cell_center[next_cell];
238void CartesianMeshTestUtils::
239_testDirCellAccelerator()
241#if defined(ARCANE_HAS_ACCELERATOR_API)
242 info() <<
"TEST_DIR_CELL_ACCELERATOR";
249 auto queue = m_accelerator_mng->queue();
254 for (
Integer idir = 0; idir < nb_dir; ++idir) {
256 cdm2 = m_cartesian_mesh->cellDirection(idir);
258 info() <<
"ACCELERATOR_DIRECTION=" << idir <<
" Cells=" << cdm.
allCells().
name();
259 _checkItemGroupIsSorted(cdm.
allCells());
261 auto inout_dummy_var =
viewInOut(command, dummy_var);
265 CellLocalId prev_cell = dir_cell.
previous();
266 CellLocalId next_cell = dir_cell.
next();
274 CellLocalId prev_cell2 = dir_cell2.
previous();
275 CellLocalId next_cell2 = dir_cell2.
next();
277 CellLocalId prev_cell3 = dir_cell3.
previous();
278 CellLocalId next_cell3 = dir_cell3.
next();
279 if (prev_cell != prev_cell2)
280 inout_dummy_var[icell] = -10;
281 if (next_cell != next_cell2)
282 inout_dummy_var[icell] = -11;
283 if (prev_cell != prev_cell3)
284 inout_dummy_var[icell] = -12;
285 if (next_cell != next_cell3)
286 inout_dummy_var[icell] = -13;
288 if (!prev_cell.isNull() && !next_cell.isNull()) {
289 inout_dummy_var[icell] = 2;
292 if (!prev_cell.isNull())
293 inout_dummy_var[icell] = inout_dummy_var[icell] + 1;
294 if (!next_cell.isNull())
295 inout_dummy_var[icell] = inout_dummy_var[icell] + 1;
299 if (dummy_var[icell] < 0)
309void CartesianMeshTestUtils::
314 for (
Integer idir = 0; idir < nb_dir; ++idir)
321void CartesianMeshTestUtils::
322_testDirFaceAccelerator()
324 IMesh* mesh = m_mesh;
325 Integer nb_dir = mesh->dimension();
326 for (
Integer idir = 0; idir < nb_dir; ++idir)
327 _testDirFaceAccelerator(idir);
333void CartesianMeshTestUtils::
334_testDirFace(
int idir)
350 info() <<
"TEST_DIR_FACE for direction=" << idir <<
" -> " << (
eMeshDirection)idir;
351 _checkItemGroupIsSorted(fdm.allFaces());
355 DirFace dir_face2(fdm2[iface]);
357 Cell prev_cell = dir_face.previousCell();
358 Cell next_cell = dir_face.nextCell();
359 Cell prev_cell2 = dir_face2.previousCell();
360 Cell next_cell2 = dir_face2.nextCell();
361 _checkSameId(prev_cell, prev_cell2);
362 _checkSameId(next_cell, next_cell2);
363 _checkSameId(prev_cell, dir_face.previousCellId());
364 _checkSameId(next_cell, dir_face.nextCellId());
365 bool is_print = (nb_print < 0 || iprint < nb_print);
367 Real face_coord = m_face_center[iface][idir];
368 if (!prev_cell.
null() && !next_cell.
null()) {
369 Real next_coord = m_cell_center[next_cell][idir];
370 Real prev_coord = m_cell_center[prev_cell][idir];
371 if (next_coord < prev_coord) {
372 info() <<
"Bad ordering for face";
377 info() <<
"Face uid=" <<
ItemPrinter(face) <<
" dir=" << md <<
" xyz=" << m_face_center[iface]
378 <<
" prev=" << prev_cell.
uniqueId() <<
" xyz=" << m_cell_center[prev_cell]
379 <<
" next=" << next_cell.
uniqueId() <<
" xyz=" << m_cell_center[next_cell];
382 if (!prev_cell.
null()) {
383 Real prev_coord = m_cell_center[prev_cell][idir];
384 if (face_coord < prev_coord) {
385 info() <<
"Bad ordering for face";
390 info() <<
"Face uid=" <<
ItemPrinter(face) <<
" dir=" << md <<
" xyz=" << m_face_center[iface]
391 <<
" prev=" << prev_cell.
uniqueId() <<
" xyz=" << m_cell_center[prev_cell];
393 if (!next_cell.
null()) {
394 Real next_coord = m_cell_center[next_cell][idir];
395 if (next_coord < face_coord) {
396 info() <<
"Bad ordering for face";
401 info() <<
"Face uid=" <<
ItemPrinter(face) <<
" dir=" << md <<
" xyz=" << m_face_center[iface]
402 <<
" next=" << next_cell.
uniqueId() <<
" xyz=" << m_cell_center[next_cell];
407 ARCANE_FATAL(
"Bad connectivity for DirFace nb_error={0}", nb_error);
413void CartesianMeshTestUtils::
414_testDirFaceAccelerator(
int idir)
416#if defined(ARCANE_HAS_ACCELERATOR_API)
427 info() <<
"TEST_DIR_FACE_ACCELERATOR for direction=" << idir <<
" -> " << (
eMeshDirection)idir;
429 auto queue = m_accelerator_mng->defaultQueue();
434 auto inout_dummy_var =
viewInOut(command, dummy_var);
435 auto in_face_center =
viewIn(command, m_face_center);
436 auto in_cell_center =
viewIn(command, m_cell_center);
443 CellLocalId prev_cell = dir_face.previousCell();
444 CellLocalId next_cell = dir_face.nextCell();
445 CellLocalId prev_cell2 = dir_face2.previousCell();
446 CellLocalId next_cell2 = dir_face2.nextCell();
447 if (prev_cell != prev_cell2)
448 inout_dummy_var[iface] = -10;
449 if (next_cell != next_cell2)
450 inout_dummy_var[iface] = -11;
451 if (prev_cell != dir_face.previousCellId())
452 inout_dummy_var[iface] = -12;
453 if (next_cell != dir_face.nextCellId())
454 inout_dummy_var[iface] = -13;
455 if (inout_dummy_var[iface] < 0)
458 Real face_coord = in_face_center[iface][idir];
459 if (!prev_cell.isNull() && !next_cell.isNull()) {
460 Real next_coord = in_cell_center[next_cell][idir];
461 Real prev_coord = in_cell_center[prev_cell][idir];
462 if (next_coord < prev_coord) {
463 inout_dummy_var[iface] = -20;
468 if (!prev_cell.isNull()) {
469 Real prev_coord = in_cell_center[prev_cell][idir];
470 if (face_coord < prev_coord) {
471 inout_dummy_var[iface] = -21;
475 if (!next_cell.isNull()) {
476 Real next_coord = in_cell_center[next_cell][idir];
477 if (next_coord < face_coord) {
478 inout_dummy_var[iface] = -22;
486 if (dummy_var[iface] < 0)
495void CartesianMeshTestUtils::
498 info() <<
"TEST_DIR_NODE";
499 m_node_density.fill(0.0);
501 IMesh* mesh = m_mesh;
502 Integer nb_dir = mesh->dimension();
509 for (
Integer idir = 0; idir < nb_dir; ++idir) {
511 node_dm2 = m_cartesian_mesh->nodeDirection(idir);
515 info() <<
"DIRECTION=" << idir;
516 NodeGroup dm_all_nodes = node_dm.allNodes();
517 _checkItemGroupIsSorted(dm_all_nodes);
520 m_node_density[inode] += 1.0;
521 DirNode dir_node(node_dm[inode]);
522 DirNode dir_node2(node_dm2[inode]);
523 DirNode dir_node3(node_dm3[inode]);
524 Node prev_node = dir_node.previous();
525 Node next_node = dir_node.next();
526 Node prev_node2 = dir_node2.previous();
527 Node next_node2 = dir_node2.next();
528 Node prev_node3 = dir_node3.previous();
529 Node next_node3 = dir_node3.next();
530 _checkSameId(prev_node, prev_node2);
531 _checkSameId(next_node, next_node2);
532 _checkSameId(prev_node, prev_node3);
533 _checkSameId(next_node, next_node3);
534 _checkSameId(prev_node, dir_node.previousId());
535 _checkSameId(next_node, dir_node.nextId());
536 Real my_coord = nodes_coord[inode][idir];
537 bool is_print = (nb_print < 0 || iprint < nb_print);
540 Int32 node_nb_cell = node.
nbCell();
541 info() <<
"DirNode node= " <<
ItemPrinter(node) <<
" nb_cell=" << node_nb_cell <<
" pos=" << nodes_coord[node];
542 for (
Integer k = 0; k < node_nb_cell; ++k) {
543 Real3 cell_pos = m_cell_center[node.
cell(k)];
544 info() <<
"Node k=" << k <<
" cell_pos=" << cell_pos <<
" cell=" <<
ItemPrinter(node.
cell(k));
546 for (
Integer k = 0; k < 8; ++k) {
547 Int32 cell_index = dir_node.cellIndex(k);
549 if (cell_index != (-1)) {
550 if ((1 + cell_index) > node_nb_cell)
551 ARCANE_FATAL(
"Bad value for cell_index '{0}' node_nb_cell={1}", cell_index, node_nb_cell);
552 cell_pos = m_cell_center[node.
cell(cell_index)];
554 info() <<
"DirNode cellIndex k=" << k <<
" index=" << cell_index <<
" pos=" << cell_pos
555 <<
" cell_lid=" << dir_node.cellId(k)
556 <<
" cell=" << dir_node.cell(k);
558 info() <<
"DirNode direct "
559 <<
" " << dir_node.nextLeftCellId()
560 <<
" " << dir_node.nextRightCellId()
561 <<
" " << dir_node.previousRightCellId()
562 <<
" " << dir_node.previousLeftCellId()
563 <<
" " << dir_node.topNextLeftCellId()
564 <<
" " << dir_node.topNextRightCellId()
565 <<
" " << dir_node.topPreviousRightCellId()
566 <<
" " << dir_node.topPreviousLeftCellId();
567 info() <<
"DirNode direct "
570 <<
" " <<
ItemPrinter(dir_node.previousRightCell())
574 <<
" " <<
ItemPrinter(dir_node.topPreviousRightCell())
575 <<
" " <<
ItemPrinter(dir_node.topPreviousLeftCell());
577 if (prev_node.
null() && next_node.
null())
580 if (!prev_node.
null() && !next_node.
null()) {
581 Real next_coord = nodes_coord[next_node][idir];
582 Real prev_coord = nodes_coord[prev_node][idir];
583 if (next_coord < prev_coord) {
584 info() <<
"Bad ordering for node";
589 info() <<
"Node uid=" <<
ItemPrinter(node) <<
" dir=" << md
590 <<
" prev=" <<
ItemPrinter(prev_node) <<
" xyz=" << prev_coord
591 <<
" next=" <<
ItemPrinter(next_node) <<
" xyz=" << next_coord;
594 if (!prev_node.
null()) {
595 Real prev_coord = nodes_coord[prev_node][idir];
596 if (my_coord < prev_coord) {
597 info() <<
"Bad ordering for node";
602 info() <<
"Node uid=" <<
ItemPrinter(node) <<
" dir=" << md
603 <<
" prev=" <<
ItemPrinter(prev_node) <<
" xyz=" << nodes_coord[prev_node];
605 if (!next_node.
null()) {
606 Real next_coord = nodes_coord[next_node][idir];
607 if (next_coord < my_coord) {
608 info() <<
"Bad ordering for node";
613 info() <<
"Node uid=" <<
ItemPrinter(node) <<
" dir=" << md
614 <<
" next=" <<
ItemPrinter(next_node) <<
" xyz=" << nodes_coord[next_node];
628 if (m_node_density[inode] == 0.0) {
630 info() <<
"Bad value for node " <<
ItemPrinter(node);
640void CartesianMeshTestUtils::
641_testDirNodeAccelerator()
643#if defined(ARCANE_HAS_ACCELERATOR_API)
644 info() <<
"TEST_DIR_NODE Accelerator";
645 m_node_density.fill(0.0);
647 IMesh* mesh = m_mesh;
648 Integer nb_dir = mesh->dimension();
660 m_connectivity_view.setMesh(mesh);
661 auto cnc = m_connectivity_view.nodeCell();
663 for (
Integer idir = 0; idir < nb_dir; ++idir) {
665 node_dm2 = m_cartesian_mesh->nodeDirection(idir);
667 info() <<
"DIRECTION=" << idir;
668 NodeGroup dm_all_nodes = node_dm.allNodes();
669 _checkItemGroupIsSorted(dm_all_nodes);
671 auto queue = m_accelerator_mng->defaultQueue();
675 auto inout_dummy_var =
viewInOut(command, dummy_var);
676 auto in_nodes_coord =
viewInOut(command, nodes_coord);
683 NodeLocalId prev_node = dir_node.previous();
684 NodeLocalId next_node = dir_node.next();
685 NodeLocalId prev_node2 = dir_node2.previous();
686 NodeLocalId next_node2 = dir_node2.next();
687 NodeLocalId prev_node3 = dir_node3.previous();
688 NodeLocalId next_node3 = dir_node3.next();
690 if (prev_node != prev_node2)
692 if (next_node != next_node2)
694 if (prev_node != prev_node3)
696 if (next_node != next_node3)
698 if (prev_node != dir_node.previousId())
700 if (next_node != dir_node.nextId())
702 inout_dummy_var[node] = vx;
705 Real my_coord = in_nodes_coord[node][idir];
707 Int32 node_nb_cell = cnc.nbCell(node);
708 for (
Integer k = 0; k < 8; ++k) {
709 Int32 cell_index = dir_node.cellIndex(k);
710 if (cell_index != (-1)) {
711 if ((1 + cell_index) > node_nb_cell) {
712 inout_dummy_var[node] = -40 - k;
717 Int32 sum_id = 20 + dir_node.nextLeftCellId() +
718 dir_node.nextRightCellId() +
719 dir_node.previousRightCellId() +
720 dir_node.previousLeftCellId() +
721 dir_node.topNextLeftCellId() +
722 dir_node.topNextRightCellId() +
723 dir_node.topPreviousRightCellId() +
724 dir_node.topPreviousLeftCellId();
725 inout_dummy_var[node] = sum_id;
727 if (prev_node.isNull() && next_node.isNull()) {
728 inout_dummy_var[node] = -20;
732 if (!prev_node.isNull() && !next_node.isNull()) {
733 Real next_coord = in_nodes_coord[next_node][idir];
734 Real prev_coord = in_nodes_coord[prev_node][idir];
735 if (next_coord < prev_coord) {
736 inout_dummy_var[node] = -30;
741 if (!prev_node.isNull()) {
742 Real prev_coord = in_nodes_coord[prev_node][idir];
743 if (my_coord < prev_coord) {
744 inout_dummy_var[node] = -31;
748 if (!next_node.isNull()) {
749 Real next_coord = in_nodes_coord[next_node][idir];
750 if (next_coord < my_coord) {
751 inout_dummy_var[node] = -32;
759 if (dummy_var[inode] < 0)
769void CartesianMeshTestUtils::
772 IMesh* mesh = m_mesh;
774 Integer nb_dir = mesh->dimension();
777 for (
Integer idir = 0; idir < nb_dir; ++idir) {
780 info() <<
"DIRECTION=" << idir;
784 CellLocalId cell_id(cell.
localId());
787 if (cn.cellId() != cn2.cellId())
789 bool is_print = (nb_print < 0 || iprint < nb_print);
792 info() <<
"Cell uid=" <<
ItemPrinter(cell) <<
" dir=" << md;
793 info() <<
"Cell nextLeft =" <<
ItemPrinter(cn.nextLeft()) <<
" xyz=" << nodes_coord[cn.nextLeft()];
794 info() <<
"Cell nextRight=" <<
ItemPrinter(cn.nextRight()) <<
" xyz=" << nodes_coord[cn.nextRight()];
795 info() <<
"Cell prevRight=" <<
ItemPrinter(cn.previousRight()) <<
" xyz=" << nodes_coord[cn.previousRight()];
796 info() <<
"Cell prevLeft =" <<
ItemPrinter(cn.previousLeft()) <<
" xyz=" << nodes_coord[cn.previousLeft()];
798 info() <<
"Cell topNextLeft =" <<
ItemPrinter(cn.topNextLeft()) <<
" xyz=" << nodes_coord[cn.topNextLeft()];
799 info() <<
"Cell topNextRight=" <<
ItemPrinter(cn.topNextRight()) <<
" xyz=" << nodes_coord[cn.topNextRight()];
800 info() <<
"Cell topPrevRight=" <<
ItemPrinter(cn.topPreviousRight()) <<
" xyz=" << nodes_coord[cn.topPreviousRight()];
801 info() <<
"Cell topPrevLeft =" <<
ItemPrinter(cn.topPreviousLeft()) <<
" xyz=" << nodes_coord[cn.topPreviousLeft()];
811void CartesianMeshTestUtils::
812_testDirCellNodeAccelerator()
814#if defined(ARCANE_HAS_ACCELERATOR_API)
815 IMesh* mesh = m_mesh;
817 Integer nb_dir = mesh->dimension();
822 for (
Integer idir = 0; idir < nb_dir; ++idir) {
824 info() <<
"TEST_DIR_CELL_NODE_ACCELERATOR_DIRECTION=" << idir;
826 auto queue = m_accelerator_mng->defaultQueue();
829 auto inout_dummy_var =
viewInOut(command, dummy_var);
830 auto in_nodes_coord =
viewIn(command, nodes_coord);
831 auto out_computed_center =
viewOut(command, computed_center);
834 inout_dummy_var[cell] = 0;
837 if (cn.cellId() != cn2.cellId()) {
838 inout_dummy_var[cell] = -10;
842 Real3 n1 = in_nodes_coord[cn.nextLeftId()];
843 Real3 n2 = in_nodes_coord[cn.nextRightId()];
844 Real3 n3 = in_nodes_coord[cn.previousRightId()];
845 Real3 n4 = in_nodes_coord[cn.previousLeftId()];
846 Real3 center = n1 + n2 + n3 + n4;
848 Real3 n5 = in_nodes_coord[cn.topNextLeftId()];
849 Real3 n6 = in_nodes_coord[cn.topNextRightId()];
850 Real3 n7 = in_nodes_coord[cn.topPreviousRightId()];
851 Real3 n8 = in_nodes_coord[cn.topPreviousLeftId()];
852 center += n5 + n6 + n7 + n8;
857 out_computed_center[cell] = center;
860 if (dummy_var[icell] < 0) {
863 Real3 c1 = m_cell_center[icell];
864 Real3 c2 = computed_center[icell];
866 if (!is_nearly_equal)
867 ARCANE_FATAL(
"Bad value for computed center id={0} center={1} computed={2}",
877void CartesianMeshTestUtils::
880 IMesh* mesh = m_mesh;
882 Integer nb_dir = mesh->dimension();
884 for (
Integer idir = 0; idir < nb_dir; ++idir) {
887 info() <<
"DIRECTION=" << idir;
891 CellLocalId cell_id(cell.
localId());
894 if (cf.cellId() != cf2.cellId())
896 bool is_print = (nb_print < 0 || iprint < nb_print);
899 info() <<
"CellFace uid=" <<
ItemPrinter(cell) <<
" dir=" << md;
900 info() <<
"CellFace nextFace =" <<
ItemPrinter(cf.next()) <<
" xyz=" << m_face_center[cf.next()];
901 info() <<
"CellFace prevFace=" <<
ItemPrinter(cf.previous()) <<
" xyz=" << m_face_center[cf.previous()];
910void CartesianMeshTestUtils::
911_testDirCellFaceAccelerator()
913#if defined(ARCANE_HAS_ACCELERATOR_API)
914 IMesh* mesh = m_mesh;
916 Integer nb_dir = mesh->dimension();
919 m_connectivity_view.setMesh(mesh);
920 auto cfc = m_connectivity_view.cellFace();
924 for (
Integer idir = 0; idir < nb_dir; ++idir) {
927 auto queue = m_accelerator_mng->defaultQueue();
930 auto inout_dummy_var =
viewInOut(command, dummy_var);
932 info() <<
"DIRECTION=" << idir;
936 inout_dummy_var[cell] = 0;
938 CellLocalId cell_id(cell.
localId());
941 if (cf.cellId() != cf2.cellId()) {
942 inout_dummy_var[cell] = -10;
946 Int32 next_index = cf.nextLocalIndex();
947 Int32 previous_index = cf.previousLocalIndex();
949 FaceLocalId next_face1 = cf.nextId();
950 FaceLocalId next_face2 = cfc.faceId(cell, next_index);
951 if (next_face1 != next_face2)
952 inout_dummy_var[cell] = -11;
954 FaceLocalId previous_face1 = cf.previousId();
955 FaceLocalId previous_face2 = cfc.faceId(cell, previous_index);
956 if (previous_face1 != previous_face2)
957 inout_dummy_var[cell] = -12;
960 if (dummy_var[icell] < 0) {
971void CartesianMeshTestUtils::
972_testNodeToCellConnectivity3D()
974 info() <<
"Test NodeToCell Connectivity3D";
975 IMesh* mesh = m_mesh;
980 Real3 node_coord = nodes_coord[inode];
981 info(4) <<
"node_uid=" << node.
uniqueId()
992 if (!upper_left.
null()) {
993 Real3 c = m_cell_center[upper_left];
994 if (c.
y <= node_coord.
y || c.
x >= node_coord.
x || c.
z >= node_coord.
z)
1000 if (!upper_right.
null()) {
1001 Real3 c = m_cell_center[upper_right];
1002 if (c.
y <= node_coord.
y || c.
x <= node_coord.
x || c.
z >= node_coord.
z)
1008 if (!lower_right.
null()) {
1009 Real3 c = m_cell_center[lower_right];
1010 if (c.
y >= node_coord.
y || c.
x <= node_coord.
x || c.
z >= node_coord.
z)
1016 if (!lower_left.
null()) {
1017 Real3 c = m_cell_center[lower_left];
1018 if (c.
y >= node_coord.
y || c.
x >= node_coord.
x || c.
z >= node_coord.
z)
1024 if (!top_upper_left.
null()) {
1025 Real3 c = m_cell_center[top_upper_left];
1026 if (c.
y <= node_coord.
y || c.
x >= node_coord.
x || c.
z <= node_coord.
z)
1032 if (!top_upper_right.
null()) {
1033 Real3 c = m_cell_center[top_upper_right];
1034 if (c.
y <= node_coord.
y || c.
x <= node_coord.
x || c.
z <= node_coord.
z)
1040 if (!top_lower_right.
null()) {
1041 Real3 c = m_cell_center[top_lower_right];
1042 if (c.
y >= node_coord.
y || c.
x <= node_coord.
x || c.
z <= node_coord.
z)
1048 if (!top_lower_left.
null()) {
1049 Real3 c = m_cell_center[top_lower_left];
1050 if (c.
y >= node_coord.
y || c.
x >= node_coord.
x || c.
z <= node_coord.
z)
1060void CartesianMeshTestUtils::
1061_testNodeToCellConnectivity3DAccelerator()
1063#if defined(ARCANE_HAS_ACCELERATOR_API)
1064 info() <<
"Test NodeToCell Connectivity3D";
1065 IMesh* mesh = m_mesh;
1070 auto queue = m_accelerator_mng->defaultQueue();
1073 auto in_cell_center =
viewIn(command, m_cell_center);
1074 auto in_node_coord =
viewIn(command, nodes_coord);
1075 auto inout_dummy_var =
viewInOut(command, dummy_var);
1078 Real3 node_coord = in_node_coord[node];
1081 if (!upper_left.isNull()) {
1082 Real3 c = in_cell_center[upper_left];
1083 if (c.
y <= node_coord.
y || c.
x >= node_coord.
x || c.
z >= node_coord.
z)
1084 inout_dummy_var[node] = -10;
1089 if (!upper_right.isNull()) {
1090 Real3 c = in_cell_center[upper_right];
1091 if (c.
y <= node_coord.
y || c.
x <= node_coord.
x || c.
z >= node_coord.
z)
1092 inout_dummy_var[node] = -11;
1097 if (!lower_right.isNull()) {
1098 Real3 c = in_cell_center[lower_right];
1099 if (c.
y >= node_coord.
y || c.
x <= node_coord.
x || c.
z >= node_coord.
z)
1100 inout_dummy_var[node] = -12;
1105 if (!lower_left.isNull()) {
1106 Real3 c = in_cell_center[lower_left];
1107 if (c.
y >= node_coord.
y || c.
x >= node_coord.
x || c.
z >= node_coord.
z)
1108 inout_dummy_var[node] = -13;
1113 if (!top_upper_left.isNull()) {
1114 Real3 c = in_cell_center[top_upper_left];
1115 if (c.
y <= node_coord.
y || c.
x >= node_coord.
x || c.
z <= node_coord.
z)
1116 inout_dummy_var[node] = -14;
1121 if (!top_upper_right.isNull()) {
1122 Real3 c = in_cell_center[top_upper_right];
1123 if (c.
y <= node_coord.
y || c.
x <= node_coord.
x || c.
z <= node_coord.
z)
1124 inout_dummy_var[node] = -15;
1129 if (!top_lower_right.isNull()) {
1130 Real3 c = in_cell_center[top_lower_right];
1131 if (c.
y >= node_coord.
y || c.
x <= node_coord.
x || c.
z <= node_coord.
z)
1132 inout_dummy_var[node] = -16;
1137 if (!top_lower_left.isNull()) {
1138 Real3 c = in_cell_center[top_lower_left];
1139 if (c.
y >= node_coord.
y || c.
x >= node_coord.
x || c.
z <= node_coord.
z)
1140 inout_dummy_var[node] = -17;
1145 if (dummy_var[inode] < 0) {
1155void CartesianMeshTestUtils::
1156_testNodeToCellConnectivity2D()
1158 info() <<
"Test NodeToCell Connectivity 2D";
1159 IMesh* mesh = m_mesh;
1164 Real3 node_coord = nodes_coord[inode];
1165 info(4) <<
"node_uid=" << node.
uniqueId()
1172 if (!upper_left.
null()) {
1173 Real3 c = m_cell_center[upper_left];
1174 if (c.
y <= node_coord.
y || c.
x >= node_coord.
x)
1180 if (!upper_right.
null()) {
1181 Real3 c = m_cell_center[upper_right];
1182 if (c.
y <= node_coord.
y || c.
x <= node_coord.
x)
1188 if (!lower_right.
null()) {
1189 Real3 c = m_cell_center[lower_right];
1190 if (c.
y >= node_coord.
y || c.
x <= node_coord.
x)
1196 if (!lower_left.
null()) {
1197 Real3 c = m_cell_center[lower_left];
1198 if (c.
y >= node_coord.
y || c.
x >= node_coord.
x)
1208void CartesianMeshTestUtils::
1209_testCellToNodeConnectivity3D()
1211 info() <<
"Test CellToNode Connectivity3D";
1212 IMesh* mesh = m_mesh;
1215 const bool is_not_amr = !m_is_amr;
1218 Real3 cell_coord = m_cell_center[icell];
1219 info(4) <<
"cell_uid=" << cell.
uniqueId()
1231 Real3 n = nodes_coord[upper_left];
1232 if (n.
y <= cell_coord.
y || n.
x >= cell_coord.
x || n.
z >= cell_coord.
z)
1234 if (cell != ccell && is_not_amr)
1240 Real3 n = nodes_coord[upper_right];
1241 if (n.
y <= cell_coord.
y || n.
x <= cell_coord.
x || n.
z >= cell_coord.
z)
1243 if (cell != ccell && is_not_amr)
1249 Real3 n = nodes_coord[lower_right];
1250 if (n.
y >= cell_coord.
y || n.
x <= cell_coord.
x || n.
z >= cell_coord.
z)
1252 if (cell != ccell && is_not_amr)
1258 Real3 n = nodes_coord[lower_left];
1259 if (n.
y >= cell_coord.
y || n.
x >= cell_coord.
x || n.
z >= cell_coord.
z)
1261 if (cell != ccell && is_not_amr)
1267 Real3 n = nodes_coord[top_upper_left];
1268 if (n.
y <= cell_coord.
y || n.
x >= cell_coord.
x || n.
z <= cell_coord.
z)
1270 if (cell != ccell && is_not_amr)
1276 Real3 n = nodes_coord[top_upper_right];
1277 if (n.
y <= cell_coord.
y || n.
x <= cell_coord.
x || n.
z <= cell_coord.
z)
1279 if (cell != ccell && is_not_amr)
1285 Real3 n = nodes_coord[top_lower_right];
1286 if (n.
y >= cell_coord.
y || n.
x <= cell_coord.
x || n.
z <= cell_coord.
z)
1288 if (cell != ccell && is_not_amr)
1294 Real3 n = nodes_coord[top_lower_left];
1295 if (n.
y >= cell_coord.
y || n.
x >= cell_coord.
x || n.
z <= cell_coord.
z)
1297 if (cell != ccell && is_not_amr)
1306void CartesianMeshTestUtils::
1307_testCellToNodeConnectivity3DAccelerator()
1309#if defined(ARCANE_HAS_ACCELERATOR_API)
1310 info() <<
"Test CellToNode Connectivity3D Accelerator";
1311 IMesh* mesh = m_mesh;
1315 const bool is_not_amr = !m_is_amr;
1317 auto queue = m_accelerator_mng->defaultQueue();
1320 auto in_cell_center =
viewIn(command, m_cell_center);
1321 auto in_node_coord =
viewIn(command, nodes_coord);
1322 auto inout_dummy_var =
viewInOut(command, dummy_var);
1326 Real3 cell_coord = in_cell_center[cell];
1327 inout_dummy_var[cell] = 0;
1331 Real3 n = in_node_coord[upper_left];
1332 if (n.
y <= cell_coord.
y || n.
x >= cell_coord.
x || n.
z >= cell_coord.
z)
1333 inout_dummy_var[cell] = -10;
1334 if (cell != ccell && is_not_amr)
1335 inout_dummy_var[cell] = -20;
1340 Real3 n = in_node_coord[upper_right];
1341 if (n.
y <= cell_coord.
y || n.
x <= cell_coord.
x || n.
z >= cell_coord.
z)
1342 inout_dummy_var[cell] = -11;
1343 if (cell != ccell && is_not_amr)
1344 inout_dummy_var[cell] = -21;
1349 Real3 n = in_node_coord[lower_right];
1350 if (n.
y >= cell_coord.
y || n.
x <= cell_coord.
x || n.
z >= cell_coord.
z)
1351 inout_dummy_var[cell] = -12;
1352 if (cell != ccell && is_not_amr)
1353 inout_dummy_var[cell] = -22;
1358 Real3 n = in_node_coord[lower_left];
1359 if (n.
y >= cell_coord.
y || n.
x >= cell_coord.
x || n.
z >= cell_coord.
z)
1360 inout_dummy_var[cell] = -13;
1361 if (cell != ccell && is_not_amr)
1362 inout_dummy_var[cell] = -23;
1367 Real3 n = in_node_coord[top_upper_left];
1368 if (n.
y <= cell_coord.
y || n.
x >= cell_coord.
x || n.
z <= cell_coord.
z)
1369 inout_dummy_var[cell] = -14;
1370 if (cell != ccell && is_not_amr)
1371 inout_dummy_var[cell] = -24;
1375 CellLocalId ccell = cc.
lowerLeftId(top_upper_right);
1376 Real3 n = in_node_coord[top_upper_right];
1377 if (n.
y <= cell_coord.
y || n.
x <= cell_coord.
x || n.
z <= cell_coord.
z)
1378 inout_dummy_var[cell] = -15;
1379 if (cell != ccell && is_not_amr)
1380 inout_dummy_var[cell] = -25;
1384 CellLocalId ccell = cc.
upperLeftId(top_lower_right);
1385 Real3 n = in_node_coord[top_lower_right];
1386 if (n.
y >= cell_coord.
y || n.
x <= cell_coord.
x || n.
z <= cell_coord.
z)
1387 inout_dummy_var[cell] = -16;
1388 if (cell != ccell && is_not_amr)
1389 inout_dummy_var[cell] = -26;
1394 Real3 n = in_node_coord[top_lower_left];
1395 if (n.
y >= cell_coord.
y || n.
x >= cell_coord.
x || n.
z <= cell_coord.
z)
1396 inout_dummy_var[cell] = -17;
1397 if (cell != ccell && is_not_amr)
1398 inout_dummy_var[cell] = -27;
1402 if (dummy_var[icell] < 0) {
1412void CartesianMeshTestUtils::
1413_testCellToNodeConnectivity2D()
1415 info() <<
"Test CellToNode Connectivity 2D";
1416 IMesh* mesh = m_mesh;
1419 const bool is_not_amr = !m_is_amr;
1422 Real3 cell_coord = m_cell_center[icell];
1423 info(4) <<
"cell_uid=" << cell.
uniqueId()
1431 Real3 n = nodes_coord[upper_left];
1432 if (n.
y <= cell_coord.
y || n.
x >= cell_coord.
x)
1434 if (cell != ccell && is_not_amr)
1440 Real3 n = nodes_coord[upper_right];
1441 if (n.
y <= cell_coord.
y || n.
x <= cell_coord.
x)
1443 if (cell != ccell && is_not_amr)
1449 Real3 n = nodes_coord[lower_right];
1450 if (n.
y >= cell_coord.
y || n.
x <= cell_coord.
x)
1452 if (cell != ccell && is_not_amr)
1458 Real3 n = nodes_coord[lower_left];
1459 if (n.
y >= cell_coord.
y || n.
x >= cell_coord.
x)
1461 if (cell != ccell && is_not_amr)
1470template<
typename ItemType>
void CartesianMeshTestUtils::
1471_testConnectivityByDirectionHelper(
const ItemGroup& group)
1474 Int32 nb_dim = m_mesh->dimension();
1476 info() <<
"Test ConnectivityByDirection 2D";
1508void CartesianMeshTestUtils::
1509_testConnectivityByDirection()
1511 info() <<
"Test Node ConnectivityByDirection";
1512 _testConnectivityByDirectionHelper<Node>(m_mesh->allNodes());
1513 info() <<
"Test Cell ConnectivityByDirection";
1514 _testConnectivityByDirectionHelper<Cell>(m_mesh->allCells());
1520void CartesianMeshTestUtils::
1540void CartesianMeshTestUtils::
1545 info() <<
"Saving mesh to SVG format";
1546 std::ofstream ofile(
"toto.svg");
1548 writer.write(
mesh->allCells());
#define ARCANE_FATAL(...)
Macro envoyant une exception FatalErrorException.
Fonctions utilitaires sur le maillage.
Types et macros pour gérer les énumérations des entités sur les accélérateurs.
#define RUNCOMMAND_ENUMERATE(ItemTypeName, iter_name, item_group,...)
Macro pour itérer sur accélérateur sur un groupe d'entités.
Interface du gestionnaire des accélérateurs.
Classe d'accès aux connectivités cartésiennes.
Informations de connectivité d'un maillage cartésien.
Cell lowerRight(Node n) const
Maille en bas à droite du noeud n.
__host__ __device__ CellLocalId topZUpperLeftId(NodeLocalId n) const
En 3D, maille en haut à gauche du noeud n.
Cell upperLeft(Node n) const
Maille en haut à gauche du noeud n.
Cell topZUpperRight(Node n) const
En 3D, maille en haut à droite du noeud n.
__host__ __device__ CellLocalId topZUpperRightId(NodeLocalId n) const
En 3D, maille en haut à droite du noeud n.
__host__ __device__ CellLocalId lowerLeftId(NodeLocalId n) const
Maille en bas à gauche du noeud n.
__host__ __device__ CellLocalId upperRightId(NodeLocalId n) const
Maille en haut à droite du noeud n.
__host__ __device__ CellLocalId lowerRightId(NodeLocalId n) const
Maille en bas à droite du noeud n.
Cell lowerLeft(Node n) const
Maille en bas à gauche du noeud n.
Cell topZLowerRight(Node n) const
En 3D, maille en bas à droite du noeud n.
Cell topZLowerLeft(Node n) const
En 3D, maille en bas à gauche du noeud n.
Cell upperRight(Node n) const
Maille en haut à droite du noeud n.
Cell topZUpperLeft(Node n) const
En 3D, maille en haut à gauche du noeud n.
__host__ __device__ CellLocalId topZLowerRightId(NodeLocalId n) const
En 3D, maille en bas à droite du noeud n.
__host__ __device__ CellLocalId topZLowerLeftId(NodeLocalId n) const
En 3D, maille en bas à gauche du noeud n.
__host__ __device__ CellLocalId upperLeftId(NodeLocalId n) const
Maille en haut à gauche du noeud n.
Infos sur les mailles d'une direction spécifique X,Y ou Z d'un maillage structuré.
CellGroup allCells() const
Groupe de toutes les mailles dans la direction.
__host__ __device__ DirCellLocalId dirCellId(CellLocalId c) const
Maille direction correspondant à la maille c.
Maille avec info directionnelle des faces.
Maille avec info directionnelle des faces.
Maille avant et après une maille suivant une direction.
constexpr __host__ __device__ CellLocalId next() const
Maille après.
constexpr __host__ __device__ CellLocalId previous() const
Maille avant.
Maille avec info directionnelle des noeuds.
Maille avec info directionnelle des noeuds.
Maille avant et après une maille suivant une direction.
Infos sur maille avant et après une face suivant une direction.
Infos sur maille avant et après une face suivant une direction.
Noeud avant et après un noeud suivant une direction.
Noeud avant et après un noeud suivant une direction.
Infos sur les face d'une direction spécifique X,Y ou Z d'un maillage structuré.
__host__ __device__ DirFaceLocalId dirFaceId(FaceLocalId f) const
Face direction correspondant à la face f.
Interface d'un maillage cartésien.
virtual CartesianConnectivity connectivity()=0
Informations sur la connectivité
virtual IMesh * mesh() const =0
Maillage associé à ce maillage cartésien.
Groupe d'entités de maillage.
bool checkIsSorted() const
Vérifie et retourne si le groupe est trié par uniqueId() croissants.
const String & name() const
Nom du groupe.
Classe utilitaire pour imprimer les infos sur une entité.
Int32 nbNode() const
Nombre de noeuds de l'entité
NodeLocalIdView nodeIds() const
Liste des noeuds de l'entité
constexpr Int32 localId() const
Identifiant local de l'entité dans le sous-domaine du processeur.
ItemUniqueId uniqueId() const
Identifiant unique sur tous les domaines.
constexpr bool null() const
true si l'entité est nul (i.e. non connecté au maillage)
Infos sur les noeuds d'une direction spécifique X,Y ou Z d'un maillage structuré.
__host__ __device__ DirNodeLocalId dirNodeId(NodeLocalId n) const
Noeud direction correspondant au noeud n.
Cell cell(Int32 i) const
i-ème maille du noeud
Int32 nbCell() const
Nombre de mailles connectées au noeud.
Classe gérant un vecteur de réel de dimension 3.
Exportation d'un maillage au format SVG.
Classe d'accès aux traces.
TraceMessage info() const
Flot pour un message d'information.
Vue sur les connectivités standards d'un maillage non structuré.
Vérification de la validité de certaines valeurs.
Paramètres nécessaires à la construction d'une variable.
ItemGroupT< Node > NodeGroup
Groupe de noeuds.
MeshVariableScalarRefT< Face, Int32 > VariableFaceInt32
Grandeur aux faces de type entier 32 bits.
MeshVariableScalarRefT< Cell, Real3 > VariableCellReal3
Grandeur au centre des mailles de type coordonnées.
MeshVariableScalarRefT< Node, Int32 > VariableNodeInt32
Grandeur au noeud de type entier 32 bits.
MeshVariableScalarRefT< Node, Real3 > VariableNodeReal3
Grandeur au noeud de type coordonnées.
MeshVariableScalarRefT< Cell, Int32 > VariableCellInt32
Grandeur au centre des mailles de type entier 32 bits.
Espace de nom pour l'utilisation des accélérateurs.
RunCommand makeCommand(const RunQueue &run_queue)
Créé une commande associée à la file run_queue.
auto viewInOut(const ViewBuildInfo &vbi, CellMaterialVariableScalarRef< DataType > &var)
Vue en lecture/écriture pour les variables materiaux scalaire.
auto viewOut(const ViewBuildInfo &vbi, CellMaterialVariableScalarRef< DataType > &var)
Vue en écriture pour les variables materiaux scalaire.
auto viewIn(const ViewBuildInfo &vbi, const CellMaterialVariableScalarRef< DataType > &var)
Vue en lecture pour les variables materiaux scalaire.
constexpr __host__ __device__ bool isNearlyEqual(const _Type &a, const _Type &b)
Teste si deux valeurs sont à un peu près égales. Pour les types entiers, cette fonction est équivalen...
Int32 Integer
Type représentant un entier.
eMeshDirection
Type de la direction pour un maillage structuré
Real y
deuxième composante du triplet
Real z
troisième composante du triplet
Real x
première composante du triplet