Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Note: these functions are deprecated because can't provide the result unit, to specify unit fBeginResultHeader must be used.


int GiD_fBeginResult(GiD_FILE fd, const char * Result,
const char * Analysis,
double step,
GiD_ResultType Type, GiD_ResultLocation Where,
const char * GaussPointsName,
const char * RangeTable,
int compc, const char * compv[]);
int GiD_fBeginScalarResult(GiD_FILE fd,char* Result,char* Analysis,double step,
GiD_ResultLocation Where,
char* GaussPointsName,
char* RangeTable,char* Comp);
int GiD_fBeginVectorResult(GiD_FILE fd,char* Result,char* Analysis,double step,
GiD_ResultLocation Where,
char* GaussPointsName,char* RangeTable,
char* Comp1,char* Comp2,char* Comp3,char* Comp4);
int GiD_fBegin2DMatResult(GiD_FILE fd,char* Result,char* Analysis,double step,
GiD_ResultLocation Where,
char* GaussPointsName,char* RangeTable,
char* Comp1,char*  Comp2,char* Comp3);
int GiD_fBegin3DMatResult(GiD_FILE fd,char* Result,char* Analysis,double step,
GiD_ResultLocation Where,
char* GaussPointsName,char* RangeTable,
char* Comp1,char* Comp2,char* Comp3,
char* Comp4,char* Comp5,char* Comp6);
int GiD_fBeginPDMMatResult(GiD_FILE fd,char* Result,char* Analysis,double step,
GiD_ResultLocation Where,
char* GaussPointsName,char* RangeTable,
char* Comp1,char* Comp2,char* Comp3,
char* Comp4);
int GiD_fBeginMainMatResult(GiD_FILE fd,char* Result,char* Analysis,double step,
GiD_ResultLocation Where,
char* GaussPointsName,char* RangeTable,
char* Comp1,char* Comp2,char* Comp3,
char* Comp4,char* Comp5,char* Comp6,
char* Comp7,char* Comp8,char* Comp9,
char* Comp10,char* Comp11,char* Comp12);
int GiD_fBeginLAResult(GiD_FILE fd,char* Result,char* Analysis,double step,
GiD_ResultLocation Where, char* GaussPointsName,char* RangeTable,
char* Comp1,char* Comp2,char* Comp3);
int GiD_fBeginComplexScalarResult(GiD_FILE fd,char* Result,char* Analysis,double step,
GiD_ResultLocation Where,
char* GaussPointsName,char* RangeTable,
GP_CONST char * Re, GP_CONST char * Im);
int GiD_fBeginComplexVectorResult(GiD_FILE fd, GP_CONST char * Result, GP_CONST char * Analysis, double step,
GiD_ResultLocation Where,
GP_CONST char * GaussPointsName, GP_CONST char * RangeTable,
GP_CONST char * Rex, GP_CONST char * Imx, GP_CONST char * Rey,
GP_CONST char * Imy, GP_CONST char * Rez, GP_CONST char * Imz);

Description: Begin Result Block. This function open a result block.
These functions are deprecated because can't provide the result unit, to specify unit fBeginResultHeader must be used.


Parameters:
See GiD_fBeginResultHeader
char* RangeTable
A valid Range table name or NULL
int compc
The number of component names or 0
char* compv[]
array of 'compc' strings to be used as component names


Example:
C/C++

Code Block
GiD_fBeginResult(fd,"Result","Static",1.0d0,GiD_Scalar,GiD_OnNodes,NULL,NULL,0,NULL);

FORTRAN

Code Block
CHARACTER*4 NULL

...


NULL = CHAR(0)//CHAR(0)//CHAR(0)//CHAR(0)

...


CALL GID_FBEGINSCALARRESULT(fd,'Result','Analy.',1.0d0,0,NULL,NULL,NULL)