GiD - The personal pre and post processor

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

int GiD_fWriteGaussPoint3D(GiD_FILE fd, double x, double y, double z);
int GiD_fWriteGaussPoint2D(GiD_FILE fd, double x, double y);

Description: Write internal gauss point local coordinates (only required if InternalCoord=0)
Parameters:
GiD_FILE fd the file descriptor
double x,double y,double z
Cartesian gauss points local coordinates
Example:
C/C++
double x=3.5;
double y=-7;
GiD_fWriteGaussPoint2D(fd,double x,double y);
FORTRAN
REAL*8 x, y
rx=3.5
ry=-7
CALL GID_FWRITEGAUSSPOINT2D(fd,x,y)

  • No labels