14#include "arcane/utils/CheckedConvert.h"
15#include "arcane/utils/PlatformUtils.h"
16#include "arcane/utils/Real2.h"
17#include "arcane/utils/MD5HashAlgorithm.h"
20#include "arcane/core/MeshKind.h"
21#include "arcane/core/Directory.h"
23#include "arcane/core/ITimeLoopMng.h"
24#include "arcane/core/ITimeLoopService.h"
25#include "arcane/core/ITimeLoop.h"
26#include "arcane/core/TimeLoopEntryPointInfo.h"
27#include "arcane/core/IMesh.h"
28#include "arcane/core/IItemFamily.h"
29#include "arcane/core/ItemPrinter.h"
30#include "arcane/core/IParallelMng.h"
32#include "arcane/core/IMesh.h"
33#include "arcane/core/IItemFamily.h"
34#include "arcane/core/IMeshModifier.h"
35#include "arcane/core/IMeshUtilities.h"
36#include "arcane/core/ServiceBuilder.h"
38#include "arcane/core/MeshStats.h"
39#include "arcane/core/IPostProcessorWriter.h"
40#include "arcane/core/IVariableMng.h"
41#include "arcane/core/SimpleSVGMeshExporter.h"
42#include "arcane/core/IGhostLayerMng.h"
44#include "arcane/cartesianmesh/ICartesianMesh.h"
45#include "arcane/cartesianmesh/CellDirectionMng.h"
46#include "arcane/cartesianmesh/FaceDirectionMng.h"
47#include "arcane/cartesianmesh/NodeDirectionMng.h"
48#include "arcane/cartesianmesh/CartesianConnectivity.h"
49#include "arcane/cartesianmesh/CartesianMeshRenumberingInfo.h"
50#include "arcane/cartesianmesh/ICartesianMeshPatch.h"
51#include "arcane/cartesianmesh/CartesianMeshUtils.h"
52#include "arcane/cartesianmesh/CartesianMeshCoarsening2.h"
53#include "arcane/cartesianmesh/CartesianMeshPatchListView.h"
55#include "arcane/tests/ArcaneTestGlobal.h"
56#include "arcane/tests/AMRCartesianMeshTester_axl.h"
57#include "arcane/tests/CartesianMeshTestUtils.h"
65using namespace Arcane;
72class AMRCartesianMeshTesterModule
73:
public ArcaneAMRCartesianMeshTesterObject
78 ~AMRCartesianMeshTesterModule();
86 void buildInit()
override;
87 void compute()
override;
100 Int32 m_nb_expected_patch = 0;
108 void _reduceNbGhostLayers();
110 void _computeCenters();
111 void _processPatches();
112 void _writePostProcessing();
113 void _checkUniqueIds();
114 void _testDirections();
115 void _checkDirections();
127AMRCartesianMeshTesterModule::
129: ArcaneAMRCartesianMeshTesterObject(mbi)
135, m_cartesian_mesh(nullptr)
142AMRCartesianMeshTesterModule::
143~AMRCartesianMeshTesterModule()
152void AMRCartesianMeshTesterModule::
155 String time_loop_name(
"AMRCartesianMeshTestLoop");
161 List<TimeLoopEntryPointInfo> clist;
162 clist.add(TimeLoopEntryPointInfo(
"AMRCartesianMeshTester.buildInit"));
167 List<TimeLoopEntryPointInfo> clist;
168 clist.add(TimeLoopEntryPointInfo(
"AMRCartesianMeshTester.init"));
173 List<TimeLoopEntryPointInfo> clist;
174 clist.add(TimeLoopEntryPointInfo(
"AMRCartesianMeshTester.compute"));
180 clist.add(
"AMRCartesianMeshTester");
183 clist.add(
"ArcanePostProcessing");
184 clist.add(
"ArcaneCheckpoint");
185 clist.add(
"ArcaneLoadBalance");
195void AMRCartesianMeshTesterModule::
198 if (subDomain()->isContinue())
201 m_global_deltat.assign(1.0);
203 IItemFamily* cell_family = defaultMesh()->cellFamily();
214 IItemFamily* face_family = defaultMesh()->faceFamily();
229void AMRCartesianMeshTesterModule::
232 info() <<
"AMR Init";
234 IMesh* mesh = defaultMesh();
236 IItemFamily* cell_family = mesh->
cellFamily();
244 IItemFamily* face_family = defaultMesh()->faceFamily();
259 m_utils =
makeRef(
new CartesianMeshTestUtils(m_cartesian_mesh,acceleratorMng()));
261 if (!subDomain()->isContinue()) {
264 _reduceNbGhostLayers();
270 const bool do_coarse_at_init = options()->coarseAtInit();
272 const Integer dimension = defaultMesh()->dimension();
274 m_nb_expected_patch = 1 + options()->refinement2d().size();
275 else if (dimension==3)
276 m_nb_expected_patch = 1 + options()->refinement3d().size();
279 if (do_coarse_at_init)
280 ++m_nb_expected_patch;
282 if (subDomain()->isContinue())
283 m_cartesian_mesh->recreateFromDump();
285 m_cartesian_mesh->computeDirections();
286 CartesianMeshRenumberingInfo renumbering_info;
289 if (options()->coarseAtInit())
291 m_cartesian_mesh->renumberItemsUniqueId(renumbering_info);
294 info() <<
"MaxUid for mesh=" << MeshUtils::getMaxItemUniqueIdCollective(m_cartesian_mesh->mesh());
302 for(
Integer idir=0, nb_dir=dimension; idir<nb_dir; ++idir){
303 CellDirectionMng cdm(m_cartesian_mesh->cellDirection(idir));
307 DirCell cc(cdm.cell(*icell));
308 Cell next = cc.next();
309 Cell prev = cc.previous();
314 m_density[icell] += 5.0;
319 DirCell cc(cdm[icell]);
321 info() <<
"CELL: cell=" << ItemPrinter(*icell)
322 <<
" next=" << ItemPrinter(cc.next())
323 <<
" previous=" << ItemPrinter(cc.previous());
326 m_density[icell] += 5.0;
329 info() <<
"NB_BOUNDARY1=" << nb_boundary1 <<
" NB_BOUNDARY2=" << nb_boundary2;
331 bool is_amr = m_nb_expected_patch!=1;
332 if (options()->verbosityLevel()==0)
333 m_utils->setNbPrint(5);
334 m_utils->testAll(is_amr);
335 _writePostProcessing();
344void AMRCartesianMeshTesterModule::
347 IMesh* mesh = m_cartesian_mesh->mesh();
348 bool print_hash =
true;
349 bool with_ghost = options()->hashWithGhost();
350 MD5HashAlgorithm hash_algo;
351 MeshUtils::checkUniqueIdsHashCollective(mesh->
nodeFamily(), &hash_algo, options()->nodesUidHash(),
352 print_hash, with_ghost);
353 MeshUtils::checkUniqueIdsHashCollective(mesh->
faceFamily(), &hash_algo, options()->facesUidHash(),
354 print_hash, with_ghost);
355 MeshUtils::checkUniqueIdsHashCollective(mesh->
cellFamily(), &hash_algo, options()->cellsUidHash(),
356 print_hash, with_ghost);
362void AMRCartesianMeshTesterModule::
365 const bool do_check =
true;
366 const bool is_verbose = options()->verbosityLevel()>=1;
368 const Int32 dimension = defaultMesh()->dimension();
370 bool without_coarse_zone =
true;
372 without_coarse_zone = options()->coarseZone2d().empty();
373 else if (dimension == 3)
374 without_coarse_zone = options()->coarseZone3d().empty();
382 Integer nb_expected_patch = m_nb_expected_patch;
384 Integer nb_patch = m_cartesian_mesh->nbPatch();
385 if (without_coarse_zone && nb_expected_patch != nb_patch)
386 ARCANE_FATAL(
"Bad number of patchs expected={0} value={1}",nb_expected_patch,nb_patch);
388 IParallelMng* pm = parallelMng();
392 UniqueArray<Int32> nb_cells_expected(options()->expectedNumberOfCellsInPatchs);
393 if (nb_cells_expected.size()!=nb_patch)
394 ARCANE_FATAL(
"Bad size ({0}, expected={1}) for option '{2}'",
395 nb_cells_expected.size(),nb_patch,options()->expectedNumberOfCellsInPatchs.name());
398 bool has_expected_ghost_cells = options()->expectedNumberOfGhostCellsInPatchs.isPresent();
400 has_expected_ghost_cells =
false;
402 UniqueArray<Int32> nb_ghost_cells_expected(options()->expectedNumberOfGhostCellsInPatchs);
403 if (has_expected_ghost_cells && (nb_ghost_cells_expected.size()!=nb_patch))
404 ARCANE_FATAL(
"Bad size ({0}, expected={1}) for option '{2}'",
405 nb_ghost_cells_expected.size(), nb_patch, options()->expectedNumberOfGhostCellsInPatchs.name());
407 for(
Integer i=0; i<nb_patch; ++i ){
408 ICartesianMeshPatch* p = m_cartesian_mesh->patch(i);
410 info() <<
"Patch cell_group=" << patch_cells.name() <<
" nb_cell=" << patch_cells.size();
412 m_cell_patch_variables.add(cellv);
415 (*cellv)[icell] = 2.0;
418 CellGroup patch_own_cell = patch_cells.own();
419 UniqueArray<Int64> own_cells_uid;
423 info() <<
"Patch i=" << i <<
" cell=" << ItemPrinter(*icell);
424 own_cells_uid.
add(cell.uniqueId());
428 UniqueArray<Int64> global_cells_uid;
430 std::sort(global_cells_uid.
begin(),global_cells_uid.
end());
432 info() <<
"GlobalUids Patch=" << i <<
" NB=" << nb_global_uid
433 <<
" expected=" << nb_cells_expected[i];
435 if (do_check && nb_cells_expected[i]!=nb_global_uid)
436 ARCANE_FATAL(
"Bad number of cells for patch I={0} N={1} expected={2}",
437 i,nb_global_uid,nb_cells_expected[i]);
439 for(
Integer c=0; c<nb_global_uid; ++c )
440 info() <<
"GlobalUid Patch=" << i <<
" I=" << c <<
" cell_uid=" << global_cells_uid[c];
443 if (has_expected_ghost_cells){
444 Int32 local_nb_ghost_cell = patch_cells.size() - patch_own_cell.
size();
446 pinfo() <<
"NbGhostCells my_rank=" << comm_rank <<
" local=" << local_nb_ghost_cell <<
" total=" << total;
447 if (total!=nb_ghost_cells_expected[i])
448 ARCANE_FATAL(
"Bad number of ghost cells for patch I={0} N={1} expected={2}",
449 i,total,nb_ghost_cells_expected[i]);
453 if (dimension==2 && options()->dumpSvg()){
454 String filename = String::format(
"Patch{0}-{1}-{2}.svg",i,comm_rank,comm_size);
455 Directory directory = subDomain()->exportDirectory();
456 String full_filename = directory.
file(filename);
457 std::ofstream ofile(full_filename.
localstr());
458 SimpleSVGMeshExporter exporter(ofile);
459 exporter.write(patch_cells);
467void AMRCartesianMeshTesterModule::
470 IMesh* mesh = defaultMesh();
478 for( NodeLocalId inode : cell.
nodes() )
479 center += nodes_coord[inode];
481 m_cell_center[icell] = center;
491 for( NodeLocalId inode : face.
nodes() )
492 center += nodes_coord[inode];
494 m_face_center[iface] = center;
502void AMRCartesianMeshTesterModule::
506 if (options()->coarseAtInit()){
508 m_cartesian_mesh->computeDirections();
510 info() <<
"Doint initial coarsening";
512 if (m_cartesian_mesh->mesh()->meshKind().meshAMRKind() == eMeshAMRKind::PatchCartesianMeshOnly) {
513 debug() <<
"Coarse with specific coarser (for cartesian mesh only)";
515 coarser->createSubLevel();
519 coarser->createCoarseCells();
522 CartesianMeshPatchListView patches = m_cartesian_mesh->patches();
523 Int32 nb_patch = patches.size();
526 info() <<
"NB_PATCH=" << nb_patch;
527 for( CartesianPatch p : patches){
528 info() <<
"Patch i=" << index <<
" nb_cell=" << p.
cells().
size();
536 Int32 dim = defaultMesh()->dimension();
538 for(
const auto& x : options()->refinement2d() ){
539 m_cartesian_mesh->refinePatch({x->position(), x->length()});
540 m_cartesian_mesh->computeDirections();
544 for(
const auto& x : options()->refinement3d() ){
545 m_cartesian_mesh->refinePatch({x->position(), x->length()});
546 m_cartesian_mesh->computeDirections();
554void AMRCartesianMeshTesterModule::
557 Int32 dim = defaultMesh()->dimension();
561 for (
auto& x : options()->coarseZone2d()) {
566 m_cartesian_mesh->coarseZone({{x->position()}, {x->length()}});
567 m_cartesian_mesh->computeDirections();
572 for (
auto& x : options()->coarseZone3d()) {
577 m_cartesian_mesh->coarseZone({{x->position()}, {x->length()}});
578 m_cartesian_mesh->computeDirections();
586void AMRCartesianMeshTesterModule::
587_reduceNbGhostLayers()
589 for (
auto& x : options()->reduceNbGhostLayers()) {
590 Integer final_nb_ghost_layer{ m_cartesian_mesh->reduceNbGhostLayers(x->level(), x->nbGhostLayers()) };
592 if (parallelMng()->commSize() != 1 && final_nb_ghost_layer != x->nbGhostLayers()) {
602void AMRCartesianMeshTesterModule::
620 for(
Int32 j=0; j<nb_children; ++j ) {
621 Real sub_density = 0.0;
624 for(
Integer k=0; k<sub_cell_nb_node; ++k )
625 sub_density += m_node_density[sub_cell.
node(k)];
626 sub_density /= (
Real)sub_cell_nb_node;
627 m_density[sub_cell] =sub_density;
635void AMRCartesianMeshTesterModule::
648 for(
Integer idir=0; idir<nb_dir; ++idir){
649 m_old_density.copy(m_density);
652 info() <<
"Direction=" << idir <<
" cells=" << cdm.innerCells().name()
653 <<
" n=" << cdm.innerCells().size();
657 Cell next = cc.next();
658 Cell prev = cc.previous();
659 Real d = m_old_density[icell] + m_old_density[next] + m_old_density[prev];
660 m_density[icell] = d / 3.0;
668 Cell next = cc.next();
669 Cell prev = cc.previous();
670 Real d = m_old_density[icell];
673 d += m_old_density[next];
677 d += m_old_density[prev];
680 m_density[icell] = d / n;
690 for(
Integer i=0; i<nb_cell; ++i )
691 density += m_density[node.
cell(i)];
692 density /= (
Real)nb_cell;
693 m_node_density[inode] = density;
700void AMRCartesianMeshTesterModule::
710 Integer nb_dir = defaultMesh()->dimension();
711 for(
Integer idir=0; idir<nb_dir; ++idir){
712 CellDirectionMng cdm(m_cartesian_mesh->cellDirection(idir));
715 DirCell cc(cdm[icell]);
716 Cell next = cc.next();
717 Cell prev = cc.previous();
718 Real d = m_density[icell];
721 d += m_density[next];
725 d += m_density[prev];
728 m_density[icell] = d / n;
736void AMRCartesianMeshTesterModule::
737_writePostProcessing()
739 info() <<
"Post-process AMR";
740 IPostProcessorWriter* post_processor = options()->postProcessor();
741 Directory output_directory = Directory(subDomain()->exportDirectory(),
"amrtestpost1");
743 info() <<
"Creating output dir '" << output_directory.
path() <<
"' for export";
744 UniqueArray<Real> times;
745 times.
add(m_global_time());
747 post_processor->
setMesh(defaultMesh());
750 VariableList variables;
754 variables.add(v->variable());
757 groups.add(allCells());
758 for( CartesianPatch p : m_cartesian_mesh->patches() )
759 groups.add(p.
cells());
761 IVariableMng* vm = subDomain()->variableMng();
768void AMRCartesianMeshTesterModule::
771 Integer nb_patch = m_cartesian_mesh->nbPatch();
772 Integer nb_dir = m_cartesian_mesh->mesh()->dimension();
773 NodeDirectionMng node_dm2;
774 for(
Integer ipatch=0; ipatch<nb_patch; ++ipatch ){
775 ICartesianMeshPatch* p = m_cartesian_mesh->patch(ipatch);
776 for(
Integer idir=0; idir<nb_dir; ++idir ){
779 NodeGroup dm_all_nodes = node_dm.allNodes();
781 DirNode dir_node(node_dm[inode]);
782 DirNode dir_node2(node_dm2[inode]);
783 Node prev_node = dir_node.previous();
784 Node next_node = dir_node.next();
785 Node prev_node2 = dir_node2.previous();
786 Node next_node2 = dir_node2.next();
787 m_utils->checkSameId(prev_node, prev_node2);
788 m_utils->checkSameId(next_node, next_node2);
794void AMRCartesianMeshTesterModule::
797 m_cartesian_mesh->computeDirections();
798 IMesh* mesh = m_cartesian_mesh->mesh();
799 bool print_hash =
true;
801 auto check_hash = [&](
const IItemFamily* item_family,
const String& expected_hash, ArrayView<Int64> own_items_uid_around,
Integer nb_items_around) {
805 info() <<
"HASH_RESULT direction items of family=" << item_family->
name()
806 <<
" v= " << cell_hash <<
" expected= " << expected_hash;
809 if (cell_hash != expected_hash)
810 ARCANE_FATAL(
"Bad hash for uniqueId() for direction items of family '{0}' v= {1} expected='{2}'",
811 item_family->
fullName(), cell_hash, expected_hash);
814 if (!options()->cellsDirectionHash().empty()) {
815 debug() <<
"Check cells direction hash";
816 UniqueArray<Int64> own_cells_uid_around_cells;
818 check_hash(mesh->
cellFamily(), options()->cellsDirectionHash(), own_cells_uid_around_cells, nb_items_around);
820 if (!options()->facesDirectionHash().empty()) {
821 debug() <<
"Check faces direction hash";
822 UniqueArray<Int64> own_cells_uid_around_faces;
824 check_hash(mesh->
faceFamily(), options()->facesDirectionHash(), own_cells_uid_around_faces, nb_items_around);
827 if (!options()->nodesDirectionHash().empty()) {
828 debug() <<
"Check nodes direction hash";
829 UniqueArray<Int64> own_nodes_uid_around_nodes;
831 check_hash(mesh->
nodeFamily(), options()->nodesDirectionHash(), own_nodes_uid_around_nodes, nb_items_around);
849 Integer size_of_once_case_around = nb_items_around + 1;
854 parallelMng()->allGatherVariable(own_items_uid_around, global_items_uid_around);
859 for (
Int64 i = 0; i < global_items_uid_around.
size(); i += size_of_once_case_around) {
860 Int64 uid = global_items_uid_around[i];
861 ARCANE_ASSERT((uid != -1), (
"Un uid dans le tableau est = -1"));
862 global_items_uid[index++] = &(global_items_uid_around[i]);
866 std::sort(global_items_uid.
begin(), global_items_uid.
end(),
871 final_all_items_uid.
resize(global_items_uid_around.
size());
874 Int64 previous_uid = -1;
876 for (
Int64* ptr_uid : global_items_uid) {
877 if (*ptr_uid == previous_uid) {
880 previous_uid = *ptr_uid;
881 for (
Integer iaround = 0; iaround < size_of_once_case_around; ++iaround) {
882 final_all_items_uid[index++] = ptr_uid[iaround];
910 if (pm->
commSize() != 1 &&
mesh->ghostLayerMng()->nbGhostLayer() == 0) {
914 Integer nb_patch = m_cartesian_mesh->nbPatch();
916 Integer nb_items =
mesh->cellFamily()->allItems().own().size();
919 constexpr Integer nb_items_per_dir = 2;
924 Integer size_of_once_case_around = nb_dir * nb_items_per_dir + 1;
926 own_cells_uid_around_cells.
resize(nb_items * size_of_once_case_around, -1);
930 own_cells_uid_around_cells[index] = icell->uniqueId();
931 index += size_of_once_case_around;
940 ARCANE_ASSERT((uid != -1), (
"Uid ne peut pas être égal à -1"));
942 for (
Integer i = 0; i < own_cells_uid_around_cells.
size(); i += size_of_once_case_around) {
943 if (own_cells_uid_around_cells[i] == uid) {
944 Integer pos_final = i + 1 + (dir * nb_items_per_dir);
945 Integer pos_pred = pos_final + ipred;
946 Integer pos_succ = pos_final + isucc;
947 if (own_cells_uid_around_cells[pos_pred] != -1 && own_cells_uid_around_cells[pos_pred] != uid_pred) {
948 ARCANE_FATAL(
"Problème de cohérence entre les patchs (uid={0} -- old_uid_pred={1} -- new_uid_pred={2})", uid, own_cells_uid_around_cells[pos_pred], uid_pred);
950 if (own_cells_uid_around_cells[pos_succ] != -1 && own_cells_uid_around_cells[pos_succ] != uid_succ) {
951 ARCANE_FATAL(
"Problème de cohérence entre les patchs (uid={0} -- old_uid_succ={1} -- new_uid_succ={2})", uid, own_cells_uid_around_cells[pos_succ], uid_succ);
953 own_cells_uid_around_cells[pos_pred] = uid_pred;
954 own_cells_uid_around_cells[pos_succ] = uid_succ;
960 for (
Integer idir = 0; idir < nb_dir; ++idir) {
966 set_value(idir, icell->uniqueId(), prev.uniqueId(), next.uniqueId());
970 for (
Integer ipatch = 0; ipatch < nb_patch; ++ipatch) {
972 for (
Integer idir = 0; idir < nb_dir; ++idir) {
978 set_value(idir, icell->uniqueId(), prev.uniqueId(), next.uniqueId());
983 return size_of_once_case_around-1;
1001 if (pm->
commSize() != 1 &&
mesh->ghostLayerMng()->nbGhostLayer() == 0) {
1005 Integer nb_patch = m_cartesian_mesh->nbPatch();
1007 Integer nb_items =
mesh->faceFamily()->allItems().own().size();
1010 constexpr Integer nb_items_per_dir = 2;
1015 Integer size_of_once_case_around = nb_items_per_dir * nb_patch + 1;
1017 own_cells_uid_around_faces.
resize(nb_items * size_of_once_case_around, -1);
1021 own_cells_uid_around_faces[index] = iitem->uniqueId();
1022 index += size_of_once_case_around;
1030 ARCANE_ASSERT((uid != -1), (
"Uid ne peut pas être égal à -1"));
1032 for (
Integer i = 0; i < own_cells_uid_around_faces.
size(); i += size_of_once_case_around) {
1033 if (own_cells_uid_around_faces[i] == uid) {
1034 Integer pos_final = i + 1 + ipatch * nb_items_per_dir;
1035 Integer pos_pred = pos_final + ipred;
1036 Integer pos_succ = pos_final + isucc;
1037 if (own_cells_uid_around_faces[pos_pred] != -1 && own_cells_uid_around_faces[pos_pred] != uid_pred) {
1038 ARCANE_FATAL(
"Problème de cohérence entre les patchs (uid={0} -- old_uid_pred={1} -- new_uid_pred={2})", uid, own_cells_uid_around_faces[pos_pred], uid_pred);
1040 if (own_cells_uid_around_faces[pos_succ] != -1 && own_cells_uid_around_faces[pos_succ] != uid_succ) {
1041 ARCANE_FATAL(
"Problème de cohérence entre les patchs (uid={0} -- old_uid_succ={1} -- new_uid_succ={2})", uid, own_cells_uid_around_faces[pos_succ], uid_succ);
1043 own_cells_uid_around_faces[pos_pred] = uid_pred;
1044 own_cells_uid_around_faces[pos_succ] = uid_succ;
1061 for (
Integer ipatch = 0; ipatch < nb_patch; ++ipatch) {
1063 for (
Integer idir = 0; idir < nb_dir; ++idir) {
1069 set_value(ipatch, iface->uniqueId(), prev.uniqueId(), next.uniqueId());
1074 return size_of_once_case_around-1;
1097 if (pm->
commSize() != 1 &&
mesh->ghostLayerMng()->nbGhostLayer() == 0) {
1101 Integer nb_patch = m_cartesian_mesh->nbPatch();
1103 Integer nb_items =
mesh->nodeFamily()->allItems().own().size();
1106 constexpr Integer nb_items_per_dir = 2;
1111 Integer size_of_once_case_around = nb_dir * nb_items_per_dir * nb_patch + 1;
1113 own_nodes_uid_around_nodes.
resize(nb_items * size_of_once_case_around, -1);
1117 own_nodes_uid_around_nodes[index] = iitem->uniqueId();
1118 index += size_of_once_case_around;
1128 ARCANE_ASSERT((uid != -1), (
"Uid ne peut pas être égal à -1"));
1130 for (
Integer i = 0; i < own_nodes_uid_around_nodes.
size(); i += size_of_once_case_around) {
1131 if (own_nodes_uid_around_nodes[i] == uid) {
1132 Integer pos_final = i + 1 + ipatch * (nb_items_per_dir * nb_dir) + dir * nb_items_per_dir;
1133 Integer pos_pred = pos_final + ipred;
1134 Integer pos_succ = pos_final + isucc;
1135 if (own_nodes_uid_around_nodes[pos_pred] != -1 && own_nodes_uid_around_nodes[pos_pred] != uid_pred) {
1136 ARCANE_FATAL(
"Problème de cohérence entre les patchs (uid={0} -- old_uid_pred={1} -- new_uid_pred={2})", uid, own_nodes_uid_around_nodes[pos_pred], uid_pred);
1138 if (own_nodes_uid_around_nodes[pos_succ] != -1 && own_nodes_uid_around_nodes[pos_succ] != uid_succ) {
1139 ARCANE_FATAL(
"Problème de cohérence entre les patchs (uid={0} -- old_uid_succ={1} -- new_uid_succ={2})", uid, own_nodes_uid_around_nodes[pos_succ], uid_succ);
1141 own_nodes_uid_around_nodes[pos_pred] = uid_pred;
1142 own_nodes_uid_around_nodes[pos_succ] = uid_succ;
1159 for (
Integer ipatch = 0; ipatch < nb_patch; ++ipatch) {
1161 for (
Integer idir = 0; idir < nb_dir; ++idir) {
1167 set_value(idir, ipatch, inode->uniqueId(), prev.uniqueId(), next.uniqueId());
1172 return size_of_once_case_around-1;
1178void AMRCartesianMeshTesterModule::
1187 test_var[icell] = 1;
1189 test_var.synchronize();
1191 if (test_var[icell] != 1) {
1203void AMRCartesianMeshTesterModule::
1209 Real3 min_pos = position;
1210 Real3 max_pos = min_pos + length;
1211 ENUMERATE_ (Cell, icell, mesh()->allCells()) {
1212 if ((icell->level() == level) || (level == -1 && icell->nbHChildren() == 0)) {
1213 Real3 center = m_cell_center[icell];
1214 bool is_inside_x = center.
x > min_pos.
x && center.
x < max_pos.
x;
1215 bool is_inside_y = center.
y > min_pos.
y && center.
y < max_pos.
y;
1216 bool is_inside_z = (center.
z > min_pos.
z && center.
z < max_pos.
z) || !is_3d;
1217 if (is_inside_x && is_inside_y && is_inside_z) {
1218 cells_in_patch.
add(icell.itemLocalId());
#define ARCANE_FATAL(...)
Macro envoyant une exception FatalErrorException.
Fonctions utilitaires sur le maillage.
Ce fichier contient les différentes fabriques de services et macro pour enregistrer les services.
Module de test pour les infos sur les maillages cartésiens.
Integer _cellsUidAroundFaces(UniqueArray< Int64 > &own_cells_uid_around_faces)
Méthode permettant de récupérer un tableau contenant les mailles autour des faces.
Integer _cellsUidAroundCells(UniqueArray< Int64 > &own_cells_uid_around_cells)
Méthode permettant de récupérer un tableau contenant les mailles autour des mailles.
Integer _nodesUidAroundNodes(UniqueArray< Int64 > &own_nodes_uid_around_nodes)
Méthode permettant de récupérer un tableau contenant les noeuds autour des noeuds.
void _computeSubCellDensity(Cell cell)
Calcule la densité d'une maille AMR.
String _checkDirectionUniqueIdsHashCollective(ArrayView< Int64 > own_items_uid_around, Integer nb_items_around)
Méthode permettant de calculer un hash à partir d'un tableau d'items "autour".
Integer size() const
Nombre d'éléments du vecteur.
Vue modifiable d'un tableau d'un type T.
iterator end()
Itérateur sur le premier élément après la fin du tableau.
void resize(Int64 s)
Change le nombre d'éléments du tableau à s.
iterator begin()
Itérateur sur le premier élément du tableau.
Span< const T > constSpan() const
Vue constante sur ce tableau.
void add(ConstReferenceType val)
Ajoute l'élément val à la fin du tableau.
void setSortAfterRenumbering(bool v)
Indique si on retrie les entités après renumérotation.
void setParentPatch(CartesianPatch patch)
Numéro du patch parent pour la renumérotation.
void setRenumberPatchMethod(Int32 v)
Méthode pour renuméroter les patchs.
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.
DirCell cell(Cell c) const
Maille direction correspondant à la maille c.
Int32 nbHChildren() const
Nombre d'enfants pour l'AMR.
Cell hChild(Int32 i) const
i-ème enfant AMR
void clear()
Supprime tous les éléments de la collection.
Maille avant et après une maille suivant une direction.
Cell previous() const
Maille avant.
Cell next() const
Maille après.
Infos sur maille avant et après une face suivant une direction.
Cell nextCell() const
Maille après.
Cell previousCell() const
Maille avant.
Noeud avant et après un noeud suivant une direction.
Node next() const
Maille après.
Node previous() const
Maille avant.
virtual String file(const String &file_name) const
Retourne le chemin complet du fichier file_name dans le répertoire.
virtual bool createDirectory() const
Créé le répertoire.
virtual String path() const
Retourne le chemin du répertoire.
Infos sur les face d'une direction spécifique X,Y ou Z d'un maillage structuré.
DirFace face(Face f) const
Face direction correspondant à la face f.
FaceGroup allFaces() const
Groupe de toutes les faces dans la direction.
Interface d'un patch AMR d'un maillage cartésien.
virtual CellGroup cells()=0
Groupe de mailles du patch.
virtual NodeDirectionMng & nodeDirection(eMeshDirection dir)=0
Liste des noeuds dans la direction dir.
virtual FaceDirectionMng & faceDirection(eMeshDirection dir)=0
Liste des faces dans la direction dir.
virtual CellDirectionMng & cellDirection(eMeshDirection dir)=0
Liste des mailles dans la direction dir.
Interface d'un maillage cartésien.
static ICartesianMesh * getReference(const MeshHandleOrMesh &mesh, bool create=true)
Récupère ou créé la référence associée à mesh.
virtual CellDirectionMng cellDirection(eMeshDirection dir)=0
Liste des mailles dans la direction dir.
virtual IMesh * mesh() const =0
Maillage associé à ce maillage cartésien.
virtual ItemGroup createGroup(const String &name, Int32ConstArrayView local_ids, bool do_override=false)=0
Créé un groupe d'entités de nom name contenant les entités local_ids.
virtual String name() const =0
Nom de la famille.
virtual String fullName() const =0
Nom complet de la famille (avec celui du maillage)
virtual IItemFamily * nodeFamily()=0
Retourne la famille des noeuds.
virtual IItemFamily * faceFamily()=0
Retourne la famille des faces.
virtual NodeGroup allNodes()=0
Groupe de tous les noeuds.
virtual IItemFamily * cellFamily()=0
Retourne la famille des mailles.
virtual VariableNodeReal3 & nodesCoordinates()=0
Coordonnées des noeuds.
Interface du gestionnaire de parallélisme pour un sous-domaine.
virtual Int32 commRank() const =0
Rang de cette instance dans le communicateur.
virtual void allGatherVariable(ConstArrayView< char > send_buf, Array< char > &recv_buf)=0
Effectue un regroupement sur tous les processeurs.
virtual Int32 commSize() const =0
Nombre d'instance dans le communicateur.
virtual bool isParallel() const =0
Retourne true si l'exécution est parallèle.
virtual char reduce(eReduceType rt, char v)=0
Effectue la réduction de type rt sur le réel v et retourne la valeur.
virtual void setVariables(VariableCollection variables)=0
Positionne la liste des variables à sortir.
virtual void setTimes(RealConstArrayView times)=0
Positionne la liste des temps.
virtual void setGroups(ItemGroupCollection groups)=0
Positionne la liste des groupes à sortir.
virtual void setBaseDirectoryName(const String &dirname)=0
Positionne le nom du répertoire de sortie des fichiers. Ce répertoire doit exister.
virtual void setMesh(IMesh *mesh)
Positionne le maillage.
Interface du gestionnaire d'un sous-domaine.
virtual ITimeLoopMng * timeLoopMng()=0
Retourne le gestionnaire de la boucle en temps.
virtual ITimeLoop * createTimeLoop(const String &name)=0
Crée une boucle en temps de nom name.
virtual void registerTimeLoop(ITimeLoop *time_loop)=0
Enregistrement et choix de la boucle en temps.
virtual void setRequiredModulesName(const StringCollection &)=0
Positionne la liste des des modules obligatoires.
virtual void setOptionalModulesName(const StringCollection &)=0
Positionne la liste des des modules facultatifs.
static const char * WBuild
appelé lors de la lecture du jeu de données
static const char * WComputeLoop
appelé pendant la boucle de calcul
virtual void setEntryPoints(const String &where, const TimeLoopEntryPointInfoCollection &)=0
Positionne la liste des noms des points d'entrée pour le point d'appel where.
static const char * WInit
appelé pendant l'initialisation, l'initialisation d'une reprise ou d'un nouveau cas
virtual void writePostProcessing(IPostProcessorWriter *writer)=0
Ecrit les variables pour un post-traitement.
Integer size() const
Nombre d'éléments du groupe.
Node node(Int32 i) const
i-ème noeud de l'entité
NodeConnectedListViewType nodes() const
Liste des noeuds de l'entité
Int32 nbNode() const
Nombre de noeuds de l'entité
Classe de base d'un élément de maillage.
constexpr bool null() const
true si l'entité est nul (i.e. non connecté au maillage)
Calcule la fonction de hashage MD5 d'un tableau.
void computeHash64(Span< const Byte > input, ByteArray &output) override
Calcule la valeur du hash pour le tableau input.
Informations pour construire un module.
Infos sur les noeuds d'une direction spécifique X,Y ou Z d'un maillage structuré.
NodeGroup allNodes() const
Groupe de tous les noeuds dans la direction.
DirNode node(Node 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.
Référence à une instance.
Chaîne de caractères unicode.
const char * localstr() const
Retourne la conversion de l'instance dans l'encodage UTF-8.
Vecteur 1D de données avec sémantique par valeur (style STL).
Paramètres nécessaires à la construction d'une variable.
ItemGroupT< Cell > CellGroup
Groupe de mailles.
ItemGroupT< Node > NodeGroup
Groupe de noeuds.
MeshVariableScalarRefT< Cell, Real > VariableCellReal
Grandeur au centre des mailles de type réel.
MeshVariableScalarRefT< Node, Real > VariableNodeReal
Grandeur au noeud de type réel.
MeshVariableScalarRefT< Cell, Real3 > VariableCellReal3
Grandeur au centre des mailles de type coordonnées.
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.
MeshVariableScalarRefT< Face, Real3 > VariableFaceReal3
Grandeur aux faces de type coordonnées.
ARCANE_CARTESIANMESH_EXPORT Ref< CartesianMeshCoarsening2 > createCartesianMeshCoarsening2(ICartesianMesh *cm)
Créé une instance pour gérer le déraffinement du maillage (V2).
ARCANE_CARTESIANMESH_EXPORT Ref< ICartesianMeshAMRPatchMng > cartesianMeshAMRPatchMng(ICartesianMesh *cm)
Créé une instance pour gérer le déraffinement du maillage (V3?).
String toHexaString(ByteConstArrayView input)
Converti un tableau d'octet en sa représentation hexadécimale.
@ ReduceSum
Somme des valeurs.
std::int64_t Int64
Type entier signé sur 64 bits.
Int32 Integer
Type représentant un entier.
List< ItemGroup > ItemGroupList
Tableau de groupes d'éléments du maillage.
UniqueArray< Int32 > Int32UniqueArray
Tableau dynamique à une dimension d'entiers 32 bits.
List< String > StringList
Tableau de chaînes de caractères unicode.
impl::SpanTypeFromSize< conststd::byte, SizeType >::SpanType asBytes(const SpanImpl< DataType, SizeType, Extent > &s)
Converti la vue en un tableau d'octets non modifiables.
double Real
Type représentant un réel.
auto makeRef(InstanceType *t) -> Ref< InstanceType >
Créé une référence sur un pointeur.
std::int32_t Int32
Type entier signé sur 32 bits.
Real y
deuxième composante du triplet
Real z
troisième composante du triplet
Real x
première composante du triplet