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 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
|
/*=========================================================================
Program: Visualization Toolkit
Module: TestStructuredGridConnectivity.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME TestStructuredGridConnectivity.cxx --Test vtkStructuredGridConnectivity
//
// .SECTION Description
// Serial tests for structured grid connectivity
// VTK includes
#include "vtkDataSet.h"
#include "vtkUniformGrid.h"
#include "vtkMultiBlockDataSet.h"
#include "vtkMultiPieceDataSet.h"
#include "vtkDataObject.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include "vtkInformation.h"
#include "vtkXMLImageDataWriter.h"
#include "vtkStructuredGridConnectivity.h"
#include "vtkStructuredNeighbor.h"
#include "vtkUnsignedCharArray.h"
#include "vtkIntArray.h"
#include "vtkPointData.h"
#include "vtkCellData.h"
#include "vtkDoubleArray.h"
#include "vtkCell.h"
#include "vtkUniformGridPartitioner.h"
#include "vtkUnsignedCharArray.h"
#include "vtkUnsignedIntArray.h"
#include "vtkXMLMultiBlockDataWriter.h"
#include "vtkMathUtilities.h"
// C++ includes
#include <iostream>
#include <sstream>
#include <cassert>
#include <string>
#include <vector>
#include <set>
//#define ENABLE_IO
namespace
{
//------------------------------------------------------------------------------
// Description:
// This method attaches a point array to the given grid that will label the
// the points by color -- 0(off) or 1(on) -- to indicate whether or not a
// particular flag is "ON"
void AttachPointFlagsArray(
vtkUniformGrid *grid, const int flag, std::string label )
{
assert( "pre: grid should not be NULL!" && (grid != NULL) );
vtkUnsignedIntArray *flags = vtkUnsignedIntArray::New();
flags->SetName( label.c_str() ) ;
flags->SetNumberOfComponents( 1 );
flags->SetNumberOfTuples( grid->GetNumberOfPoints() );
vtkIdType pidx = 0;
for( ; pidx < grid->GetNumberOfPoints(); ++pidx )
{
unsigned char nodeProperty =
*(grid->GetPointGhostArray()->GetPointer( pidx ));
if( nodeProperty & flag )
{
flags->SetValue( pidx, 1);
}
else
{
flags->SetValue( pidx, 0);
}
} // END for all points
grid->GetPointData()->AddArray( flags );
flags->Delete();
}
//------------------------------------------------------------------------------
// Description:
// This method attaches a cell array to the given grid that will label the
// the points by color -- 0(off) or 1(on) -- to indicate whether or not a
// particular flag is "ON"
void AttachCellFlagsArray(
vtkUniformGrid *grid, const int flag, std::string label )
{
assert( "pre: grid should not be NULL" && (grid != NULL) );
vtkUnsignedIntArray *flags = vtkUnsignedIntArray::New();
flags->SetName( label.c_str() );
flags->SetNumberOfComponents( 1 );
flags->SetNumberOfTuples( grid->GetNumberOfCells() );
vtkIdType cellIdx = 0;
for( ; cellIdx < grid->GetNumberOfCells(); ++cellIdx )
{
unsigned char cellProperty =
*(grid->GetCellGhostArray()->GetPointer(cellIdx));
if( cellProperty & flag )
{
flags->SetValue( cellIdx, 1 );
}
else
{
flags->SetValue( cellIdx, 0 );
}
} // END for all cells
grid->GetCellData()->AddArray( flags );
flags->Delete();
}
//------------------------------------------------------------------------------
// Description:
// This method loops through all the blocks in the dataset and attaches arrays
// for each ghost property that label whether a property is off(0) or on(1).
void AttachNodeAndCellGhostFlags( vtkMultiBlockDataSet *mbds )
{
assert( "pre: Multi-block is NULL!" && (mbds != NULL) );
unsigned int block=0;
for( ; block < mbds->GetNumberOfBlocks(); ++block )
{
vtkUniformGrid *myGrid =
vtkUniformGrid::SafeDownCast(mbds->GetBlock( block ) );
if( myGrid != NULL )
{
// original IGNORE
AttachPointFlagsArray( myGrid, vtkDataSetAttributes::DUPLICATEPOINT,
"DUPLICATEPOINT" );
// original DUPLICATE
AttachCellFlagsArray( myGrid, vtkDataSetAttributes::DUPLICATECELL,
"DUPLICATECELL" );
}
} // END for all blocks
}
//------------------------------------------------------------------------------
// Description:
// Applies an XYZ field to the nodes and cells of the grid whose value is
// corresponding to the XYZ coordinates at that location
void ApplyXYZFieldToGrid( vtkUniformGrid *grd, const std::string &prefix )
{
assert( "pre: grd should not be NULL" && (grd != NULL) );
// Get the grid's point-data and cell-data data-structures
vtkCellData *CD = grd->GetCellData();
vtkPointData *PD = grd->GetPointData();
assert( "pre: Cell data is NULL" && (CD != NULL) );
assert( "pre: Point data is NULL" && (PD != NULL) );
std::ostringstream oss;
// Allocate arrays
oss.str("");
oss << prefix << "-CellXYZ";
vtkDoubleArray *cellXYZArray = vtkDoubleArray::New();
cellXYZArray->SetName( oss.str().c_str() );
cellXYZArray->SetNumberOfComponents( 3 );
cellXYZArray->SetNumberOfTuples( grd->GetNumberOfCells() );
oss.str("");
oss << prefix << "-NodeXYZ";
vtkDoubleArray *nodeXYZArray = vtkDoubleArray::New();
nodeXYZArray->SetName( oss.str().c_str() );
nodeXYZArray->SetNumberOfComponents( 3 );
nodeXYZArray->SetNumberOfTuples( grd->GetNumberOfPoints() );
// Compute field arrays
std::set< vtkIdType > visited;
for( vtkIdType cellIdx=0; cellIdx < grd->GetNumberOfCells(); ++cellIdx )
{
vtkCell *c = grd->GetCell( cellIdx );
assert( "pre: cell is not NULL" && (c != NULL) );
double centroid[3];
double xsum = 0.0;
double ysum = 0.0;
double zsum = 0.0;
for( vtkIdType node=0; node < c->GetNumberOfPoints(); ++node )
{
double xyz[3];
vtkIdType meshPntIdx = c->GetPointId( node );
grd->GetPoint( meshPntIdx, xyz );
xsum += xyz[0];
ysum += xyz[1];
zsum += xyz[2];
if( visited.find( meshPntIdx ) == visited.end() )
{
visited.insert( meshPntIdx );
nodeXYZArray->SetComponent( meshPntIdx, 0, xyz[0] );
nodeXYZArray->SetComponent( meshPntIdx, 1, xyz[1] );
nodeXYZArray->SetComponent( meshPntIdx, 2, xyz[2] );
} // END if
} // END for all nodes
centroid[0] = xsum / c->GetNumberOfPoints();
centroid[1] = ysum / c->GetNumberOfPoints();
centroid[2] = zsum / c->GetNumberOfPoints();
cellXYZArray->SetComponent( cellIdx, 0, centroid[0] );
cellXYZArray->SetComponent( cellIdx, 1, centroid[1] );
cellXYZArray->SetComponent( cellIdx, 2, centroid[2] );
} // END for all cells
// Insert field arrays to grid point/cell data
CD->AddArray( cellXYZArray );
cellXYZArray->Delete();
PD->AddArray( nodeXYZArray );
nodeXYZArray->Delete();
}
//------------------------------------------------------------------------------
void ApplyFieldsToDataSet( vtkMultiBlockDataSet *mbds, const std::string &prefix )
{
unsigned int block = 0;
for( ; block < mbds->GetNumberOfBlocks(); ++block )
{
vtkUniformGrid *grid =
vtkUniformGrid::SafeDownCast( mbds->GetBlock(block) );
ApplyXYZFieldToGrid( grid, prefix );
} // END for all blocks
}
//------------------------------------------------------------------------------
// Description:
// Get Grid whole extent and dimensions
void GetGlobalGrid( const int dimension, int wholeExtent[6], int dims[3] )
{
for( int i=0; i < 3; ++i )
{
wholeExtent[ i*2 ] = 0;
wholeExtent[ i*2+1 ] = 0;
dims[ i ] = 1;
}
switch( dimension )
{
case 2:
wholeExtent[0] = 0;
wholeExtent[1] = 9;
wholeExtent[2] = 0;
wholeExtent[3] = 9;
dims[0] = wholeExtent[1] - wholeExtent[0] + 1;
dims[1] = wholeExtent[3] - wholeExtent[2] + 1;
break;
case 3:
wholeExtent[0] = 0;
wholeExtent[1] = 9;
wholeExtent[2] = 0;
wholeExtent[3] = 9;
wholeExtent[4] = 0;
wholeExtent[5] = 9;
dims[0] = wholeExtent[1] - wholeExtent[0] + 1;
dims[1] = wholeExtent[3] - wholeExtent[2] + 1;
dims[2] = wholeExtent[5] - wholeExtent[4] + 1;
break;
default:
assert( "Cannot create grid of invalid dimension" && false );
}
}
//------------------------------------------------------------------------------
// Description:
// Generates a multi-block dataset
vtkMultiBlockDataSet* GetDataSet(
const int dimension, const int numPartitions, const int numGhosts)
{
int wholeExtent[6];
int dims[3];
GetGlobalGrid( dimension, wholeExtent, dims );
// Generate grid for the entire domain
vtkUniformGrid *wholeGrid = vtkUniformGrid::New();
wholeGrid->SetOrigin( 0.0, 0.0, 0.0 );
wholeGrid->SetSpacing( 0.5, 0.5, 0.5 );
wholeGrid->SetDimensions( dims );
// partition the grid, the grid partitioner will generate the whole extent and
// node extent information.
vtkUniformGridPartitioner *gridPartitioner = vtkUniformGridPartitioner::New();
gridPartitioner->SetInputData( wholeGrid );
gridPartitioner->SetNumberOfPartitions( numPartitions );
gridPartitioner->SetNumberOfGhostLayers( numGhosts );
gridPartitioner->Update();
// THIS DOES NOT COPY THE INFORMATION KEYS!
// vtkMultiBlockDataSet *mbds = vtkMultiBlockDataSet::New();
// mbds->ShallowCopy( gridPartitioner->GetOutput() );
vtkMultiBlockDataSet *mbds =
vtkMultiBlockDataSet::SafeDownCast( gridPartitioner->GetOutput() );
mbds->SetReferenceCount( mbds->GetReferenceCount()+1 );
ApplyFieldsToDataSet( mbds, "COMPUTED" );
wholeGrid->Delete();
gridPartitioner->Delete();
assert( "pre: mbds is NULL" && (mbds != NULL) );
return( mbds );
}
//------------------------------------------------------------------------------
// Description:
// Computes the total number of nodes in the multi-block dataset.
int GetTotalNumberOfNodes( vtkMultiBlockDataSet *multiblock )
{
assert( "multi-block grid is NULL" && (multiblock != NULL) );
int numNodes = 0;
for(unsigned int block=0; block < multiblock->GetNumberOfBlocks(); ++block )
{
vtkUniformGrid *grid =
vtkUniformGrid::SafeDownCast( multiblock->GetBlock( block ) );
if( grid != NULL )
{
vtkIdType pntIdx = 0;
for( ; pntIdx < grid->GetNumberOfPoints(); ++pntIdx )
{
unsigned char nodeProperty =
*(grid->GetPointGhostArray()->GetPointer( pntIdx ));
if( ! (nodeProperty & (vtkDataSetAttributes::DUPLICATEPOINT |
vtkDataSetAttributes::HIDDENPOINT)))
{
++numNodes;
}
} // END for all nodes
} // END if grid != NULL
} // END for all blocks
return( numNodes );
}
//------------------------------------------------------------------------------
// Description:
// Computes the total number of nodes in the multi-block dataset.
int GetTotalNumberOfCells( vtkMultiBlockDataSet *multiblock )
{
assert( "multi-block grid is NULL" && (multiblock != NULL) );
int numCells = 0;
for( unsigned int block=0; block < multiblock->GetNumberOfBlocks(); ++block )
{
vtkUniformGrid *grid =
vtkUniformGrid::SafeDownCast( multiblock->GetBlock( block ) );
if( grid != NULL )
{
vtkIdType cellIdx = 0;
for( ; cellIdx < grid->GetNumberOfCells(); ++cellIdx )
{
unsigned char cellProperty =
*(grid->GetCellGhostArray()->GetPointer( cellIdx ) );
if( ! (cellProperty & vtkDataSetAttributes::DUPLICATECELL) )
{
++numCells;
}
} // END for all cells
} // END if grid != NULL
} // END for all blocks
return( numCells );
}
//------------------------------------------------------------------------------
void RegisterGrids(
vtkMultiBlockDataSet *mbds, vtkStructuredGridConnectivity *connectivity )
{
assert( "pre: Multi-block is NULL!" && (mbds != NULL) );
assert( "pre: connectivity is NULL!" && (connectivity != NULL) );
for( unsigned int block=0; block < mbds->GetNumberOfBlocks(); ++block )
{
vtkUniformGrid *grid = vtkUniformGrid::SafeDownCast(mbds->GetBlock(block));
assert( "pre: grid should not be NULL!" && (grid != NULL) );
grid->AllocatePointGhostArray();
grid->AllocateCellGhostArray();
vtkInformation *info = mbds->GetMetaData( block );
assert( "pre: metadata should not be NULL" && (info != NULL) );
assert( "pre: must have piece extent!" &&
info->Has(vtkDataObject::PIECE_EXTENT() ) );
connectivity->RegisterGrid(
block,info->Get(vtkDataObject::PIECE_EXTENT()),
grid->GetPointGhostArray(),
grid->GetCellGhostArray(),
grid->GetPointData(),
grid->GetCellData(),
NULL);
} // END for all blocks
}
//------------------------------------------------------------------------------
void WriteMultiBlock( vtkMultiBlockDataSet *mbds, const std::string &prefix )
{
assert( "pre: Multi-block is NULL!" && (mbds != NULL) );
vtkXMLMultiBlockDataWriter *writer = vtkXMLMultiBlockDataWriter::New();
assert( "pre: Cannot allocate writer" && (writer != NULL) );
std::ostringstream oss;
oss.str("");
oss << prefix << mbds->GetNumberOfBlocks() << "."
<< writer->GetDefaultFileExtension();
writer->SetFileName( oss.str().c_str() );
writer->SetInputData( mbds );
#ifdef ENABLE_IO
writer->Write();
#endif
writer->Delete();
}
//------------------------------------------------------------------------------
vtkUniformGrid* GetGhostedGridFromGrid( vtkUniformGrid *grid, int gext[6] )
{
assert( "pre: input grid is NULL" && (grid != NULL) );
vtkUniformGrid *newGrid = vtkUniformGrid::New();
int dims[3];
vtkStructuredData::GetDimensionsFromExtent( gext, dims );
double h[3];
grid->GetSpacing( h );
double origin[3];
for( int i=0; i < 3; ++i )
{
// Assumes a global origing @(0,0,0)
origin[ i ] = 0.0 + gext[i*2]*h[i];
}
newGrid->SetOrigin( origin );
newGrid->SetDimensions( dims );
newGrid->SetSpacing( grid->GetSpacing() );
return( newGrid );
}
//------------------------------------------------------------------------------
vtkMultiBlockDataSet* GetGhostedDataSet(
vtkMultiBlockDataSet *mbds,
vtkStructuredGridConnectivity *SGC, int numGhosts )
{
assert( "pre: Multi-block dataset is not NULL" && (mbds != NULL) );
assert( "pre: SGC is NULL" && (SGC != NULL) );
assert( "pre: Number of ghosts requested is invalid" && (numGhosts >= 1) );
assert( "pre: Number of blocks in input must match registered grids!" &&
mbds->GetNumberOfBlocks()==SGC->GetNumberOfGrids() );
vtkMultiBlockDataSet *output = vtkMultiBlockDataSet::New();
output->SetNumberOfBlocks( mbds->GetNumberOfBlocks() );
SGC->CreateGhostLayers( numGhosts );
int GhostedGridExtent[6];
int GridExtent[6];
unsigned int block=0;
for( ; block < output->GetNumberOfBlocks(); ++block )
{
vtkUniformGrid *grid =
vtkUniformGrid::SafeDownCast( mbds->GetBlock(block) );
assert( "pre: Uniform grid should not be NULL" && (grid != NULL) );
SGC->GetGridExtent( block, GridExtent );
SGC->GetGhostedGridExtent( block, GhostedGridExtent );
vtkUniformGrid *ghostedGrid= GetGhostedGridFromGrid(grid,GhostedGridExtent);
assert( "pre:ghosted grid is NULL!" && (ghostedGrid != NULL) );
// Copy the point data
ghostedGrid->GetPointData()->DeepCopy(
SGC->GetGhostedGridPointData(block) );
ghostedGrid->GetCellData()->DeepCopy(
SGC->GetGhostedGridCellData(block) );
// Copy the ghost arrays
vtkUnsignedCharArray* ghosts = SGC->GetGhostedPointGhostArray(block);
ghosts->SetName(vtkDataSetAttributes::GhostArrayName());
ghostedGrid->GetPointData()->AddArray(ghosts);
ghosts = SGC->GetGhostedCellGhostArray(block);
ghosts->SetName(vtkDataSetAttributes::GhostArrayName());
ghostedGrid->GetCellData()->AddArray(ghosts);
output->SetBlock( block, ghostedGrid );
ghostedGrid->Delete();
} // END for all blocks
return( output );
}
//------------------------------------------------------------------------------
bool Check(
const std::string &name, const int val, const int expected, bool verbose=true )
{
bool status = false;
if( verbose )
{
std::cout << name << "=" << val << " EXPECTED=" << expected << "...";
std::cout.flush();
}
if( val == expected )
{
if( verbose )
{
std::cout << "[OK]\n";
std::cout.flush();
}
status = true;
}
else
{
if( verbose )
{
std::cout << "[ERROR]!\n";
std::cout.flush();
}
status = false;
}
return( status );
}
//------------------------------------------------------------------------------
// Program main
int TestStructuredGridConnectivity_internal( int argc, char *argv[] )
{
// Silence compiler wanrings for unused vars argc and argv
static_cast<void>( argc );
static_cast<void>( argv );
int expected = 10*10*10;
int expectedCells = 9*9*9;
int rc = 0;
int numberOfPartitions[] = {4};
int numGhostLayers[] = {1};
// int numberOfPartitions[] = { 2, 4, 8, 16, 32, 64, 128, 256 };
// int numGhostLayers[] = { 0, 1, 2, 3 };
for( int i=0; i < 1; ++i )
{
for( int j=0; j < 1; ++j )
{
// STEP 0: Construct the dataset
vtkMultiBlockDataSet *mbds =
GetDataSet(3,numberOfPartitions[ i ], numGhostLayers[ j ] );
assert( "pre: multi-block is NULL" && (mbds != NULL) );
assert( "pre: NumBlocks mismatch!" &&
(numberOfPartitions[i] ==static_cast<int>(mbds->GetNumberOfBlocks()) ) );
// STEP 1: Construct the grid connectivity
vtkStructuredGridConnectivity *gridConnectivity=
vtkStructuredGridConnectivity::New();
gridConnectivity->SetNumberOfGrids( mbds->GetNumberOfBlocks() );
gridConnectivity->SetNumberOfGhostLayers( numGhostLayers[j] );
int ext[6];
mbds->GetInformation()->Get(
vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT(),ext);
gridConnectivity->SetWholeExtent( ext );
// STEP 2: Registers the grids
RegisterGrids( mbds, gridConnectivity );
// STEP 3: Compute neighbors
gridConnectivity->ComputeNeighbors();
// STEP 5: Compute total number of nodes & compare to expected
int NumNodes = GetTotalNumberOfNodes( mbds );
if( !Check( "NODES", NumNodes, expected ) )
{
++rc;
}
// STEP 6: Compute total number of cells & compare to expected
int NumCells = GetTotalNumberOfCells( mbds );
if( !Check( "CELLS", NumCells, expectedCells ) )
{
++rc;
}
if(rc != 0)
{
mbds->Delete();
gridConnectivity->Delete();
return( rc );
}
// STEP 7: Create one layer of additional ghost nodes
vtkMultiBlockDataSet *gmbds = GetGhostedDataSet(mbds,gridConnectivity,1);
// STEP 8: Ensure number of nodes/cells is the same on ghosted dataset
int GhostedNumNodes = GetTotalNumberOfNodes( gmbds );
int GhostedNumCells = GetTotalNumberOfCells( gmbds );
if( !Check( "GHOSTED_NODES", GhostedNumNodes, expected ) )
{
++rc;
}
if( !Check( "GHOSTED_CELLS", GhostedNumCells, expectedCells ) )
{
++rc;
}
// STEP 9: De-allocated data-structures
gmbds->Delete();
mbds->Delete();
gridConnectivity->Delete();
if(rc != 0)
{
return rc;
}
}// END for all ghost layer tests
} // END for all numPartition tests
return( rc );
}
//------------------------------------------------------------------------------
bool CheckArrays( vtkDoubleArray *computed, vtkDoubleArray *expected )
{
std::cout << "Checking " << computed->GetName();
std::cout << " to " << expected->GetName() << std::endl;
std::cout.flush();
if( computed->GetNumberOfComponents() != expected->GetNumberOfComponents() )
{
std::cout << "Number of components mismatch!\n";
std::cout.flush();
return false;
}
if( computed->GetNumberOfTuples() != expected->GetNumberOfTuples() )
{
std::cout << "Number of tuples mismatch!\n";
std::cout.flush();
return false;
}
bool status = true;
vtkIdType idx = 0;
for( ; idx < computed->GetNumberOfTuples(); ++idx )
{
int comp = 0;
for( ; comp < computed->GetNumberOfComponents(); ++comp )
{
double compVal = computed->GetComponent(idx,comp);
double expVal = expected->GetComponent(idx,comp);
if( !vtkMathUtilities::FuzzyCompare(compVal,expVal) )
{
// std::cerr << "ERROR: " << compVal << " != " << expVal << std::endl;
// std::cerr.flush();
status = false;
}
} // END for all components
} // END for all tuples
return( status );
}
//------------------------------------------------------------------------------
bool CompareFieldsForGrid( vtkUniformGrid *grid )
{
// Sanity check
assert( "pre: grid should not be NULL" && (grid != NULL) );
assert( "pre: COMPUTED-CellXYZ array is expected!" &&
grid->GetCellData()->HasArray( "COMPUTED-CellXYZ" ) );
assert( "pre: EXPECTED-CellXYZ array is expected!" &&
grid->GetCellData()->HasArray( "EXPECTED-CellXYZ" ) );
assert( "pre: COMPUTED-NodeXYZ array is expected!" &&
grid->GetPointData()->HasArray( "COMPUTED-NodeXYZ" ) );
assert( "pre: EXPECTED-NodeXYZ array is expected!" &&
grid->GetPointData()->HasArray( "EXPECTED-NodeXYZ" ) );
vtkDoubleArray *computedCellData =
vtkArrayDownCast<vtkDoubleArray>(
grid->GetCellData()->GetArray( "COMPUTED-CellXYZ" ) );
assert( "pre: computedCellData is NULL" && (computedCellData != NULL) );
vtkDoubleArray *expectedCellData =
vtkArrayDownCast<vtkDoubleArray>(
grid->GetCellData()->GetArray( "EXPECTED-CellXYZ" ) );
assert( "pre: expectedCellData is NULL" && (expectedCellData != NULL) );
bool status = CheckArrays( computedCellData, expectedCellData );
if( !status )
{
return status;
}
vtkDoubleArray *computedPointData =
vtkArrayDownCast<vtkDoubleArray>(
grid->GetPointData()->GetArray( "COMPUTED-NodeXYZ" ) );
assert( "pre: computePointData is NULL" && (computedPointData != NULL) );
vtkDoubleArray *expectedPointData =
vtkArrayDownCast<vtkDoubleArray>(
grid->GetPointData()->GetArray( "EXPECTED-NodeXYZ" ) );
assert( "pre: expectedPointData is NULL" && (expectedPointData != NULL) );
status = CheckArrays( computedPointData, expectedPointData );
return( status );
}
//------------------------------------------------------------------------------
bool CompareFields( vtkMultiBlockDataSet *mbds )
{
bool status = true;
unsigned int block = 0;
for( ; block < mbds->GetNumberOfBlocks(); ++block )
{
vtkUniformGrid *grid= vtkUniformGrid::SafeDownCast( mbds->GetBlock(block) );
status = CompareFieldsForGrid( grid );
} // END for all blocks
return( status );
}
//------------------------------------------------------------------------------
int SimpleTest( int argc, char **argv )
{
assert( "pre: argument counter must equal 4" && (argc==5) );
// Doing a void cast here to resolve warnings on unused vars
static_cast<void>(argc);
int dim = atoi( argv[1] ); // The dimension of the data
int np = atoi( argv[2] ); // The number of partitions to create
int ng = atoi( argv[3] ); // The number of initial ghost layers
int nng = atoi( argv[4] ); // The number of additional ghost layers to create
assert( "pre: dim must be 2 or 3" && ( (dim==2) || (dim==3) ) );
std::cout << "Running Simple " << dim << "-D Test..." << std::endl;
std::cout << "Number of partitions: " << np << std::endl;
std::cout << "Number of ghost-layers: " << ng << std::endl;
std::cout.flush();
int expected = 0;
int expectedCells = 0;
switch( dim )
{
case 2:
expectedCells = 9*9;
expected = 10*10;
break;
case 3:
expectedCells = 9*9*9;
expected = 10*10*10;
break;
default:
assert( "Code should not reach here!" && false );
}
vtkMultiBlockDataSet *mbds = GetDataSet(dim, np, ng);
vtkStructuredGridConnectivity *gridConnectivity =
vtkStructuredGridConnectivity::New();
gridConnectivity->SetNumberOfGhostLayers( ng );
gridConnectivity->SetNumberOfGrids( mbds->GetNumberOfBlocks() );
int wholeExt[6];
mbds->GetInformation()->Get(
vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT(),wholeExt);
gridConnectivity->SetWholeExtent(wholeExt);
RegisterGrids( mbds, gridConnectivity );
gridConnectivity->ComputeNeighbors();
gridConnectivity->Print( std::cout );
std::cout.flush();
AttachNodeAndCellGhostFlags( mbds );
WriteMultiBlock( mbds, "INITIAL" );
int NumNodes = GetTotalNumberOfNodes( mbds );
int NumCells = GetTotalNumberOfCells( mbds );
std::cout << "[DONE]\n";
std::cout.flush();
Check( "NODES", NumNodes, expected );
Check( "CELLS", NumCells, expectedCells );
std::cout << "Creating/Extending ghost layers...";
std::cout.flush();
vtkMultiBlockDataSet *gmbds = GetGhostedDataSet( mbds,gridConnectivity,nng );
std::cout << "[DONE]\n";
std::cout.flush();
std::cout << "Ghosted Grid connectivity:\n";
std::cout.flush();
gridConnectivity->Print( std::cout );
std::cout.flush();
int NumNodesOnGhostedDataSet = GetTotalNumberOfNodes( gmbds );
int NumCellsOnGhostedDataSet = GetTotalNumberOfCells( gmbds );
Check( "GHOSTED_NODES", NumNodesOnGhostedDataSet, expected, true );
Check( "GHOSTED_CELLS", NumCellsOnGhostedDataSet, expectedCells, true );
AttachNodeAndCellGhostFlags( gmbds );
ApplyFieldsToDataSet( gmbds, "EXPECTED" );
bool success = CompareFields( gmbds );
WriteMultiBlock( gmbds, "GHOSTED" );
if( !success )
{
std::cerr << "FIELD COMPARISSON FAILED!\n";
}
gmbds->Delete();
mbds->Delete();
gridConnectivity->Delete();
return 0;
}
}
//------------------------------------------------------------------------------
// Program main
int TestStructuredGridConnectivity( int argc, char *argv[] )
{
int rc = 0;
if( argc > 1 )
{
rc = SimpleTest( argc, argv );
}
else
{
rc = TestStructuredGridConnectivity_internal( argc, argv );
}
return( rc );
}
|