Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
DynamicMeshMerger.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* DynamicMeshMerger.h (C) 2000-2018 */
9/* */
10/* Fusion de plusieurs maillages. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_MESH_DYNAMICMESHMERGER_H
13#define ARCANE_MESH_DYNAMICMESHMERGER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/TraceAccessor.h"
18#include "arcane/mesh/MeshGlobal.h"
19
20#include <map>
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25namespace Arcane
26{
27namespace mesh
28{
29class DynamicMesh;
30
31/*---------------------------------------------------------------------------*/
32/*---------------------------------------------------------------------------*/
36class ARCANE_MESH_EXPORT DynamicMeshMerger
37: public TraceAccessor
38{
39 public:
40
43
44 public:
45
46 void mergeMeshes(ConstArrayView<DynamicMesh*> meshes);
47
48 private:
49
50 DynamicMesh* m_mesh;
51};
52
53/*---------------------------------------------------------------------------*/
54/*---------------------------------------------------------------------------*/
55
56} // End namespace Mesh
57} // End namespace Arcane
58
59/*---------------------------------------------------------------------------*/
60/*---------------------------------------------------------------------------*/
61
62#endif
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Informations pour un échange de maillage entre sous-domaines.
Implémentation d'un maillage.
Definition DynamicMesh.h:97
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-