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
|
// ************************************************************************* //
// avtFVCOMParticleFileFormat.C //
// ************************************************************************* //
#include <avtFVCOMParticleFileFormat.h>
#include <avtMTSDFileFormatInterface.h>
#include <avtTypes.h>
#include <string>
#include <vtkFloatArray.h>
#include <vtkUnstructuredGrid.h>
#include <vtkCellArray.h>
#include <vtkPoints.h>
#include <vtkCellType.h>
#include <avtDatabaseMetaData.h>
#include <DebugStream.h>
#include <InvalidVariableException.h>
#include <NETCDFFileObject.h>
#include "vtk_netcdf.h"
using std::string;
// ****************************************************************************
// Method: avtFVCOMParticleFileFormat::Identify
//
// Purpose:
// This method checks to see if the file is an FVCOM file.
//
// Arguments:
// fileObject : The file to check.
//
// Returns: True if the file is a particle file; False otherwise.
//
// Note:
//
// Programmer: David Stuebe
// Creation: Thu May 4 16:18:57 PST 2006
//
// Modifications:
//
// ****************************************************************************
bool
avtFVCOMParticleFileFormat::Identify(NETCDFFileObject *fileObject)
{
bool isFVCOM = false;
//
// Use the fileObject to look for something in the file that will make us
// believe that it is a FVCOM file. The check can be as complex as you want
// but it should not return true unless this really is an FVCOM file.
//
std::string source;
if(fileObject->ReadStringAttribute("source", source))
{
// isFVCOM = strcmp("ParticleFVCOM",source.c_str() )==0;
if(strncmp("ParticleFVCOM",source.c_str(),13 )==0 ||
strncmp("OFFLINE_FVCOM",source.c_str(),13 )==0)
isFVCOM=true;
}
return isFVCOM;
}
// ****************************************************************************
// Method: avtFVCOMParticleFileFormat::CreateInterface
//
// Purpose:
// Creates the file format interface for this reader.
//
// Programmer: David Stuebe
// Creation: Thu May 4 16:18:57 PST 2006
//
// Modifications:
// Jeremy Meredith, Thu Jan 28 12:28:07 EST 2010
// MTSD now accepts grouping multiple files into longer sequences, so
// its interface has changed to accept both a number of timestep groups
// and a number of blocks.
//
// ****************************************************************************
avtFileFormatInterface *
avtFVCOMParticleFileFormat::CreateInterface(NETCDFFileObject *f,
const char *const *list, int nList, int nBlock)
{
int nTimestepGroups = nList / nBlock;
avtMTSDFileFormat ***ffl = new avtMTSDFileFormat**[nTimestepGroups];
for (int i = 0 ; i < nTimestepGroups ; i++)
{
ffl[i] = new avtMTSDFileFormat*[nBlock];
for (int j = 0 ; j < nBlock ; j++)
{
ffl[i][j] = new avtFVCOMParticleFileFormat(list[i*nBlock+j],
(i==0) ? f : NULL);
}
}
return new avtMTSDFileFormatInterface(ffl, nTimestepGroups, nBlock);
}
// ****************************************************************************
// Method: avtFVCOM constructor
//
// Programmer: David Stuebe
// Creation: Thu May 18 08:39:01 PDT 2006
//
// ****************************************************************************
avtFVCOMParticleFileFormat::avtFVCOMParticleFileFormat(const char *filename) :
avtMTSDFileFormat(&filename,1)
{
fileObject = new NETCDFFileObject(filename);
}
avtFVCOMParticleFileFormat::avtFVCOMParticleFileFormat(const char *filename,
NETCDFFileObject *f) : avtMTSDFileFormat(&filename,1)
{
fileObject = f;
}
// ****************************************************************************
// Method: avtFVCOMParticleFileFormat::~avtFVCOMParticleFileFormat
//
// Purpose:
// Destructor for the avtFVCOMParticleFileFormat class.
//
// Programmer: David Stuebe
// Creation: Thu May 4 16:18:57 PST 2006
//
// Modifications:
//
// ****************************************************************************
avtFVCOMParticleFileFormat::~avtFVCOMParticleFileFormat()
{
delete fileObject;
}
// ****************************************************************************
// Method: avtEMSTDFileFormat::GetNTimesteps
//
// Purpose:
// Tells the rest of the code how many timesteps there are in this file.
//
// Programmer: David Stuebe
// Creation: Thu May 18 08:39:01 PDT 2006
//
// ****************************************************************************
int
avtFVCOMParticleFileFormat::GetNTimesteps(void)
{
const char *mName = "avtFVCOMParticleFileObject::GetNTimesteps: ";
debug4 << mName << endl;
size_t ntimesteps;
int status, time_id, ncid;
ncid=fileObject->GetFileHandle();
if (ncid == -1)
{
std::string msg("Could not get file handle in avtParticleFileFormat::GetTimes");
EXCEPTION1(ImproperUseException, msg);
}
status = nc_inq_dimid(ncid, "time", &time_id);
if (status != NC_NOERR) fileObject-> HandleError(status);
status = nc_inq_dimlen(ncid, time_id, &ntimesteps);
if (status != NC_NOERR) fileObject-> HandleError(status);
return ntimesteps;
}
// ****************************************************************************
// Method: avtFVCOMReader::GetTimes
//
// Purpose:
// Returns the times in the file.
//
// Arguments:
// t : The times to be returned.
//
// Programmer: David Stuebe
// Creation: Thu May 18 08:39:01 PDT 2006
//
// Modifications:
//
// ****************************************************************************
void
avtFVCOMParticleFileFormat::GetTimes(doubleVector &t)
{
const char *mName = "avtFVCOMParticleFileObject::GetTimes: ";
debug4 << mName << endl;
int ncid;
ncid=fileObject->GetFileHandle();
if (ncid == -1)
{
std::string msg("Could not get file handle in avtParticleFileFormat::GetTimes");
EXCEPTION1(ImproperUseException, msg);
}
char varname[NC_MAX_NAME+1];
nc_type vartype;
int ndims;
int dims[NC_MAX_VAR_DIMS];
int varnatts;
int time_id;
int status = nc_inq_varid (ncid, "time", &time_id);
if (status != NC_NOERR)
{
fileObject-> HandleError(status);
debug4 << "Could not find variable: time" << endl;
return;
}
// Now get variable type!
status = nc_inq_var(ncid, time_id, varname, &vartype, &ndims,
dims, &varnatts);
if (status != NC_NOERR) fileObject-> HandleError(status);
std::string timeunits;
if(fileObject->ReadStringAttribute("time", "units", timeunits))
{
debug4<< "timeunits: " << timeunits << endl;
}
else
debug4<< "timeunits+++ could not get" << endl;
double convert=1;
if (strncmp(timeunits.c_str(), "seconds",7)==0)
convert=convert/double(60*60*24);
size_t ntimesteps;
int ntime_id;
status = nc_inq_dimid(ncid, "time", &ntime_id);
if (status != NC_NOERR) fileObject-> HandleError(status);
status = nc_inq_dimlen(ncid, ntime_id, &ntimesteps);
if (status != NC_NOERR) fileObject-> HandleError(status);
if (ndims==1 && vartype == NC_FLOAT)
{
float *tf = new float[ntimesteps+1];
fileObject->ReadVariableInto("time",FLOATARRAY_TYPE , tf);
for(int n=0; n<ntimesteps; ++n)
{
t.push_back(convert * double(tf[n]));
}
delete [] tf;
}
else
{
debug4 << mName << "Wrong dimension for variable Time" << endl;
}
}
// ****************************************************************************
// Method: avtFVCOMReader::GetCycles
//
// Purpose:
// Returns the time cycle in the file.
//
// Arguments:
// cyc : The times cycle to be returned.
//
// Programmer: David Stuebe
// Creation: Thu May 18 08:39:01 PDT 2006
//
// Modifications:
//
// ****************************************************************************
void
avtFVCOMParticleFileFormat::GetCycles(intVector &cyc)
{
const char *mName = "avtFVCOMParticleFileObject::GetCycles: ";
debug4 << mName << endl;
int ncid;
ncid=fileObject->GetFileHandle();
size_t ntimesteps;
int time_id;
int status = nc_inq_dimid(ncid, "time", &time_id);
if (status != NC_NOERR) fileObject-> HandleError(status);
status = nc_inq_dimlen(ncid, time_id, &ntimesteps);
if (status != NC_NOERR) fileObject-> HandleError(status);
char varname[NC_MAX_NAME+1];
nc_type vartype;
int varndims;
int vardims[NC_MAX_VAR_DIMS];
int varnatts;
int cycle_id;
status = nc_inq_varid (ncid, "cycle", &cycle_id);
if (status != NC_NOERR)
{
fileObject-> HandleError(status);
debug4 << "Could not find variable: cycle" << endl;
return;
}
// Now get variable type!
status = nc_inq_var(ncid, cycle_id, varname, &vartype, &varndims,
vardims, &varnatts);
if (status != NC_NOERR) fileObject-> HandleError(status);
if (varndims != 1 )
{
debug4 << mName << "Cycles has the wrong dimensions" << endl;
}
else if (varndims == 1)
{
if(vartype == NC_INT)
{
debug4 << "IINT returned to cyc as NC_INT" << endl;
int *ci = new int[ntimesteps+1];
fileObject->ReadVariableInto("iint", INTEGERARRAY_TYPE, ci);
for(int n=0; n<ntimesteps; ++n)
{
cyc.push_back(ci[n]);
}
delete [] ci;
}
else if(vartype == NC_FLOAT )
{
debug4 << "iint is float: Returned to cyc as INT" << endl;
float *cf = new float[ntimesteps+1];
fileObject->ReadVariableInto("cycle", FLOATARRAY_TYPE, cf);
for(int n=0; n<ntimesteps; ++n)
{
cyc.push_back(int(cf[n]));
}
delete [] cf;
}
}
else
{
debug4 << "Could not return cycles: Wrong variable type" << endl;
}
}
// ****************************************************************************
// Method: avtFVCOMParticleFileFormat::FreeUpResources
//
// Purpose:
// When VisIt is done focusing on a particular timestep, it asks that
// timestep to free up any resources (memory, file descriptors) that
// it has associated with it. This method is the mechanism for doing
// that.
//
// Programmer: David Stuebe
// Creation: Thu May 18 08:39:01 PDT 2006
//
// ****************************************************************************
void
avtFVCOMParticleFileFormat::FreeUpResources(void)
{
debug4 << "avtFVCOMParticleFileFormat::FreeUpResources: closing file." << endl;
fileObject->Close();
// Free any resources that you allocate per time step.
// Since multiple time steps are in the file, it no longer really makes
// sense to close the file here since, if you did, VisIt would open and close
// the file when reading each time step.
}
// ****************************************************************************
// Method: avtFVCOMParticleFileFormat::PopulateDatabaseMetaData
//
// Purpose:
// This database meta-data object is like a table of contents for the
// file. By populating it, you are telling the rest of VisIt what
// information it can request from you.
//
// Programmer: David Stuebe
// Creation: Thu May 18 08:39:01 PDT 2006
//
// Modifications:
//
// Mark C. Miller, Wed Apr 22 13:48:13 PDT 2009
// Changed interface to DebugStream to obtain current debug level.
// ****************************************************************************
void
avtFVCOMParticleFileFormat::PopulateDatabaseMetaData(avtDatabaseMetaData *md, int)
{
const char *mName = "avtFVCOMParticleFileObject::PopulateDatabaseMetaData: ";
debug4 << mName << endl;
int ncid = fileObject->GetFileHandle();
int nVars, nDims, nGlobalAtts, unlimitedDimension;
int status = nc_inq(ncid, &nDims, &nVars, &nGlobalAtts, &unlimitedDimension);
if(status != NC_NOERR) fileObject-> HandleError(status);
if(DebugStream::Level4())
fileObject->PrintFileContents(DebugStream::Stream4());
// Assemble a database title.
std::string comment(GetType()), titleString, source,
modeler,institution;
if(fileObject->ReadStringAttribute("title", titleString))
{
comment += (std::string(" database: title=") + titleString);
if(fileObject->ReadStringAttribute("source", source))
comment += (std::string(", source=") + source);
if(fileObject->ReadStringAttribute("institution", institution))
comment += (std::string(", institution=") + institution);
if(fileObject->ReadStringAttribute("modeler", modeler))
comment += (std::string(", modeler=") + modeler);
md->SetDatabaseComment(comment);
}
std::string mesh_name("Drifter");
avtMeshMetaData *mmd = new avtMeshMetaData(mesh_name,
1, 1, 1, 0, 3, 0, AVT_UNSTRUCTURED_MESH);
std::string xUnits, xLabel, yUnits, yLabel, zUnits,zLabel;
fileObject->ReadStringAttribute("x", "units", xUnits);
fileObject->ReadStringAttribute("x", "long_name", xLabel);
fileObject->ReadStringAttribute("y", "units", yUnits);
fileObject->ReadStringAttribute("y", "long_name", yLabel);
fileObject->ReadStringAttribute("z", "units", zUnits);
fileObject->ReadStringAttribute("z", "long_name", zLabel);
mmd->xUnits = xUnits;
mmd->xLabel = xLabel;
mmd->yUnits = yUnits;
mmd->yLabel = yLabel;
mmd->zUnits = zUnits;
mmd->zLabel = zLabel;
md->Add(mmd);
debug4 << mName << "Added Drifter Mesh to MetaData" << endl;
for(int i = 0; i < nVars; ++i)
{
int VarnDims, VarnAtts, VarDimIDs[NC_MAX_VAR_DIMS];
char VarName[NC_MAX_NAME+1];
nc_type VarType;
status = nc_inq_var(ncid, i, VarName, &VarType, &VarnDims,
VarDimIDs, &VarnAtts);
if (status != NC_NOERR) fileObject-> HandleError(status);
if (VarnDims > 1)
{
avtScalarMetaData *smd = new avtScalarMetaData(VarName, "Drifter", AVT_NODECENT);
smd->hasUnits = fileObject->ReadStringAttribute(VarName, "units", smd->units);
md->Add(smd);
}
}
debug4 << mName << "end" << endl;
}
// ****************************************************************************
// Method: avtFVCOMParticleFileFormat::GetMesh
//
// Purpose:
// Gets the mesh associated with this file. The mesh is returned as a
// derived type of vtkDataSet (ie vtkRectilinearGrid, vtkStructuredGrid,
// vtkUnstructuredGrid, etc).
//
// Arguments:
// timestate The index of the timestate. If GetNTimesteps returned
// 'N' time steps, this is guaranteed to be between 0 and N-1.
// meshname The name of the mesh of interest. This can be ignored if
// there is only one mesh.
//
// Programmer: David Stuebe
// Creation: Thu May 18 08:39:01 PDT 2006
//
// ****************************************************************************
vtkDataSet *
avtFVCOMParticleFileFormat::GetMesh(int timestate, const char *mesh)
{
const char *mName = "avtFVCOMParticleFileFormat::GetMesh: ";
debug4 << mName << "meshname=" << mesh << " timestate="
<< timestate << endl;
vtkDataSet *retval = 0;
// Bail out if we can't get the file handle.
int ncid = fileObject->GetFileHandle();
if(ncid == -1)
{
EXCEPTION1(InvalidVariableException, mesh);
}
if(strcmp(mesh, "Drifter") == 0)
{
int status;
size_t nlag;
int nlag_id;
status = nc_inq_dimid(ncid, "nlag", &nlag_id);
if (status != NC_NOERR) fileObject-> HandleError(status);
status = nc_inq_dimlen(ncid, nlag_id, &nlag);
if (status != NC_NOERR) fileObject-> HandleError(status);
debug4 << "nlag = " << nlag << endl;
float *x = new float[nlag];
float *y = new float[nlag];
float *z = new float[nlag];
// Fill x,y,z from NETCDF file
// Need to specify time step to read SSH: timestate
debug4 << "timestate=" << timestate << endl;
size_t starts[]={timestate,0};
size_t counts[]={1, nlag};
ptrdiff_t stride[]={1,1};
int x_id, y_id,z_id;
//READ X
status = nc_inq_varid (fileObject->GetFileHandle(), "x", &x_id);
if (status != NC_NOERR) fileObject-> HandleError(status);
// debug4 << "Status="<< status <<", var_id="<< var_id << endl;
status = nc_get_vars_float(fileObject->GetFileHandle(),x_id,
starts, counts, stride, x);
if (status != NC_NOERR) fileObject-> HandleError(status);
//READ Y
status = nc_inq_varid (fileObject->GetFileHandle(), "y", &y_id);
if (status != NC_NOERR) fileObject-> HandleError(status);
// debug4 << "Status="<< status <<", var_id="<< var_id << endl;
status = nc_get_vars_float(fileObject->GetFileHandle(),y_id,
starts, counts, stride, y);
if (status != NC_NOERR) fileObject-> HandleError(status);
// READ Z
status = nc_inq_varid (fileObject->GetFileHandle(), "z", &z_id);
if (status != NC_NOERR) fileObject-> HandleError(status);
// debug4 << "Status="<< status <<", var_id="<< var_id << endl;
status = nc_get_vars_float(fileObject->GetFileHandle(),z_id,
starts, counts, stride, z);
if (status != NC_NOERR) fileObject-> HandleError(status);
debug4 << "Adding points to vtkPoints: HERE I AM" << endl;
// Store the points in the vtkPoints object.
vtkPoints *p = vtkPoints::New();
p->SetNumberOfPoints(nlag);
for (int i = 0 ; i < nlag ; i++)
{
p->SetPoint(i, x[i], y[i], z[i]);
debug4 << "[" << x[i] << ", " << y[i] << ", " << z[i] << "]" << endl;
}
delete [] x;
delete [] y;
delete [] z;
// Create an unstructured grid of "vertex cells" that use the
// vtkPoints that we created.
vtkUnstructuredGrid *ugrid = vtkUnstructuredGrid::New();
ugrid->SetPoints(p);
p->Delete();
ugrid->Allocate(nlag);
vtkIdType onevertex[1];
for (int i = 0 ; i < nlag ; i++)
{
onevertex[0] = i;
ugrid->InsertNextCell(VTK_VERTEX, 1, onevertex);
}
return ugrid;
}
else
{
EXCEPTION1(InvalidVariableException, mesh);
}
return retval;
}
// ****************************************************************************
// Method: avtFVCOMParticleFileFormat::GetVar
//
// Purpose:
// Gets a scalar variable associated with this file. Although VTK has
// support for many different types, the best bet is vtkFloatArray, since
// that is supported everywhere through VisIt.
//
// Arguments:
// timestate The index of the timestate. If GetNTimesteps returned
// 'N' time steps, this is guaranteed to be between 0 and N-1.
// varname The name of the variable requested.
//
// Programmer: David Stuebe
// Creation: Thu May 18 08:39:01 PDT 2006
//
// ****************************************************************************
vtkDataArray *
avtFVCOMParticleFileFormat::GetVar(int timestate, const char *varname)
{
const char *mName = "avtFVCOMParticleFileFormat::GetMesh: ";
debug4 << mName << "Varname=" << varname << " timestate="
<< timestate << endl;
// Bail out if we can't get the file handle.
int ncid = fileObject->GetFileHandle();
if(ncid == -1)
{
EXCEPTION1(InvalidVariableException, varname);
}
int status;
size_t nlag;
int nlag_id;
status = nc_inq_dimid(ncid, "nlag", &nlag_id);
if (status != NC_NOERR) fileObject-> HandleError(status);
status = nc_inq_dimlen(ncid, nlag_id, &nlag);
if (status != NC_NOERR) fileObject-> HandleError(status);
size_t starts[]={timestate,0};
size_t counts[]={1, nlag};
ptrdiff_t stride[]={1,1};
int s1_id;
float *s1 = new float[nlag];
status = nc_inq_varid (ncid, varname, &s1_id);
if (status != NC_NOERR) fileObject-> HandleError(status);
status = nc_get_vars_float(fileObject->GetFileHandle(),s1_id,
starts, counts, stride, s1);
if (status != NC_NOERR) fileObject-> HandleError(status);
// Put the data into the vtkFloatArray
vtkFloatArray *rv = vtkFloatArray::New();
rv->SetNumberOfTuples(nlag);
for (int i = 0 ; i < nlag ; i++)
{
rv->SetTuple1(i, s1[i]); // you must determine value for ith entry.
}
delete [] s1;
return rv;
}
// ****************************************************************************
// Method: avtFVCOMParticleFileFormat::GetVectorVar
//
// Purpose:
// Gets a vector variable associated with this file. Although VTK has
// support for many different types, the best bet is vtkFloatArray, since
// that is supported everywhere through VisIt.
//
// Arguments:
// timestate The index of the timestate. If GetNTimesteps returned
// 'N' time steps, this is guaranteed to be between 0 and N-1.
// var The name of the variable requested.
//
// Programmer: David Stuebe
// Creation: Thu May 18 08:39:01 PDT 2006
//
// ****************************************************************************
vtkDataArray *
avtFVCOMParticleFileFormat::GetVectorVar(int timestate, const char *var)
{
EXCEPTION1(InvalidVariableException, var);
// YOU MUST IMPLEMENT THIS IF YOU HAVE VECTOR VARIABLES.
//
// If you have a file format where variables don't apply (for example a
// strictly polygonal format like the STL (Stereo Lithography) format,
// then uncomment the code below.
//
// EXCEPTION1(InvalidVariableException, var);
//
//
// If you do have a vector variable, here is some code that may be helpful.
//
// int ncomps = YYY; // This is the rank of the vector - typically 2 or 3.
// int ntuples = XXX; // this is the number of entries in the variable.
// vtkFloatArray *rv = vtkFloatArray::New();
// int ucomps = (ncomps == 2 ? 3 : ncomps);
// rv->SetNumberOfComponents(ucomps);
// rv->SetNumberOfTuples(ntuples);
// float *one_entry = new float[ucomps];
// for (int i = 0 ; i < ntuples ; i++)
// {
// int j;
// for (j = 0 ; j < ncomps ; j++)
// one_entry[j] = ...
// for (j = ncomps ; j < ucomps ; j++)
// one_entry[j] = 0.;
// rv->SetTuple(i, one_entry);
// }
//
// delete [] one_entry;
// return rv;
//
}
|