14#include "arcane/mesh/ParticleFamily.h"
16#include "arcane/utils/FatalErrorException.h"
17#include "arcane/utils/PlatformUtils.h"
19#include "arcane/core/ISubDomain.h"
20#include "arcane/core/IMesh.h"
21#include "arcane/core/IVariableMng.h"
22#include "arcane/core/Properties.h"
23#include "arcane/core/ItemPrinter.h"
25#include "arcane/mesh/ItemsExchangeInfo2.h"
26#include "arcane/mesh/DynamicMesh.h"
27#include "arcane/mesh/ItemConnectivitySelector.h"
28#include "arcane/mesh/DynamicMeshKindInfos.h"
40ParticleFamily(IMesh* mesh,
const String& name)
42, m_particle_type_info(nullptr)
43, m_particle_shared_info(nullptr)
44, m_sub_domain_id(NULL_SUB_DOMAIN_ID)
45, m_enable_ghost_items(false)
46, m_cell_connectivity(nullptr)
65 ItemTypeMng* itm = m_mesh->itemTypeMng();
66 m_particle_type_info = itm->typeFromId(IT_NullType);
67 m_sub_domain_id = subDomain()->subDomainId();
70 if (!platform::getEnvironmentVariable(
"ARCANE_PARTICLE_NO_UNIQUE_ID_MAP").null()) {
71 pwarning() <<
"TEMPORARY: suppress particule uniqueId map";
72 setHasUniqueIdMap(
false);
75 bool has_unique_id_map = !m_properties->getBool(
"no-unique-id-map");
76 _setHasUniqueIdMap(has_unique_id_map);
79 m_cell_connectivity =
new CellConnectivity(
this, mesh()->cellFamily(),
"ParticleCell");
81 _addConnectivitySelector(m_cell_connectivity);
83 _buildConnectivitySelectors();
86 m_cell_connectivity->setPreAllocatedSize(1);
90 auto network = m_mesh->itemFamilyNetwork();
92 network->addDependency(
this, mesh()->cellFamily(), m_cell_connectivity->customConnectivity(),
false);
102inline void ParticleFamily::
105 _allocateInfos(particle, uid, m_particle_shared_info);
113_allocParticle(
Int64 uid,
bool& need_alloc)
118 ii->setUniqueId(uid);
120 _initializeNewlyAllocatedParticle(ii, uid);
123 ii->
setOwner(m_sub_domain_id, m_sub_domain_id);
131_findOrAllocParticle(
Int64 uid,
bool& is_alloc)
133 ItemInternal* ii = ItemFamily::_findOrAllocOne(uid, is_alloc);
135 _initializeNewlyAllocatedParticle(ii, uid);
145 _addItems(unique_ids, items);
157 addItems(unique_ids, owners, items);
167 m_cell_connectivity->replaceItem(particle, 0, cell);
178 _addItems(unique_ids, items);
180 for (
Integer i = 0; i < n; ++i) {
193 _setCell(particle, new_cell);
194 m_need_prepare_dump =
true;
205 for (
Integer i = 0, n = particle_ids.
size(); i < n; ++i)
207 m_need_prepare_dump =
true;
219 preAllocate(nb_item);
221 bool need_alloc =
false;
222 for (
Integer i = 0; i < nb_item; ++i) {
223 Int64 uid = unique_ids[i];
228 m_need_prepare_dump =
true;
229 _printInfos(nb_item);
236addItems(Int64ConstArrayView unique_ids, Int32ConstArrayView owners, Int32ArrayView items)
238 Integer nb_item = unique_ids.size();
241 preAllocate(nb_item);
243 if (!hasUniqueIdMap())
244 ARCANE_FATAL(
"Can not add particles with owners when hasUniqueIdMap()==false family={0}",
247 bool need_alloc =
false;
248 for (Integer i = 0; i < nb_item; ++i) {
249 Int64 uid = unique_ids[i];
250 ItemInternal* ii = _findOrAllocParticle(uid, need_alloc);
251 ii->setOwner(owners[i], m_sub_domain_id);
253 items[i] = ii->localId();
256 m_need_prepare_dump =
true;
257 _printInfos(nb_item);
285 ARCANE_UNUSED(nb_added);
294 ARCANE_UNUSED(keep_ghost);
305 auto network = m_mesh->itemFamilyNetwork();
307 std::set<Int32> remove_lids;
308 if (want_nullify_cell) {
309 for (
Integer i = 0, n = local_ids.
size(); i < n; ++i) {
311 m_cell_connectivity->replaceItem(lid, 0, null_item_lid);
312 remove_lids.insert(local_ids[i]);
315 for (
auto parent_connectivity : m_mesh->itemFamilyNetwork()->getParentConnectivities(
this)) {
317 for (
auto source_item : parent_connectivity->sourceFamily()->itemsInternal()) {
318 if (source_item->isSuppressed())
322 if (remove_lids.find(connected_item->localId()) != remove_lids.end()) {
323 parent_connectivity->removeConnectedItem(
ItemLocalId(source_item), connected_item);
330 if (want_nullify_cell) {
331 for (
Integer i = 0, n = local_ids.
size(); i < n; ++i) {
333 m_cell_connectivity->replaceItem(lid, 0, null_item_lid);
337 _removeMany(local_ids);
339 m_need_prepare_dump =
true;
348 internalRemoveItems(items_local_id,
false);
358 info(4) <<
"ParticleFamily::prepareForDump: " <<
name()
380 Integer nb_hash = itemsMap().nbBucket();
381 Integer wanted_size = 2 * (nb_item + nbItem());
382 if (nb_hash < wanted_size)
383 itemsMap().resize(wanted_size,
true);
390setHasUniqueIdMap(
bool v)
392 _setHasUniqueIdMap(v);
393 m_properties->setBool(
"no-unique-id-map", !v);
400hasUniqueIdMap()
const
402 return _infos().hasUniqueIdMap();
411 m_particle_shared_info = _findSharedInfo(m_particle_type_info);
418checkValidConnectivity()
427removeNeedRemoveMarkedItems()
433 ItemInternalMap& particle_map = itemsMap();
443 info() <<
"Number of particles of family " <<
name() <<
" to remove: " << lids_to_remove.
size();
444 if (lids_to_remove.
size() > 0)
445 removeParticles(lids_to_remove);
#define ARCANE_FATAL(...)
Macro envoyant une exception FatalErrorException.
Integer size() const
Nombre d'éléments du vecteur.
constexpr Integer size() const noexcept
Retourne la taille du tableau.
void reserve(Int64 new_capacity)
Réserve le mémoire pour new_capacity éléments.
void add(ConstReferenceType val)
Ajoute l'élément val à la fin du tableau.
Gère la récupération des informations de connectivité.
ItemVectorView connectedItems(ItemLocalId item)
Retourne les entités connectées à item.
constexpr Integer size() const noexcept
Nombre d'éléments du tableau.
Int32 flags() const
Flags de l'entité
Int32 localId() const
Numéro local (au sous-domaine) de l'entité
Flags pour les caractéristiques des entités.
@ II_NeedRemove
L'entité doit être supprimé
Structure interne d'une entité de maillage.
Index d'un Item dans une variable.
Int32ConstArrayView localIds() const
Tableau des numéros locaux des entités.
Classe de base d'un élément de maillage.
impl::MutableItemBase mutableItemBase() const
Partie interne modifiable de l'entité.
constexpr Int32 localId() const
Identifiant local de l'entité dans le sous-domaine du processeur.
impl::ItemBase itemBase() const
Partie interne de l'entité.
void setOwner(Integer suid, Int32 current_sub_domain)
Positionne le numéro du sous-domaine propriétaire de l'entité.
void setFlags(Int32 f)
Positionne les flags de l'entité
TraceMessage info() const
Flot pour un message d'information.
Vecteur 1D de données avec sémantique par valeur (style STL).
IMesh * mesh() const override
Maillage associé
void prepareForDump() override
Prépare les données pour une protection.
void checkValidConnectivity() override
Vérification de la validité des structures internes concernant la connectivité.
ItemVectorView view(Int32ConstArrayView local_ids) override
Vue sur les entités.
void notifyItemsOwnerChanged() override
Notifie que les entités propres au sous-domaine de la famille ont été modifiées.
void readFromDump() override
Relit les données à partir d'une protection.
void eachItem(const Lambda &lambda)
Fonction template pour itérer sur les entités de l'instance.
Informations pour échanger des entités d'une famille donnée et leur caractéristiques.
void readAndAllocItems() override
Après réception des messages, lit et créé les entités transférées.
void readVariables() override
Après réception des messages, lit les valeurs des variables.
void removeSentItems() override
Supprime les entités envoyées.
void computeExchangeItems() override
Détermine la liste des entités à échanger.
void processExchange() override
Envoie les messages d'échange.
bool computeExchangeInfos() override
Détermine les informations nécessaires pour les échanges.
void prepareToSend() override
Prépare les structures d'envoie.
void readGroups() override
Après réception des messages, lit les groupes.
Integer nbItem() const override
Nombre d'entités.
String name() const override
Nom de la famille.
void endUpdate() override
Notifie la fin de modification de la liste des entités.
bool getEnableGhostItems() const override
récupère le flag pour gérer les particules ghost de la famille
ItemVectorViewT< Cell > CellVectorView
Vue sur un vecteur de mailles.
ItemVectorViewT< Particle > ParticleVectorView
Vue sur un vecteur de particules.
std::int64_t Int64
Type entier signé sur 64 bits.
Int32 Integer
Type représentant un entier.
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
ConstArrayView< Int64 > Int64ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 64 bits.
ArrayView< Int32 > Int32ArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
@ IK_Particle
Entité de maillage de genre particule.
InternalConnectivityPolicy
Politique d'utilisation des connectivités.
@ Legacy
Connectivités historiques.