-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPoincareMapData.cxx
278 lines (236 loc) · 6.95 KB
/
PoincareMapData.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
____ _ __ ____ __ ____
/ __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____
_\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_-</ __/ _/ // _ \/ __/
/___/\__/_/_.__/\__/_/ \___\_\_,_/\__/___/\__/ /___/_//_/\__(_)
Copyright 2012 SciberQuest Inc.
*/
#include "PoincareMapData.h"
#include "postream.h"
#include "WorkQueue.h"
#include "FieldLine.h"
#include "TerminationCondition.h"
#include "vtkSQCellGenerator.h"
#include "vtkDataSet.h"
#include "vtkPoints.h"
#include "vtkPolyData.h"
#include "vtkUnstructuredGrid.h"
#include "vtkCellData.h"
#include "vtkFloatArray.h"
#include "vtkCellArray.h"
#include "vtkIdTypeArray.h"
//-----------------------------------------------------------------------------
PoincareMapData::~PoincareMapData()
{
this->ClearSource();
this->ClearOut();
}
//-----------------------------------------------------------------------------
void PoincareMapData::ClearSource()
{
if (this->SourcePts){ this->SourcePts->Delete(); }
if (this->SourceCells){ this->SourceCells->Delete(); }
this->SourcePts=0;
this->SourceCells=0;
}
//-----------------------------------------------------------------------------
void PoincareMapData::ClearOut()
{
if (this->OutPts){ this->OutPts->Delete(); }
if (this->OutCells){ this->OutCells->Delete(); }
if (this->SourceId){ this->SourceId->Delete(); }
this->OutPts=0;
this->OutCells=0;
this->SourceId=0;
}
//-----------------------------------------------------------------------------
void PoincareMapData::SetSource(vtkSQCellGenerator *sourceGen)
{
sqErrorMacro(pCerr(),"Cell generator source is not supported.");
}
//-----------------------------------------------------------------------------
void PoincareMapData::SetSource(vtkDataSet *s)
{
this->ClearSource();
// some process may not have any work, in that case we still
// should initialize with empty objects.
if (s->GetNumberOfCells()==0)
{
this->SourceCells=vtkCellArray::New();
this->SourcePts=vtkFloatArray::New();
return;
}
// unstructured (the easier)
vtkUnstructuredGrid *sourceug=dynamic_cast<vtkUnstructuredGrid*>(s);
if (sourceug)
{
this->SourcePts=dynamic_cast<vtkFloatArray*>(sourceug->GetPoints()->GetData());
if (this->SourcePts==0)
{
cerr << "Error: Points are not float precision." << endl;
return;
}
this->SourcePts->Register(0);
this->SourceCells=sourceug->GetCells();
this->SourceCells->Register(0);
return;
}
// polydata
vtkPolyData *sourcepd=dynamic_cast<vtkPolyData*>(s);
if (sourcepd)
{
this->SourcePts=dynamic_cast<vtkFloatArray*>(sourcepd->GetPoints()->GetData());
if (this->SourcePts==0)
{
cerr << "Error: Points are not float precision." << endl;
return;
}
this->SourcePts->Register(0);
if (sourcepd->GetNumberOfPolys())
{
this->SourceCells=sourcepd->GetPolys();
}
else
if (sourcepd->GetNumberOfLines())
{
this->SourceCells=sourcepd->GetLines();
}
else
if (sourcepd->GetNumberOfVerts())
{
this->SourceCells=sourcepd->GetVerts();
}
else
{
cerr << "Error: Polydata doesn't have any supported cells." << endl;
return;
}
this->SourceCells->Register(0);
return;
}
cerr << "Error: Unsupported input data type." << endl;
}
//-----------------------------------------------------------------------------
void PoincareMapData::SetOutput(vtkDataSet *o)
{
this->ClearOut();
vtkPolyData *out=dynamic_cast<vtkPolyData*>(o);
if (out==0)
{
cerr << "Error: Out must be polydata. " << o->GetClassName() << endl;
return;
}
vtkPoints *opts=vtkPoints::New();
out->SetPoints(opts);
opts->Delete();
this->OutPts=dynamic_cast<vtkFloatArray*>(opts->GetData());
this->OutPts->Register(0);
this->OutCells=vtkCellArray::New();
out->SetVerts(this->OutCells);
this->SourceId=vtkIntArray::New();
this->SourceId->SetName("SourceId");
out->GetCellData()->AddArray(this->SourceId);
}
//-----------------------------------------------------------------------------
int PoincareMapData::InsertCells(IdBlock *SourceIds)
{
vtkIdType startId=SourceIds->first();
vtkIdType endId=SourceIds->last();
// Cells are sequentially acccessed (not random) so explicitly
// skip all cells we aren't interested in.
this->SourceCells->InitTraversal();
for (vtkIdType i=0; i<startId; ++i)
{
vtkIdType n;
vtkIdType *ptIds;
SourceCells->GetNextCell(n,ptIds);
}
// for the cells assigned to us, generate seed points.
vtkIdType lId=this->Lines.size();
vtkIdType nSeeds=SourceIds->size();
this->Lines.resize(lId+nSeeds,0);
float *pSourcePts=this->SourcePts->GetPointer(0);
// Compute the center of the cell, and use this for
// a seed point.
for (vtkIdType cId=startId; cId<endId; ++cId)
{
vtkIdType nPtIds;
vtkIdType *ptIds;
SourceCells->GetNextCell(nPtIds,ptIds);
// the seed point we will use the center of the cell
double seed[3]={0.0};
for (vtkIdType pId=0; pId<nPtIds; ++pId)
{
vtkIdType idx=3*ptIds[pId];
// compute contribution to cell center.
seed[0]+=pSourcePts[idx ];
seed[1]+=pSourcePts[idx+1];
seed[2]+=pSourcePts[idx+2];
}
// finsih the seed point computation (at cell center).
seed[0]/=nPtIds;
seed[1]/=nPtIds;
seed[2]/=nPtIds;
this->Lines[lId]=new FieldLine(seed,this->SourceCellGid+cId);
this->Lines[lId]->AllocateTrace();
++lId;
}
return nSeeds;
}
//-----------------------------------------------------------------------------
int PoincareMapData::SyncGeometry()
{
size_t nLines=this->Lines.size();
// get the number of new points and cells to append
vtkIdType nNewCells=0;
vtkIdType nNewPts=0;
for (size_t i=0; i<nLines; ++i)
{
vtkIdType nPts=this->Lines[i]->GetNumberOfPoints();
nNewPts+=nPts;
nNewCells+=(nPts>0?1:0);
}
if (nNewPts==0)
{
return 1;
}
// resize points
vtkIdType nExPts=this->OutPts->GetNumberOfTuples();
float *pMapPts=this->OutPts->WritePointer(3*nExPts,3*nNewPts);
// resize cells
vtkIdTypeArray *mapCells=this->OutCells->GetData();
vtkIdType *pMapCells
= mapCells->WritePointer(
mapCells->GetNumberOfTuples(),
nNewCells+nNewPts);
this->OutCells->SetNumberOfCells(
this->OutCells->GetNumberOfCells()+nNewCells);
// resize scalars
vtkIdType nExIds=this->SourceId->GetNumberOfTuples();
int *pId=this->SourceId->WritePointer(nExIds,nNewCells);
vtkIdType ptId=nExPts;
for (size_t i=0; i<nLines; ++i)
{
// copy the points
vtkIdType nPts=this->Lines[i]->CopyPoints(pMapPts);
if (nPts==0)
{
continue;
}
pMapPts+=3*nPts;
// update the scalars
*pId=this->Lines[i]->GetSeedId();
++pId;
// build the poly verts
*pMapCells=nPts;
++pMapCells;
for (int q=0; q<nPts; ++q)
{
// vert id
*pMapCells=ptId;
++pMapCells;
++ptId;
}
}
return 1;
}