1 | /*
|
---|
2 | * \file Elements.c
|
---|
3 | * \brief: implementation of the Elements class, derived from DataSet class
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*Headers: {{{1*/
|
---|
7 | #ifdef HAVE_CONFIG_H
|
---|
8 | #include <config.h>
|
---|
9 | #else
|
---|
10 | #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
|
---|
11 | #endif
|
---|
12 |
|
---|
13 | #include <vector>
|
---|
14 | #include <functional>
|
---|
15 | #include <algorithm>
|
---|
16 | #include <iostream>
|
---|
17 |
|
---|
18 | #include "./DataSet.h"
|
---|
19 | #include "../shared/shared.h"
|
---|
20 | #include "../include/include.h"
|
---|
21 | #include "../EnumDefinitions/EnumDefinitions.h"
|
---|
22 |
|
---|
23 | using namespace std;
|
---|
24 | /*}}}*/
|
---|
25 |
|
---|
26 | /*Object constructors and destructor*/
|
---|
27 | /*FUNCTION Elements::Elements(){{{1*/
|
---|
28 | Elements::Elements(){
|
---|
29 | enum_type=MeshElementsEnum;
|
---|
30 | return;
|
---|
31 | }
|
---|
32 | /*}}}*/
|
---|
33 | /*FUNCTION Elements::~Elements(){{{1*/
|
---|
34 | Elements::~Elements(){
|
---|
35 | return;
|
---|
36 | }
|
---|
37 | /*}}}*/
|
---|
38 |
|
---|
39 | /*Object management*/
|
---|
40 | /*FUNCTION Elements::Configure{{{1*/
|
---|
41 | void Elements::Configure(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters){
|
---|
42 |
|
---|
43 | vector<Object*>::iterator object;
|
---|
44 | Element* element=NULL;
|
---|
45 |
|
---|
46 | for ( object=objects.begin() ; object < objects.end(); object++ ){
|
---|
47 |
|
---|
48 | element=(Element*)(*object);
|
---|
49 | element->Configure(elements,loads,nodes,materials,parameters);
|
---|
50 |
|
---|
51 | }
|
---|
52 |
|
---|
53 | }
|
---|
54 | /*}}}*/
|
---|
55 | /*FUNCTION Elements::ProcessResultsUnits{{{1*/
|
---|
56 | void Elements::ProcessResultsUnits(void){
|
---|
57 |
|
---|
58 | //Process results to be output in the correct units
|
---|
59 | for(int i=0;i<this->Size();i++){
|
---|
60 | Element* element=(Element*)this->GetObjectByOffset(i);
|
---|
61 | element->ProcessResultsUnits();
|
---|
62 | }
|
---|
63 | }
|
---|
64 | /*}}}*/
|
---|
65 | /*FUNCTION Elements::DeleteResults{{{1*/
|
---|
66 | void Elements::DeleteResults(void){
|
---|
67 |
|
---|
68 | for (int i=0;i<this->Size();i++){
|
---|
69 | Element* element=(Element*)this->GetObjectByOffset(i);
|
---|
70 | element->DeleteResults();
|
---|
71 | }
|
---|
72 | }
|
---|
73 | /*}}}*/
|
---|
74 | /*FUNCTION Elements::ResultsToPatch{{{1*/
|
---|
75 | Patch* Elements::ResultsToPatch(void){
|
---|
76 |
|
---|
77 | /*output: */
|
---|
78 | Patch* patch=NULL;
|
---|
79 |
|
---|
80 | /*intermediary: */
|
---|
81 | int i;
|
---|
82 | int count;
|
---|
83 | int numrows;
|
---|
84 | int numvertices;
|
---|
85 | int numnodes;
|
---|
86 | int max_numvertices;
|
---|
87 | int max_numnodes;
|
---|
88 | int element_numvertices;
|
---|
89 | int element_numrows;
|
---|
90 | int element_numnodes;
|
---|
91 |
|
---|
92 | /*We are going to extract from the results within the elements, the desired results , and create a table
|
---|
93 | * of patch information, that will hold, for each element that computed the result that
|
---|
94 | * we desire, the enum_type of the result, the step and time, the id of the element, the interpolation type, the vertices ids, and the values
|
---|
95 | * at the nodes (could be different from the vertices). This will be used for visualization purposes.
|
---|
96 | * For example, we could build the following patch table, for velocities:
|
---|
97 | *
|
---|
98 | 1. on a Beam element, Vx, at step 1, time .5, element id 1, interpolation type P0 (constant), vertices ids 1 and 2, one constant value 4.5
|
---|
99 | VxEnum 1 .5 1 P0 1 2 4.5 NaN NaN
|
---|
100 | 2. on a Tria element, Vz, at step 2, time .8, element id 2, interpolation type P1 (linear), vertices ids 1 3 and 4, with values at 3 nodes 4.5, 3.2, 2.5
|
---|
101 | VzEnum 2 .8 2 P1 1 3 4 4.5 3.2 2.5
|
---|
102 | * ... etc ...
|
---|
103 | *
|
---|
104 | * So what do we need to build the table: the maximum number of vertices included in the table,
|
---|
105 | * and the maximum number of nodal values, as well as the number of rows. Once we have that,
|
---|
106 | * we ask the elements to fill their own row in the table, by looping on the elememnts.
|
---|
107 | *
|
---|
108 | * We will use the Patch object, which will store all of the information needed, and will be able
|
---|
109 | * to output itself to disk on its own. See object/Patch.h for format of this object.*/
|
---|
110 |
|
---|
111 | /*First, determine maximum number of vertices, nodes, and number of results: */
|
---|
112 | numrows=0;
|
---|
113 | numvertices=0;
|
---|
114 | numnodes=0;
|
---|
115 |
|
---|
116 | for(i=0;i<this->Size();i++){
|
---|
117 |
|
---|
118 | Element* element=(Element*)this->GetObjectByOffset(i);
|
---|
119 | element->PatchSize(&element_numrows,&element_numvertices,&element_numnodes);
|
---|
120 |
|
---|
121 | numrows+=element_numrows;
|
---|
122 | if(element_numvertices>numvertices)numvertices=element_numvertices;
|
---|
123 | if(element_numnodes>numnodes)numnodes=element_numnodes;
|
---|
124 | }
|
---|
125 |
|
---|
126 | #ifdef _PARALLEL_
|
---|
127 | /*Synchronize across cluster, so as to not end up with different sizes for each patch on each cpu: */
|
---|
128 | MPI_Reduce (&numvertices,&max_numvertices,1,MPI_INT,MPI_MAX,0,MPI_COMM_WORLD );
|
---|
129 | MPI_Bcast(&max_numvertices,1,MPI_INT,0,MPI_COMM_WORLD);
|
---|
130 | numvertices=max_numvertices;
|
---|
131 |
|
---|
132 | MPI_Reduce (&numnodes,&max_numnodes,1,MPI_INT,MPI_MAX,0,MPI_COMM_WORLD );
|
---|
133 | MPI_Bcast(&max_numnodes,1,MPI_INT,0,MPI_COMM_WORLD);
|
---|
134 | numnodes=max_numnodes;
|
---|
135 | #endif
|
---|
136 |
|
---|
137 | /*Ok, initialize Patch object: */
|
---|
138 | patch=new Patch(numrows,numvertices,numnodes);
|
---|
139 |
|
---|
140 | /*Now, go through elements, and fill the Patch object: */
|
---|
141 | count=0;
|
---|
142 | for(i=0;i<this->Size();i++){
|
---|
143 | Element* element=(Element*)this->GetObjectByOffset(i);
|
---|
144 | element->PatchFill(&count,patch);
|
---|
145 | }
|
---|
146 |
|
---|
147 | return patch;
|
---|
148 | }
|
---|
149 | /*}}}*/
|
---|
150 | /*FUNCTION Elements::SetCurrentConfiguration{{{1*/
|
---|
151 | void Elements::SetCurrentConfiguration(Elements* elements,Loads* loads, Nodes* nodes, Vertices* vertices, Materials* materials,Parameters* parameters){
|
---|
152 |
|
---|
153 | vector<Object*>::iterator object;
|
---|
154 | Element* element=NULL;
|
---|
155 |
|
---|
156 | for ( object=objects.begin() ; object < objects.end(); object++ ){
|
---|
157 |
|
---|
158 | element=(Element*)(*object);
|
---|
159 | element->SetCurrentConfiguration(elements,loads,nodes,materials,parameters);
|
---|
160 |
|
---|
161 | }
|
---|
162 |
|
---|
163 | }
|
---|
164 | /*}}}*/
|
---|
165 | /*FUNCTION Elements::ToResults{{{1*/
|
---|
166 | void Elements::ToResults(Results* results,Parameters* parameters){
|
---|
167 |
|
---|
168 | extern int my_rank;
|
---|
169 | extern int num_procs;
|
---|
170 |
|
---|
171 | Patch *patch = NULL;
|
---|
172 | int *resultsenums = NULL;
|
---|
173 | int *resultssizes = NULL;
|
---|
174 | int *resultssteps = NULL;
|
---|
175 | double *resultstimes = NULL;
|
---|
176 | double *vector_serial= NULL;
|
---|
177 | Vector* vector = NULL;
|
---|
178 | bool io_gather;
|
---|
179 | bool results_as_patches;
|
---|
180 | int numberofvertices,numberofelements;
|
---|
181 | int numberofresults,vectorsize;
|
---|
182 | int rank;
|
---|
183 | int minrank;
|
---|
184 |
|
---|
185 | /*Recover parameters: */
|
---|
186 | parameters->FindParam(&io_gather,SettingsIoGatherEnum);
|
---|
187 | parameters->FindParam(&results_as_patches,SettingsResultsAsPatchesEnum);
|
---|
188 | parameters->FindParam(&numberofvertices,MeshNumberofverticesEnum);
|
---|
189 | parameters->FindParam(&numberofelements,MeshNumberofelementsEnum);
|
---|
190 |
|
---|
191 | if(!results_as_patches){
|
---|
192 | /*No patch here, we prepare vectors*/
|
---|
193 |
|
---|
194 | /*Get rank of first cpu that has results*/
|
---|
195 | if(this->Size()) rank=my_rank;
|
---|
196 | else rank=num_procs;
|
---|
197 | MPI_Allreduce (&rank,&minrank,1,MPI_INT,MPI_MIN,MPI_COMM_WORLD);
|
---|
198 |
|
---|
199 | /*see what the first element of this partition has in stock (this is common to all partitions)*/
|
---|
200 | if(my_rank==minrank){
|
---|
201 | if(this->Size()==0) _error_("Cannot write results because there is no element??");
|
---|
202 | Element* element=(Element*)this->GetObjectByOffset(0);
|
---|
203 | element->ListResultsInfo(&resultsenums,&resultssizes,&resultstimes,&resultssteps,&numberofresults);
|
---|
204 | }
|
---|
205 | MPI_Bcast(&numberofresults,1,MPI_DOUBLE,minrank,MPI_COMM_WORLD);
|
---|
206 |
|
---|
207 | /*Get out if there is no results. Otherwise broadcast info*/
|
---|
208 | if(!numberofresults) return;
|
---|
209 | if(my_rank!=minrank){
|
---|
210 | resultsenums=(int*)xmalloc(numberofresults*sizeof(int));
|
---|
211 | resultssizes=(int*)xmalloc(numberofresults*sizeof(int));
|
---|
212 | resultstimes=(double*)xmalloc(numberofresults*sizeof(double));
|
---|
213 | resultssteps=(int*)xmalloc(numberofresults*sizeof(int));
|
---|
214 | }
|
---|
215 | MPI_Bcast(resultsenums,numberofresults,MPI_INT,minrank,MPI_COMM_WORLD);
|
---|
216 | MPI_Bcast(resultssizes,numberofresults,MPI_INT,minrank,MPI_COMM_WORLD);
|
---|
217 | MPI_Bcast(resultstimes,numberofresults,MPI_DOUBLE,minrank,MPI_COMM_WORLD);
|
---|
218 | MPI_Bcast(resultssteps,numberofresults,MPI_INT,minrank,MPI_COMM_WORLD);
|
---|
219 |
|
---|
220 | /*Loop over all results and get nodal vector*/
|
---|
221 | for(int i=0;i<numberofresults;i++){
|
---|
222 |
|
---|
223 | /*Get vector for result number i*/
|
---|
224 | if(resultssizes[i]==P1Enum) vectorsize=numberofvertices;
|
---|
225 | else if(resultssizes[i]==P0Enum) vectorsize=numberofelements;
|
---|
226 | else _error_("Unkown result size: %s",EnumToStringx(resultssizes[i]));
|
---|
227 | vector=new Vector(vectorsize);
|
---|
228 |
|
---|
229 | for(int j=0;j<this->Size();j++){
|
---|
230 | Element* element=(Element*)this->GetObjectByOffset(j);
|
---|
231 | element->GetVectorFromResults(vector,i,resultssizes[i]);
|
---|
232 | }
|
---|
233 | vector->Assemble();
|
---|
234 |
|
---|
235 | /*Serialize and add to results*/
|
---|
236 | vector_serial=vector->ToMPISerial();
|
---|
237 | if(my_rank==0){
|
---|
238 | /*No need to add this vector for all cpus*/
|
---|
239 | results->AddObject(new DoubleVecExternalResult(results->Size()+1,resultsenums[i],vector_serial,vectorsize,resultssteps[i],resultstimes[i]));
|
---|
240 | }
|
---|
241 |
|
---|
242 | /*clean up*/
|
---|
243 | xdelete(&vector);
|
---|
244 | xfree((void**)&vector_serial);
|
---|
245 | }
|
---|
246 | }
|
---|
247 | else{
|
---|
248 | /*create patch object out of all results in this dataset: */
|
---|
249 | patch=this->ResultsToPatch();
|
---|
250 |
|
---|
251 | /*Gather onto master cpu 0, if needed: */
|
---|
252 | #ifdef _PARALLEL_
|
---|
253 | if(io_gather)patch->Gather();
|
---|
254 | #endif
|
---|
255 |
|
---|
256 | /*create result object and add to results dataset:*/
|
---|
257 | if (patch->maxvertices && patch->maxnodes){
|
---|
258 | results->AddObject(new IntExternalResult(results->Size()+1,PatchVerticesEnum,patch->maxvertices,1,0));
|
---|
259 | results->AddObject(new IntExternalResult(results->Size()+1,PatchNodesEnum, patch->maxnodes,1,0));
|
---|
260 | results->AddObject(new DoubleMatExternalResult(results->Size()+1,PatchEnum, patch->values,patch->numrows,patch->numcols,1,0));
|
---|
261 | }
|
---|
262 | }
|
---|
263 |
|
---|
264 | /*Free ressources:*/
|
---|
265 | xfree((void**)&resultsenums);
|
---|
266 | xfree((void**)&resultssizes);
|
---|
267 | xfree((void**)&resultstimes);
|
---|
268 | xfree((void**)&resultssteps);
|
---|
269 | delete patch;
|
---|
270 | }
|
---|
271 | /*}}}*/
|
---|
272 | /*FUNCTION Elements::NumberOfElements{{{1*/
|
---|
273 | int Elements::NumberOfElements(void){
|
---|
274 |
|
---|
275 | int local_nelem=0;
|
---|
276 | int numberofelements;
|
---|
277 |
|
---|
278 | #ifdef _PARALLEL_
|
---|
279 | local_nelem=this->Size();
|
---|
280 | MPI_Allreduce ( (void*)&local_nelem,(void*)&numberofelements,1,MPI_INT,MPI_SUM,MPI_COMM_WORLD);
|
---|
281 | #else
|
---|
282 | numberofelements=this->Size();
|
---|
283 | #endif
|
---|
284 |
|
---|
285 | return numberofelements;
|
---|
286 | }
|
---|
287 | /*}}}*/
|
---|
288 | /*FUNCTION Elements::InputCopy{{{1*/
|
---|
289 | void Elements::InputDuplicate(int input_enum,int output_enum){
|
---|
290 |
|
---|
291 | for(int i=0;i<this->Size();i++){
|
---|
292 | Element* element=(Element*)this->GetObjectByOffset(i);
|
---|
293 | element->InputDuplicate(input_enum,output_enum);
|
---|
294 | }
|
---|
295 | }
|
---|
296 | /*}}}*/
|
---|