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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
/*****************************************************************************
*
* Copyright (c) 2000 - 2012, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-442911
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl.gov/. The
* full copyright notice is contained in the file COPYRIGHT located at the root
* of the VisIt distribution or at http://www.llnl.gov/visit/copyright.html.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the disclaimer below.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the disclaimer (as noted below) in the
* documentation and/or other materials provided with the distribution.
* - Neither the name of the LLNS/LLNL nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
* LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
*****************************************************************************/
#include <PolyhedralSplit.h>
#include <vtkDataArray.h>
#include <vtkUnsignedIntArray.h>
#include <map>
#include <DebugStream.h>
// ****************************************************************************
// Method: PolyhedralSplit::PolyhedralSplit
//
// Purpose:
// Constructor
//
// Arguments:
//
// Programmer: Brad Whitlock
// Creation: Fri Mar 12 15:16:41 PST 2010
//
// Modifications:
// Brad Whitlock, Tue Oct 26 16:27:26 PDT 2010
// I removed the arguments and made polyhedralSplit into a vector.
//
// ****************************************************************************
PolyhedralSplit::PolyhedralSplit() : polyhedralSplit(), nodesForPolyhedralCells()
{
}
// ****************************************************************************
// Method: PolyhedralSplit::~PolyhedralSplit
//
// Purpose:
// Destructor.
//
// Programmer: Brad Whitlock
// Creation: Fri Mar 12 15:17:13 PST 2010
//
// Modifications:
//
// ****************************************************************************
PolyhedralSplit::~PolyhedralSplit()
{
}
// ****************************************************************************
// Method: PolyhedralSplit::Destruct
//
// Purpose:
// Static destructor function
//
// Arguments:
// ptr : Pointer to the PolyhedralSplit object to delete.
//
// Programmer: Brad Whitlock
// Creation: Fri Mar 12 15:17:27 PST 2010
//
// Modifications:
//
// ****************************************************************************
void
PolyhedralSplit::Destruct(void *ptr)
{
PolyhedralSplit *This = (PolyhedralSplit *)ptr;
delete This;
}
// ****************************************************************************
// Method: PolyhedralSplit::AppendCellSplits
//
// Purpose:
// Record the cellid and number of splits for the next polyhedral cell.
//
// Arguments:
// cellid : The original cell id of the polyhedral cell.
// nsplits : The number of splits for the polyhedral cell.
//
// Programmer: Brad Whitlock
// Creation: Fri Mar 12 15:17:55 PST 2010
//
// Modifications:
//
// ****************************************************************************
void
PolyhedralSplit::AppendCellSplits(int cellid, int nsplits)
{
polyhedralSplit.push_back(cellid);
polyhedralSplit.push_back(nsplits);
}
// ****************************************************************************
// Method: PolyhedralSplit::AppendPolyhedralNode
//
// Purpose:
// Store a polyhedral node id.
//
// Arguments:
// id : The id of the node to save off.
//
// Programmer: Brad Whitlock
// Creation: Fri Mar 12 16:50:25 PST 2010
//
// Modifications:
//
// ****************************************************************************
void
PolyhedralSplit::AppendPolyhedralNode(int id)
{
nodesForPolyhedralCells.push_back(id);
}
// ****************************************************************************
// Method: PolyhedralSplit::ExpandDataArray
//
// Purpose:
// Return a copy of the input data array with polyhedral cells' data
// replicated the appropriate number of times.
//
// Arguments:
// input : The input data array.
// zoneCent : True if the data is zone centered.
// averageNodes : If true then average the node data for new polyhedral nodes.
// If false, use the dominant value.
//
// Returns: A new data array
//
// Note: This just works for zonal data right now.
//
// Programmer: Brad Whitlock
// Creation: Fri Mar 12 15:19:07 PST 2010
//
// Modifications:
// Brad Whitlock, Tue Oct 26 16:23:45 PDT 2010
// I turned polyhedralSplit into a vector. Allow for the input to be returned
// in the case where there are now polyhedral cells. I also added a new case
// for figuring out the new nodal values for new polyhedral nodes so we can
// use the dominant value. This lets us handle nodal material data.
//
// Brad Whitlock, Mon Nov 22 14:14:16 PST 2010
// Set the component count so it works on vector data too.
//
// ****************************************************************************
vtkDataArray *
PolyhedralSplit::ExpandDataArray(vtkDataArray *input, bool zoneCent,
bool averageNodes) const
{
const char *mName = "PolyhedralSplit::ExpandDataArray: ";
vtkDataArray *output = NULL;
int polyhedralCellCount = polyhedralSplit.size() / 2;
if(polyhedralCellCount == 0)
{
debug4 << mName << "Returning input data array " << endl;
output = input;
output->Register(NULL);
}
else if(zoneCent)
{
debug4 << mName << "Expanding zonal data" << endl;
output = input->NewInstance();
int bloat = 0;
for(size_t i = 1; i < polyhedralSplit.size(); i += 2)
bloat += (polyhedralSplit[i] - 1);
output->SetNumberOfComponents(input->GetNumberOfComponents());
output->SetNumberOfTuples(input->GetNumberOfTuples() + bloat);
output->SetName(input->GetName());
vtkIdType out = 0;
int phIndex = 0;
for(vtkIdType cellid = 0; cellid < input->GetNumberOfTuples(); ++cellid)
{
if(phIndex >= polyhedralCellCount ||
cellid < polyhedralSplit[phIndex*2])
{
output->SetTuple(out++, input->GetTuple(cellid));
}
else
{
int nrepeats = polyhedralSplit[phIndex*2+1];
for(int j = 0; j < nrepeats; ++j)
output->SetTuple(out++, input->GetTuple(cellid));
phIndex++;
}
}
}
else
{
output = input->NewInstance();
output->SetNumberOfComponents(input->GetNumberOfComponents());
output->SetNumberOfTuples(input->GetNumberOfTuples() + polyhedralCellCount);
output->SetName(input->GetName());
// Copy all of the original node data
vtkIdType out = 0;
for(vtkIdType nodeid = 0; nodeid < input->GetNumberOfTuples(); ++nodeid)
output->SetTuple(out++, input->GetTuple(nodeid));
// Create average values for the new nodes.
if(averageNodes ||
input->GetNumberOfComponents()>1/*For ease*/)
{
debug4 << mName << "Expanding nodal data using averaging for the "
"new node values" << endl;
double *avg = new double[input->GetNumberOfComponents()];
for(size_t i = 0; i < nodesForPolyhedralCells.size(); )
{
int nnodes = nodesForPolyhedralCells[i++];
memset(avg, 0, input->GetNumberOfComponents() * sizeof(double));
for(int j = 0; j < nnodes; ++j)
{
int nodeid = nodesForPolyhedralCells[i++];
double *val = input->GetTuple(nodeid);
for(int c = 0; c < input->GetNumberOfComponents(); ++c)
avg[c] += val[c];
}
for(int c = 0; c < input->GetNumberOfComponents(); ++c)
avg[c] /= double(nnodes);
output->SetTuple(out++, avg);
}
delete [] avg;
}
else
{
debug4 << mName << "Expanding nodal data using dominant value for "
"the new node values" << endl;
// Just 1-component values for now.
for(size_t i = 0; i < nodesForPolyhedralCells.size(); )
{
int nnodes = nodesForPolyhedralCells[i++];
// Count up the unique values.
std::map<double,int> counts;
std::map<double,int>::iterator it;
for(int j = 0; j < nnodes; ++j)
{
int nodeid = nodesForPolyhedralCells[i++];
double val = input->GetTuple1(nodeid);
it = counts.find(val);
if(it == counts.end())
counts[val] = 1;
else
counts[val]++;
}
// Figure out which is the most common value.
it = counts.begin();
int maxcount = it->second;
double mostCommon = it->first;
for(; it != counts.end(); ++it)
{
if(it->second > maxcount)
{
maxcount = it->second;
mostCommon = it->first;
}
}
// Save the most common value as the new node value
output->SetTuple1(out++, mostCommon);
}
}
}
debug4 << mName << "Output data has " << output->GetNumberOfTuples()
<< " tuples" << endl;
return output;
}
// ****************************************************************************
// Method: PolyhedralSplit::CreateOriginalCells
//
// Purpose:
// Creates an original cells array based on the polyhedral split data.
//
// Arguments:
// domain : The current domain number.
// normalCellCount : The number of normal cells.
//
// Returns: An original cells array.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Fri Mar 12 15:20:24 PST 2010
//
// Modifications:
// Brad Whitlock, Tue Oct 26 16:23:45 PDT 2010
// I turned polyhedralSplit into a vector.
//
// ****************************************************************************
vtkDataArray *
PolyhedralSplit::CreateOriginalCells(int domain, int normalCellCount) const
{
vtkUnsignedIntArray *originalCells = vtkUnsignedIntArray::New();
originalCells->SetNumberOfComponents(2);
int bloat = 0;
int polyhedralCellCount = polyhedralSplit.size()/2;
for(int i = 0; i < polyhedralCellCount; ++i)
bloat += polyhedralSplit[i*2+1];
originalCells->SetNumberOfTuples(normalCellCount + bloat);
originalCells->SetName("avtOriginalCellNumbers");
int phIndex = 0;
unsigned int *oc = (unsigned int *)originalCells->GetVoidPointer(0);
int allCells = normalCellCount + polyhedralCellCount;
for(int origCell = 0; origCell < allCells; ++origCell)
{
oc[1] = origCell;
if(phIndex >= polyhedralCellCount)
{
*oc++ = domain;
*oc++ = origCell;
}
else if(origCell < polyhedralSplit[phIndex*2])
{
*oc++ = domain;
*oc++ = origCell;
}
else
{
int nrepeats = polyhedralSplit[phIndex*2+1];
for(int j = 0; j < nrepeats; ++j)
{
*oc++ = domain;
*oc++ = origCell;
}
phIndex++;
}
}
return originalCells;
}
|