1 /* femfileout.h -> egexport.h */
2 /* Routines for exporting data to other FEM or visualization software. */
3 
4 int SaveAbaqusInput(struct FemType *data,char *prefix,int info);
5 int SaveFidapOutput(struct FemType *data,char *prefix,int info,
6 		    int vctrs,Real *vect1, ...);
7 int SaveMeshGmsh(struct FemType *data,struct BoundaryType *bound,
8 		 int nobound,char *prefix,int decimals,int info);
9 int SaveMeshVtu(struct FemType *data,struct BoundaryType *bound,
10 		 int nobound,char *prefix,int dummyzero,int info);
11