medinterp.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_MEDINTERP_H
00019 #define MED_MEDINTERP_H
00020
00021 #include "medC_win_dll.h"
00022
00023 #ifdef __cplusplus
00024 extern "C" {
00025 #endif
00026 MEDC_EXPORT med_err
00027 MEDinterpCr(const med_idt fid,
00028 const char* const interpname,
00029 const med_geometry_type geotype,
00030 const med_bool cellnodes,
00031 const med_int nvariable,
00032 const med_int maxdegree,
00033 const med_int nmaxcoef
00034 );
00035
00036 MEDC_EXPORT med_err
00037 MEDinterpBaseFunctionWr( const med_idt fid,
00038 const char* const interpname,
00039 const med_int basisfuncit,
00040 const med_int ncoef,
00041 const med_int* const power,
00042 const med_float* const coefficient);
00043
00044 MEDC_EXPORT med_int
00045 MEDnInterp(const med_idt fid);
00046
00047 MEDC_EXPORT med_err
00048 MEDinterpInfo(const med_idt fid,
00049 const int interpit,
00050 char* const interpname,
00051 med_geometry_type* const geotype,
00052 med_bool* const cellnode,
00053 med_int* const nbasisfunc,
00054 med_int* const nvariable,
00055 med_int* const maxdegree,
00056 med_int* const nmaxcoef
00057 );
00058
00059 MEDC_EXPORT med_err
00060 MEDinterpInfoByName(const med_idt fid,
00061 const char* const interpname,
00062 med_geometry_type* const geotype,
00063 med_bool* const cellnode,
00064 med_int* const nbasisfunc,
00065 med_int* const nvariable,
00066 med_int* const maxdegree,
00067 med_int* const nmaxcoef
00068 );
00069
00070 MEDC_EXPORT med_err
00071 MEDinterpBaseFunctionRd( const med_idt fid,
00072 const char* const interpname,
00073 const int basisfuncit,
00074 med_int* const ncoef,
00075 med_int* const power,
00076 med_float* const coefficient);
00077
00078 MEDC_EXPORT med_int
00079 MEDinterpBaseFunctionCoefSize( const med_idt fid,
00080 const char* const interpname,
00081 const med_int basisfuncit);
00082
00083
00084
00085 #ifdef __cplusplus
00086 }
00087 #endif
00088
00089 #endif
00090