00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef MED_MEDEQUIVALENCE_H
00019 #define MED_MEDEQUIVALENCE_H
00020
00021 #include "medC_win_dll.h"
00022
00023 #ifdef __cplusplus
00024 extern "C" {
00025 #endif
00026
00027
00028
00029
00030 MEDC_EXPORT med_err
00031 MEDequivalenceCr(const med_idt fid,
00032 const char * const meshname,
00033 const char * const equivname,
00034 const char * const description);
00035
00036 MEDC_EXPORT med_err
00037 MEDequivalenceCorrespondenceWr(const med_idt fid,
00038 const char * const meshname,
00039 const char * const equivname,
00040 const med_int numdt,
00041 const med_int numit,
00042 const med_entity_type entitype,
00043 const med_geometry_type geotype,
00044 const med_int nentity,
00045 const med_int * const correspondence);
00046
00047 MEDC_EXPORT med_err
00048 MEDequivalenceCorrespondenceRd(const med_idt fid,
00049 const char * const meshname,
00050 const char * const equivname,
00051 const med_int numdt,
00052 const med_int numit,
00053 const med_entity_type entitype,
00054 const med_geometry_type geotype,
00055 med_int * const correspondence);
00056
00057 MEDC_EXPORT med_int
00058 MEDnEquivalence(const med_idt fid,
00059 const char * const meshname);
00060
00061 MEDC_EXPORT med_err
00062 MEDequivalenceInfo(const med_idt fid,
00063 const char * const meshname,
00064 const int equivit,
00065 char * const equivname,
00066 char * const equivdescription,
00067 med_int * const nstep,
00068 med_int * const nocstpncorrespondence);
00069
00070 MEDC_EXPORT med_err
00071 MEDequivalenceComputingStepInfo(const med_idt fid,
00072 const char * const meshname,
00073 const char * const equivname,
00074 const int csit,
00075 med_int * const numdt,
00076 med_int * const numit,
00077 med_int * const ncorrespondence );
00078
00079
00080 MEDC_EXPORT med_err
00081 MEDequivalenceCorrespondenceSizeInfo(const med_idt fid,
00082 const char * const meshname,
00083 const char * const equivname,
00084 const med_int numdt,
00085 const med_int numit,
00086 const int corit,
00087 med_entity_type * const entitype,
00088 med_geometry_type* const geotype,
00089 med_int * const nentity );
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100 MEDC_EXPORT med_err
00101 MEDequivalenceCorrespondenceSize(const med_idt fid,
00102 const char * const meshname,
00103 const char * const equivname,
00104 const med_int numdt,
00105 const med_int numit,
00106 const med_entity_type entitype,
00107 const med_geometry_type geotype,
00108 med_int * const nentity );
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121 #ifdef __cplusplus
00122 }
00123 #endif
00124
00125 #endif
00126