Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
IMeshConnectivityInfo.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/* IMeshConnectivityInfo.h (C) 2000-2007 */
9/* */
10/* Informations sur la connectivité du maillage. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_IMESHCONNECTIVITYINFO_H
13#define ARCANE_IMESHCONNECTIVITYINFO_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/ArcaneTypes.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22ARCANE_BEGIN_NAMESPACE
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
35{
36 public:
37
38 virtual ~IMeshConnectivityInfo() {} //<! Libère les ressources
39
40 public:
41
42 public:
43
45 virtual Integer maxNodePerCell() =0;
46
48 virtual Integer maxEdgePerCell() =0;
49
51 virtual Integer maxFacePerCell() =0;
52
54 virtual Integer maxNodePerFace() =0;
55};
56
57/*---------------------------------------------------------------------------*/
58/*---------------------------------------------------------------------------*/
59
60ARCANE_END_NAMESPACE
61
62/*---------------------------------------------------------------------------*/
63/*---------------------------------------------------------------------------*/
64
65#endif
Informations sur la connectivité du maillage.
virtual Integer maxNodePerFace()=0
Nombre maximal de noeuds par faces.
virtual Integer maxFacePerCell()=0
Nombre maximal de faces par maille.
virtual Integer maxNodePerCell()=0
Nombre maximal de noeuds par maille.
virtual Integer maxEdgePerCell()=0
Nombre maximal d'arêtes par maille.