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
|
#include "VPICDataSet.h"
//////////////////////////////////////////////////////////////////////////////
//
// Top level structure for VPIC data file components
//
//////////////////////////////////////////////////////////////////////////////
VPICDataSet::VPICDataSet()
{
this->rank = 0;
this->totalRank = 1;
this->currentTimeStep = 0;
this->view = 0;
}
//////////////////////////////////////////////////////////////////////////////
//
// Destructor
//
//////////////////////////////////////////////////////////////////////////////
VPICDataSet::~VPICDataSet()
{
if (this->view)
delete this->view;
}
//////////////////////////////////////////////////////////////////////////////
//
// Initialize an empty VPICDataSet by setting variable names and
// checking for block or point structured data
//
//////////////////////////////////////////////////////////////////////////////
void VPICDataSet::initialize(const string& inFile)
{
// Read the information about variables in the run from the .vpc file
this->global.readGlobal(inFile);
// Build all name information for file access
this->global.buildFileNames();
// Build the table which shows distribution of files over problem space
this->global.buildFileLayoutTable();
// Initialize the variable structures
this->global.initializeVariables();
// Create the initial view which is the entire problem
this->view = new VPICView(this->rank, this->totalRank, this->global);
this->view->initialize(
this->currentTimeStep,
this->global.getLayoutSize(),
this->global.getLayoutID(),
this->global.getPartSize(),
this->global.getPhysicalOrigin(),
this->global.getPhysicalStep());
// Save the initial view extents which are the entire problem
int* layoutSize = this->global.getLayoutSize();
this->curXExtent[0] = 0; this->curXExtent[1] = layoutSize[0] - 1;
this->curYExtent[0] = 0; this->curYExtent[1] = layoutSize[1] - 1;
this->curZExtent[0] = 0; this->curZExtent[1] = layoutSize[2] - 1;
}
//////////////////////////////////////////////////////////////////////////////
//
// If the extents of decomposition are different from those of the total
// problem, add a view and set current view to point at it
// extent[DIMENSION][low|high]
//
//////////////////////////////////////////////////////////////////////////////
void VPICDataSet::setView(int* xExtent, int* yExtent, int* zExtent)
{
// If extents haven't been set yet return
if (xExtent[0] == -1)
return;
// If the view extents have not been changed return
if (xExtent[0] == curXExtent[0] && xExtent[1] == curXExtent[1] &&
yExtent[0] == curYExtent[0] && yExtent[1] == curYExtent[1] &&
zExtent[0] == curZExtent[0] && zExtent[1] == curZExtent[1])
return;
// Fetch the global information about the problem size and decomposition
int*** layoutID = this->global.getLayoutID();
int* partSize = this->global.getPartSize();
float* origin = this->global.getPhysicalOrigin();
float* step = this->global.getPhysicalStep();
// Verify that the view extents requested match the extents available
if (xExtent[1] < xExtent[0]) xExtent[1] = xExtent[0];
if (yExtent[1] < yExtent[0]) yExtent[1] = yExtent[0];
if (zExtent[1] < zExtent[0]) zExtent[1] = zExtent[0];
// Save the new current extents
this->curXExtent[0] = xExtent[0]; this->curXExtent[1] = xExtent[1];
this->curYExtent[0] = yExtent[0]; this->curYExtent[1] = yExtent[1];
this->curZExtent[0] = zExtent[0]; this->curZExtent[1] = zExtent[1];
// Set the layout size for the new view
int subLayoutSize[DIMENSION];
subLayoutSize[0] = xExtent[1] - xExtent[0] + 1;
subLayoutSize[1] = yExtent[1] - yExtent[0] + 1;
subLayoutSize[2] = zExtent[1] - zExtent[0] + 1;
// Create the matching file ID structure to match the extents in the new view
int*** subLayoutID = new int**[subLayoutSize[0]];
for (int i = 0; i < subLayoutSize[0]; i++) {
subLayoutID[i] = new int*[subLayoutSize[1]];
for (int j = 0; j < subLayoutSize[1]; j++)
subLayoutID[i][j] = new int[subLayoutSize[2]];
}
// Assign the file IDs controlled by this view
int kindx = 0;
for (int k = zExtent[0]; k <= zExtent[1]; k++) {
int jindx = 0;
for (int j = yExtent[0]; j <= yExtent[1]; j++) {
int iindx = 0;
for (int i = xExtent[0]; i <= xExtent[1]; i++) {
subLayoutID[iindx][jindx][kindx] = layoutID[i][j][k];
iindx++;
}
jindx++;
}
kindx++;
}
float subOrigin[DIMENSION];
subOrigin[0] = origin[0] + (xExtent[0] * partSize[0] * step[0]);
subOrigin[1] = origin[1] + (yExtent[0] * partSize[1] * step[1]);
subOrigin[2] = origin[2] + (zExtent[0] * partSize[2] * step[2]);
// Create a new view with new size and file IDs
delete this->view;
this->view = new VPICView(this->rank, this->totalRank, this->global);
this->view->initialize(
this->currentTimeStep,
subLayoutSize,
subLayoutID,
this->global.getPartSize(),
subOrigin,
this->global.getPhysicalStep());
for (int i = 0; i < subLayoutSize[0]; i++) {
for (int j = 0; j < subLayoutSize[1]; j++)
delete [] subLayoutID[i][j];
delete [] subLayoutID[i];
}
delete [] subLayoutID;
}
//////////////////////////////////////////////////////////////////////////////
//
// Load the variable data for the given time step for this processor
// Each processor has many file parts which supply pieces of data
// Have each file part load into the overall data block by using its
// offset into that data block. Each data part has a set format but
// in order to do different time steps, change the name of the file
// which is to be accessed
//
//////////////////////////////////////////////////////////////////////////////
void VPICDataSet::loadVariableData(
float* varData,
int varOffset,
int* localDim,
int timeStep,
int variable,
int component)
{
this->currentTimeStep = timeStep;
this->view->loadVariableData(varData, varOffset,
localDim, timeStep, variable, component);
}
//////////////////////////////////////////////////////////////////////////////
//
// Access methods
//
//////////////////////////////////////////////////////////////////////////////
void VPICDataSet::getLayoutSize(int size[])
{
int* layoutSize = this->global.getLayoutSize();
for (int dim = 0; dim < DIMENSION; dim++)
size[dim] = layoutSize[dim];
}
//////////////////////////////////////////////////////////////////////////////
//
// Is this processor used to render the current view
//
//////////////////////////////////////////////////////////////////////////////
int VPICDataSet::getProcessorUsed()
{
if (this->view->getNumberOfParts() == 0)
return 0;
else
return 1;
}
//////////////////////////////////////////////////////////////////////////////
//
// Print information about the data set
//
//////////////////////////////////////////////////////////////////////////////
void VPICDataSet::PrintSelf(ostream& os, int indent)
{
if (this->rank == 0) {
os << endl;
this->global.PrintSelf(os, indent);
}
}
|