GiD_FILE GiD_fOpenPostMeshFile(const char * FileName,GiD_PostMode Mode );
Description: Open a new post mesh file, and return its file handler.
Parameters:
char* FileName
name of the mesh file (*.post.msh)
GiD_PostMode Mode
GiD_PostAscii=0 for ascii output
GiD_PostAsciiZipped=1 for compressed ascii output
GiD_PostBinary=2 for compressed binary output
GiD_PostHDF5=3 for HDF5 output (the library must be compiled with HDF5 support)
GiD_FILE and unsigned int that identify the channel.
Example:
C/C++
Code Block |
---|
fd=GiD_fOpenPostMeshFile( "testpost.post.msh", GiD_PostAscii); |
FORTRAN
Code Block |
---|
fd=GID_FOPENPOSTMESHFILE('testpost.post.msh',0) |