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
|
/*=========================================================================
Program: Visualization Toolkit
Module: Generate3DAMRDataSetWithPulse.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 Generate3DAMRDataSetWithPulse.cxx -- Generated sample 3D AMR dataset
//
// .SECTION Description
// This utility code generates a simple 3D AMR dataset with a gaussian
// pulse at the center. The resulting AMR dataset is written using the
// vtkXMLHierarchicalBoxDataSetWriter.
//disable linking warning due to inclusion of vtkXML*
#if defined(_MSC_VER)
# pragma warning (disable: 4089)
#endif
#include <iostream>
#include <cmath>
#include <sstream>
#include <cassert>
#include "vtkAMRUtilities.h"
#include "vtkCell.h"
#include "vtkCellData.h"
#include "vtkDataArray.h"
#include "vtkDoubleArray.h"
#include "vtkOverlappingAMR.h"
#include "vtkPointData.h"
#include "vtkPoints.h"
#include "vtkUniformGrid.h"
#include "vtkAMRBox.h"
#include "AMRCommon.h"
static struct PulseAttributes {
double origin[3]; // xyz for the center of the pulse
double width[3]; // the width of the pulse
double amplitude; // the amplitude of the pulse
} Pulse;
//
// Function prototype declarations
//
// Description:
// Sets the pulse attributes
void SetPulse();
// Description:
// Constructs the vtkHierarchicalBoxDataSet.
vtkOverlappingAMR* GetAMRDataSet();
// Description:
// Attaches the pulse to the given grid.
void AttachPulseToGrid( vtkUniformGrid *grid );
//
// Program main
//
int main( int argc, char **argv )
{
// Fix compiler warning for unused variables
static_cast<void>(argc);
static_cast<void>(argv);
// STEP 0: Initialize gaussian pulse parameters
SetPulse();
// STEP 1: Get the AMR dataset
vtkOverlappingAMR *amrDataSet = GetAMRDataSet();
assert( "pre: NULL AMR dataset" && ( amrDataSet != NULL ) );
AMRCommon::WriteAMRData( amrDataSet, "Gaussian3D" );
amrDataSet->Delete();
return 0;
}
//=============================================================================
// Function Prototype Implementation
//=============================================================================
void SetPulse()
{
Pulse.origin[0] = Pulse.origin[1] = Pulse.origin[2] = -1.0;
Pulse.width[0] = Pulse.width[1] = Pulse.width[2] = 6.0;
Pulse.amplitude = 0.0001;
}
//------------------------------------------------------------------------------
void AttachPulseToGrid( vtkUniformGrid *grid )
{
assert( "pre: grid is NULL!" && (grid != NULL) );
vtkDoubleArray* xyz = vtkDoubleArray::New( );
xyz->SetName( "GaussianPulse" );
xyz->SetNumberOfComponents( 1 );
xyz->SetNumberOfTuples( grid->GetNumberOfCells() );
for(int cellIdx=0; cellIdx < grid->GetNumberOfCells(); ++cellIdx )
{
double center[3];
AMRCommon::ComputeCellCenter( grid, cellIdx, center );
double r = 0.0;
for( int i=0; i < 3; ++i )
{
double dx = center[i]-Pulse.origin[i];
r += (dx*dx) / (Pulse.width[i]*Pulse.width[i]);
}
double f = Pulse.amplitude*std::exp( -r );
xyz->SetTuple1( cellIdx, f );
} // END for all cells
grid->GetCellData()->AddArray( xyz );
xyz->Delete();
}
//------------------------------------------------------------------------------
vtkOverlappingAMR* GetAMRDataSet()
{
vtkOverlappingAMR *data = vtkOverlappingAMR::New();
int blocksPerLevel[2] = {1,3};
double globalOrigin[3] = {-2.0,-2.0,-2.0};
data->Initialize(2,blocksPerLevel);
data->SetOrigin(globalOrigin);
data->SetGridDescription(VTK_XYZ_GRID);
double origin[3];
double h[3];
int ndim[3];
// Root Block -- Block 0
ndim[0] = 6; ndim[1] = ndim[2] = 5;
h[0] = h[1] = h[2] = 1.0;
origin[0] = origin[1] = origin[2] = -2.0;
int blockId = 0;
int level = 0;
vtkUniformGrid *root = AMRCommon::GetGrid(origin,h,ndim);
vtkAMRBox box(origin,ndim,h,data->GetOrigin(), data->GetGridDescription());
AttachPulseToGrid( root );
data->SetAMRBox(level,blockId,box);
data->SetDataSet( level, blockId,root);
root->Delete();
// Block 1
ndim[0] = 3; ndim[1] = ndim[2] = 5;
h[0] = h[1] = h[2] = 0.5;
origin[0] = origin[1] = origin[2] = -2.0;
blockId = 0;
level = 1;
vtkUniformGrid *grid1 = AMRCommon::GetGrid(origin,h,ndim);
AttachPulseToGrid(grid1);
vtkAMRBox box1(origin,ndim,h,data->GetOrigin(), data->GetGridDescription());
data->SetAMRBox(level,blockId,box1);
data->SetDataSet(level, blockId,grid1);
grid1->Delete();
// Block 2
ndim[0] = 3; ndim[1] = ndim[2] = 5;
h[0] = h[1] = h[2] = 0.5;
origin[0] = 0.0; origin[1] = origin[2] = -1.0;
blockId = 1;
level = 1;
vtkUniformGrid *grid2 = AMRCommon::GetGrid(origin,h,ndim);
AttachPulseToGrid(grid2);
vtkAMRBox box2(origin,ndim,h,data->GetOrigin(), data->GetGridDescription());
data->SetAMRBox(level,blockId,box2);
data->SetDataSet(level,blockId,grid2);
grid2->Delete();
// Block 3
ndim[0] = 3; ndim[1] = ndim[2] = 7;
h[0] = h[1] = h[2] = 0.5;
origin[0] = 2.0; origin[1] = origin[2] = -1.0;
blockId = 2;
level = 1;
vtkUniformGrid *grid3 = AMRCommon::GetGrid(origin,h,ndim);
vtkAMRBox box3(origin,ndim,h,data->GetOrigin(), data->GetGridDescription());
AttachPulseToGrid(grid3);
data->SetAMRBox(level,blockId,box3);
data->SetDataSet( level, blockId,grid3);
grid3->Delete();
vtkAMRUtilities::BlankCells(data);
return( data );
}
|