|
Last change
on this file since 3913 was 3913, checked in by Eric.Larour, 15 years ago |
|
Moved all objects in Bamg to objects directory.
Moved all solutions from parallel to solutoins.
Moved all modules from top c/ directory to c/modules directory
cleaned up all object dependencies in Bamg/objects (fiouh!)
That will do for the week-end:)
|
|
File size:
807 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | ComputeBasalStress.h
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | #ifndef _COMPUTEBASALSTRESS_H
|
|---|
| 6 | #define _COMPUTEBASALSTRESS_H
|
|---|
| 7 |
|
|---|
| 8 | /* local prototypes: */
|
|---|
| 9 | void ComputeBasalStressUsage(void);
|
|---|
| 10 |
|
|---|
| 11 | #include "../../c/modules/modules.h"
|
|---|
| 12 | #include "../../c/DataSet/DataSet.h"
|
|---|
| 13 | #include "../../c/shared/shared.h"
|
|---|
| 14 |
|
|---|
| 15 | #undef __FUNCT__
|
|---|
| 16 | #define __FUNCT__ "ComputeBasalStress"
|
|---|
| 17 |
|
|---|
| 18 | /* serial input macros: */
|
|---|
| 19 | #define ELEMENTS (mxArray*)prhs[0]
|
|---|
| 20 | #define NODES (mxArray*)prhs[1]
|
|---|
| 21 | #define VERTICES (mxArray*)prhs[2]
|
|---|
| 22 | #define LOADS (mxArray*)prhs[3]
|
|---|
| 23 | #define MATERIALS (mxArray*)prhs[4]
|
|---|
| 24 | #define PARAMETERS (mxArray*)prhs[5]
|
|---|
| 25 | #define ANALYSIS (mxArray*)prhs[6]
|
|---|
| 26 | #define SUBANALYSIS (mxArray*)prhs[7]
|
|---|
| 27 |
|
|---|
| 28 | /* serial output macros: */
|
|---|
| 29 | #define SIGMA (mxArray**)&plhs[0]
|
|---|
| 30 |
|
|---|
| 31 | /* serial arg counts: */
|
|---|
| 32 | #undef NLHS
|
|---|
| 33 | #define NLHS 1
|
|---|
| 34 | #undef NRHS
|
|---|
| 35 | #define NRHS 8
|
|---|
| 36 |
|
|---|
| 37 | #endif /* _COMPUTEPRESSURE_H */
|
|---|
| 38 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.