MED fichier
medlocalization.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_MEDLOCALIZATION_H
19#define MED_MEDLOCALIZATION_H
20
21#include "medC_win_dll.h"
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27
28/* Localization */
31 const char * const localizationname,
32 const med_geometry_type geotype,
33 const med_int spacedimension,
34 const med_float* const elementcoordinate,
35 const med_switch_mode switchmode,
36 const med_int nipoint,
37 const med_float* const ipointcoordinate,
38 const med_float* const weight,
39 const char * const geointerpname,
40 const char * const ipointstructmeshname);
41
42
45 const char* const localizationname,
46 const med_switch_mode switchmode,
47 med_float* const elementcoordinate,
48 med_float* const ipointcoordinate,
49 med_float* const weight);
50
52MEDnLocalization(const med_idt fid );
53
56 const int localizationit,
57 char * const localizationname,
58 med_geometry_type * const geotype,
59 med_int * const spacedimension,
60 med_int * const nipoint,
61 char * const geointerpname,
62 char * const sectionmeshname,
63 med_int * const nsectionmeshcell,
64 med_geometry_type * const sectiongeotype);
65
68 const char * const localizationname,
69 med_geometry_type * const geotype,
70 med_int * const spacedimension,
71 med_int * const nipoint,
72 char * const geointerpname,
73 char * const sectionmeshname,
74 med_int * const nsectionmeshcell,
75 med_geometry_type * const sectiongeotype);
76
77
78#ifdef __cplusplus
79}
80#endif
81
82#endif /* MED_MEDLOCALIZATION_H */
83
MEDC_EXPORT med_int MEDnLocalization(const med_idt fid)
Cette routine permet de lire le nombre de localisations de points d'intégration contenues dans un fic...
MEDC_EXPORT med_err MEDlocalizationRd(const med_idt fid, const char *const localizationname, const med_switch_mode switchmode, med_float *const elementcoordinate, med_float *const ipointcoordinate, med_float *const weight)
Cette routine permet la lecture d'une localisation localizationname de points d'intégration dans/auto...
MEDC_EXPORT med_err MEDlocalizationWr(const med_idt fid, const char *const localizationname, const med_geometry_type geotype, const med_int spacedimension, const med_float *const elementcoordinate, const med_switch_mode switchmode, const med_int nipoint, const med_float *const ipointcoordinate, const med_float *const weight, const char *const geointerpname, const char *const ipointstructmeshname)
Cette routine permet l'écriture d'une localisation localizationname de points d'intégration dans/auto...
MEDC_EXPORT med_err MEDlocalizationInfo(const med_idt fid, const int localizationit, char *const localizationname, med_geometry_type *const geotype, med_int *const spacedimension, med_int *const nipoint, char *const geointerpname, char *const sectionmeshname, med_int *const nsectionmeshcell, med_geometry_type *const sectiongeotype)
Cette routine permet d'obtenir la description de la localisation de points d'intégration n° localizat...
MEDC_EXPORT med_err MEDlocalizationInfoByName(const med_idt fid, const char *const localizationname, med_geometry_type *const geotype, med_int *const spacedimension, med_int *const nipoint, char *const geointerpname, char *const sectionmeshname, med_int *const nsectionmeshcell, med_geometry_type *const sectiongeotype)
Cette routine permet d'obtenir la description d'une localisation de points d'intégration nommée local...
#define MEDC_EXPORT
med_switch_mode
Definition med.h:96
int med_geometry_type
Definition med.h:194
int med_int
Definition med.h:333
double med_float
Definition med.h:327
herr_t med_err
Definition med.h:323
hid_t med_idt
Definition med.h:322