source: issm/trunk/src/mex/OutputResults/OutputResults.h@ 4182

Last change on this file since 4182 was 4182, checked in by Eric.Larour, 15 years ago

Added OutputResults module.
OutputResultsx now outputs time and step for results.
serial solutions updated to get results from OutputResults module.

File size: 730 bytes
RevLine 
[4182]1/*
2 OutputResults.h
3*/
4
5#ifndef _OUTPUTRESULTS_H
6#define _OUTPUTRESULTS_H
7
8/* local prototypes: */
9void OutputResultsUsage(void);
10
11#include "../../c/modules/modules.h"
12#include "../../c/DataSet/DataSet.h"
13#include "../../c/shared/shared.h"
14#include "../../c/EnumDefinitions/EnumDefinitions.h"
15
16#undef __FUNCT__
17#define __FUNCT__ "OutputResults"
18
19/* serial input macros: */
20#define ELEMENTS (mxArray*)prhs[0]
21#define NODES (mxArray*)prhs[1]
22#define VERTICES (mxArray*)prhs[2]
23#define LOADS (mxArray*)prhs[3]
24#define MATERIALS (mxArray*)prhs[4]
25#define PARAMETERS (mxArray*)prhs[5]
26#define RESULTS (mxArray*)prhs[6]
27
28/* serial arg counts: */
29#undef NLHS
30#define NLHS 1
31#undef NRHS
32#define NRHS 7
33
34#endif /* _OUTPUTRESULTS_H */
Note: See TracBrowser for help on using the repository browser.