medlocalization.h
Aller à la documentation de ce fichier.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef MED_MEDLOCALIZATION_H
00019 #define MED_MEDLOCALIZATION_H
00020
00021 #include "medC_win_dll.h"
00022
00023 #ifdef __cplusplus
00024 extern "C" {
00025 #endif
00026
00027
00028
00029 MEDC_EXPORT med_err
00030 MEDlocalizationWr(const med_idt fid,
00031 const char * const localizationname,
00032 const med_geometry_type geotype,
00033 const med_int spacedimension,
00034 const med_float* const elementcoordinate,
00035 const med_switch_mode switchmode,
00036 const med_int nipoint,
00037 const med_float* const ipointcoordinate,
00038 const med_float* const weight,
00039 const char * const geointerpname,
00040 const char * const ipointstructmeshname);
00041
00042
00043 MEDC_EXPORT med_err
00044 MEDlocalizationRd(const med_idt fid,
00045 const char* const localizationname,
00046 const med_switch_mode switchmode,
00047 med_float* const elementcoordinate,
00048 med_float* const ipointcoordinate,
00049 med_float* const weight);
00050
00051 MEDC_EXPORT med_int
00052 MEDnLocalization(const med_idt fid );
00053
00054 MEDC_EXPORT med_err
00055 MEDlocalizationInfo(const med_idt fid,
00056 const int localizationit,
00057 char * const localizationname,
00058 med_geometry_type * const geotype,
00059 med_int * const spacedimension,
00060 med_int * const nipoint,
00061 char * const geointerpname,
00062 char * const sectionmeshname,
00063 med_int * const nsectionmeshcell,
00064 med_geometry_type * const sectiongeotype);
00065
00066 MEDC_EXPORT med_err
00067 MEDlocalizationInfoByName(const med_idt fid,
00068 const char * const localizationname,
00069 med_geometry_type * const geotype,
00070 med_int * const spacedimension,
00071 med_int * const nipoint,
00072 char * const geointerpname,
00073 char * const sectionmeshname,
00074 med_int * const nsectionmeshcell,
00075 med_geometry_type * const sectiongeotype);
00076
00077
00078 #ifdef __cplusplus
00079 }
00080 #endif
00081
00082 #endif
00083