[358] | 1 | /*\file SlopeExtrude.c
|
---|
| 2 | *\brief: extrude slope vertically, from bed upwards.
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 | #include "./SlopeExtrude.h"
|
---|
| 6 |
|
---|
| 7 | void mexFunction( int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]){
|
---|
| 8 |
|
---|
| 9 | /*diverse: */
|
---|
| 10 | int noerr=1;
|
---|
| 11 |
|
---|
| 12 | /*input datasets: */
|
---|
| 13 | DataSet* elements=NULL;
|
---|
| 14 | DataSet* nodes=NULL;
|
---|
| 15 | DataSet* loads=NULL;
|
---|
| 16 | DataSet* materials=NULL;
|
---|
| 17 | Vec slope=NULL;
|
---|
| 18 |
|
---|
| 19 | /*Boot module: */
|
---|
| 20 | MODULEBOOT();
|
---|
| 21 |
|
---|
| 22 | /*checks on arguments on the matlab side: */
|
---|
| 23 | CheckNumMatlabArguments(nlhs,NLHS,nrhs,NRHS,__FUNCT__,&SlopeExtrudeUsage);
|
---|
| 24 |
|
---|
| 25 | /*Input datasets: */
|
---|
| 26 | FetchData((void**)&elements,NULL,NULL,ELEMENTS,"DataSet",NULL);
|
---|
| 27 | FetchData((void**)&nodes,NULL,NULL,NODES,"DataSet",NULL);
|
---|
| 28 | FetchData((void**)&loads,NULL,NULL,LOADS,"DataSet",NULL);
|
---|
| 29 | FetchData((void**)&materials,NULL,NULL,MATERIALS,"DataSet",NULL);
|
---|
| 30 | FetchData((void**)&slope,NULL,NULL,SLOPE,"Vector",NULL);
|
---|
| 31 |
|
---|
| 32 | /*!Call core code: */
|
---|
| 33 | SlopeExtrudex(slope,elements,nodes,loads,materials);
|
---|
| 34 |
|
---|
| 35 | /*write output : */
|
---|
| 36 | WriteData(SLOPEOUT,slope,0,0,"Vector",NULL);
|
---|
| 37 | /*Free ressources: */
|
---|
| 38 | delete elements;
|
---|
| 39 | delete nodes;
|
---|
| 40 | delete loads;
|
---|
| 41 | delete materials;
|
---|
| 42 | VecFree(&slope);
|
---|
| 43 |
|
---|
| 44 | /*end module: */
|
---|
| 45 | MODULEEND();
|
---|
| 46 |
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | void SlopeExtrudeUsage(void)
|
---|
| 50 | {
|
---|
| 51 | _printf_("\n");
|
---|
| 52 | _printf_(" usage: [slope] = %s(elements, nodes,loads, materials, slope);\n",__FUNCT__);
|
---|
| 53 | _printf_("\n");
|
---|
| 54 | }
|
---|