MED fichier
medfamily.h
Aller à la documentation de ce fichier.
1/* This file is part of MED.
2 *
3 * COPYRIGHT (C) 1999 - 2020 EDF R&D, CEA/DEN
4 * MED is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * MED is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with MED. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef MED_MEDFAMILY_H
19#define MED_MEDFAMILY_H
20
21#include "medC_win_dll.h"
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27
28/* Family */
29
31MEDfamilyCr(const med_idt fid,
32 const char * const meshname,
33 const char * const familyname,
34 const med_int familynumber,
35 const med_int ngroup,
36 const char * const groupname);
37
39MEDnFamily(const med_idt fid,
40 const char * const meshname);
41
43MEDnFamilyGroup(const med_idt fid,
44 const char * const meshname,
45 const int famit);
46
48MEDfamilyInfo(const med_idt fid,
49 const char * const meshname,
50 const int famit,
51 char * const familyname,
52 med_int * const familynumber,
53 char * const groupname);
54
57 const char * const meshname,
58 const int famit);
59
61MEDfamily23Info( const med_idt fid,
62 const char * const meshname,
63 const int famit,
64 char * const familyname,
65 med_int * const attributenumber,
66 med_int * const attributevalue,
67 char * const attributedes,
68 med_int * const familynumber,
69 char * const groupname);
70#ifdef __cplusplus
71}
72#endif
73
74#endif /* MED_MEDFAMILY_H */
75
MEDC_EXPORT med_err MEDfamilyCr(const med_idt fid, const char *const meshname, const char *const familyname, const med_int familynumber, const med_int ngroup, const char *const groupname)
Cette routine permet la création d'une famille portant sur les entités d'un maillage.
Definition MEDfamilyCr.c:40
MEDC_EXPORT med_err MEDfamily23Info(const med_idt fid, const char *const meshname, const int famit, char *const familyname, med_int *const attributenumber, med_int *const attributevalue, char *const attributedes, med_int *const familynumber, char *const groupname)
Cette routine permet de lire les informations relatives à une famille d'un maillage créé avec MED 2....
MEDC_EXPORT med_int MEDnFamily23Attribute(const med_idt fid, const char *const meshname, const int famit)
Cette routine permet de lire le nombre d'attribut dans une famille dans un maillage créé avec MED 2....
MEDC_EXPORT med_err MEDfamilyInfo(const med_idt fid, const char *const meshname, const int famit, char *const familyname, med_int *const familynumber, char *const groupname)
Cette routine permet de lire les informations relatives à une famille d'un maillage.
MEDC_EXPORT med_int MEDnFamily(const med_idt fid, const char *const meshname)
Cette routine permet de lire le nombre de famille dans un maillage.
Definition MEDnFamily.c:35
MEDC_EXPORT med_int MEDnFamilyGroup(const med_idt fid, const char *const meshname, const int famit)
Cette routine permet de lire le nombre de groupe dans une famille.
#define MEDC_EXPORT