MEDmeshElementConnectivityWr.c
Aller à la documentation de ce fichier.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include <med.h>
00020 #include <med_config.h>
00021 #include <med_outils.h>
00022 #include <string.h>
00023 #include <stdlib.h>
00024
00042 med_err MEDmeshElementConnectivityWr(const med_idt fid,
00043 const char* const meshname,
00044 const med_int numdt,
00045 const med_int numit,
00046 const med_float dt,
00047 const med_entity_type entitype,
00048 const med_geometry_type geotype,
00049 const med_connectivity_mode cmode,
00050 const med_switch_mode switchmode,
00051 const med_int nentity,
00052 const med_int* const connectivity)
00053 {
00054
00055 return _MEDmeshAdvancedWr(fid,
00056 meshname,
00057 MED_CONNECTIVITY,
00058 MED_NO_NAME,
00059 MED_INTERNAL_UNDEF,
00060 numdt,
00061 numit,
00062 dt,
00063 entitype,
00064 geotype,
00065 cmode,
00066 MED_UNDEF_PFLMODE,
00067 MED_NO_PROFILE,
00068 switchmode,
00069 MED_ALL_CONSTITUENT,
00070 NULL,
00071 nentity,
00072 connectivity);
00073
00074 }