1 | /*\file SystemMatrices.c
|
---|
2 | *\brief: build system matrices (stiffness matrix, loads vector)
|
---|
3 | */
|
---|
4 |
|
---|
5 | #include "./SystemMatrices.h"
|
---|
6 |
|
---|
7 | void mexFunction( int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]){
|
---|
8 |
|
---|
9 | /*input datasets: */
|
---|
10 | Elements *elements = NULL;
|
---|
11 | Nodes *nodes = NULL;
|
---|
12 | Vertices *vertices = NULL;
|
---|
13 | Loads *loads = NULL;
|
---|
14 | Materials *materials = NULL;
|
---|
15 | Parameters *parameters = NULL;
|
---|
16 | bool kflag,pflag,penalty_kflag,penalty_pflag;
|
---|
17 |
|
---|
18 | /* output datasets: */
|
---|
19 | Matrix* Kff = NULL;
|
---|
20 | Matrix* Kfs = NULL;
|
---|
21 | Vector* pf = NULL;
|
---|
22 | Vector* df = NULL;
|
---|
23 |
|
---|
24 | double kmax;
|
---|
25 |
|
---|
26 | /*Boot module: */
|
---|
27 | MODULEBOOT();
|
---|
28 |
|
---|
29 | /*checks on arguments on the matlab side: */
|
---|
30 | if((nlhs!=NLHS) || (nrhs!=6 && nrhs!=10)){
|
---|
31 | SystemMatricesUsage();
|
---|
32 | _error_(" usage. See above");
|
---|
33 | }
|
---|
34 |
|
---|
35 | /*Input datasets: */
|
---|
36 | FetchData((DataSet**)&elements,ELEMENTS);
|
---|
37 | FetchData((DataSet**)&nodes,NODES);
|
---|
38 | FetchData((DataSet**)&vertices,VERTICES);
|
---|
39 | FetchData((DataSet**)&loads,LOADS);
|
---|
40 | FetchData((DataSet**)&materials,MATERIALS);
|
---|
41 | FetchData(¶meters,PARAMETERS);
|
---|
42 |
|
---|
43 | /*configure: */
|
---|
44 | elements-> Configure(elements,loads, nodes,vertices, materials,parameters);
|
---|
45 | nodes-> Configure(elements,loads, nodes,vertices, materials,parameters);
|
---|
46 | loads-> Configure(elements, loads, nodes,vertices, materials,parameters);
|
---|
47 | materials-> Configure(elements, loads, nodes,vertices, materials,parameters);
|
---|
48 |
|
---|
49 | /*!Generate internal degree of freedom numbers: */
|
---|
50 | if(nrhs==10){
|
---|
51 | FetchData(&kflag,KFLAG);
|
---|
52 | FetchData(&pflag,PFLAG);
|
---|
53 | FetchData(&penalty_kflag,PENALTYKFLAG);
|
---|
54 | FetchData(&penalty_pflag,PENALTYPFLAG);
|
---|
55 | SystemMatricesx(&Kff,&Kfs,&pf,&df,&kmax,elements,nodes,vertices,loads,materials,parameters,kflag,pflag,penalty_kflag,penalty_pflag);
|
---|
56 | }
|
---|
57 | else
|
---|
58 | SystemMatricesx(&Kff,&Kfs,&pf,&df,&kmax,elements,nodes,vertices,loads,materials,parameters);
|
---|
59 |
|
---|
60 | /*write output datasets: */
|
---|
61 | WriteData(KFF,Kff);
|
---|
62 | WriteData(KFS,Kfs);
|
---|
63 | WriteData(PF,pf);
|
---|
64 | WriteData(DF,df);
|
---|
65 | WriteData(KMAX,kmax);
|
---|
66 |
|
---|
67 | /*Free ressources: */
|
---|
68 | delete elements;
|
---|
69 | delete nodes;
|
---|
70 | delete vertices;
|
---|
71 | delete loads;
|
---|
72 | delete materials;
|
---|
73 | delete parameters;
|
---|
74 | xdelete(&Kff);
|
---|
75 | xdelete(&Kfs);
|
---|
76 | xdelete(&pf);
|
---|
77 | xdelete(&df);
|
---|
78 |
|
---|
79 | /*end module: */
|
---|
80 | MODULEEND();
|
---|
81 | }
|
---|
82 |
|
---|
83 | void SystemMatricesUsage(void)
|
---|
84 | {
|
---|
85 | _printf_(true,"\n");
|
---|
86 | _printf_(true," usage: [Kff,Kfs,pf,df,kmax] = %s(elements,nodes,vertices,loads,materials,parameters);\n",__FUNCT__);
|
---|
87 | _printf_(true," usage: [Kff,Kfs,pf,df,kmax] = %s(elements,nodes,vertices,loads,materials,parameters,kflag,pflag,penalty_kflag,penalty_pflag);\n",__FUNCT__);
|
---|
88 | _printf_(true,"\n");
|
---|
89 | }
|
---|