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 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
|
/*****************************************************************************
*
* Copyright (c) 2000 - 2010, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-400124
* 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 <avtADAPTFileFormat.h>
#include <NETCDFFileObject.h>
#include "vtk_netcdf.h"
#include <map>
#include <avtDatabaseMetaData.h>
#include <avtSTSDFileFormatInterface.h>
#include <vtkRectilinearGrid.h>
#include <vtkStructuredGrid.h>
#include <vtkUnsignedCharArray.h>
#include <vtkShortArray.h>
#include <vtkIntArray.h>
#include <vtkLongArray.h>
#include <vtkFloatArray.h>
#include <vtkDoubleArray.h>
#include <InvalidVariableException.h>
#include <ImproperUseException.h>
#include <Expression.h>
#include <visit-config.h>
#include <DebugStream.h>
// ****************************************************************************
// Method: avtADAPTFileFormat::Identify
//
// Purpose:
// Identifies the file as an ADAPT file.
//
// Arguments:
// fileObject : The file that we'll check.
//
// Returns: True if the file is an ADAPT file; False otherwise.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:42:48 PDT 2005
//
// Modifications:
//
// ****************************************************************************
bool
avtADAPTFileFormat::Identify(NETCDFFileObject *fileObject)
{
bool isADAPT = false;
std::string create_code;
if(fileObject->ReadStringAttribute("create_code", create_code))
{
isADAPT = create_code == "ADAPT" ||
create_code == "CsGribSupport" ||
create_code == "getGrid" ||
create_code == "matExtractor";
}
return isADAPT;
}
// ****************************************************************************
// Method: avtADAPTFileFormat::CreateInterface
//
// Purpose:
// Creates an STSD file format interface for the specified files.
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:43:37 PDT 2005
//
// Modifications:
//
// ****************************************************************************
avtFileFormatInterface *
avtADAPTFileFormat::CreateInterface(NETCDFFileObject *f,
const char *const *list, int nList, int nBlock)
{
avtSTSDFileFormat ***ffl = new avtSTSDFileFormat**[nList];
int nTimestep = nList / nBlock;
for (int i = 0 ; i < nTimestep ; i++)
{
ffl[i] = new avtSTSDFileFormat*[nBlock];
for (int j = 0 ; j < nBlock ; j++)
{
if(f != 0)
{
ffl[i][j] = new avtADAPTFileFormat(list[i*nBlock + j], f);
f = 0;
}
else
ffl[i][j] = new avtADAPTFileFormat(list[i*nBlock + j]);
}
}
return new avtSTSDFileFormatInterface(ffl, nTimestep, nBlock);
}
// ****************************************************************************
// Method: avtADAPTFileFormat::avtADAPTFileFormat
//
// Purpose:
// Constructor for the avtADAPTFileFormat class.
//
// Arguments:
// filename : The name of the file to read.
// f : A pointer to an object that is already reading the file.
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:44:01 PDT 2005
//
// Modifications:
//
// ****************************************************************************
avtADAPTFileFormat::avtADAPTFileFormat(const char *filename) :
avtSTSDFileFormat(filename)
{
fileObject = new NETCDFFileObject(filename);
meshFile = 0;
}
avtADAPTFileFormat::avtADAPTFileFormat(const char *filename,
NETCDFFileObject *f) : avtSTSDFileFormat(filename)
{
fileObject = f;
meshFile = 0;
}
// ****************************************************************************
// Method: avtADAPTFileFormat::~avtADAPTFileFormat
//
// Purpose:
// Destructor for the avtADAPTFileFormat class.
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:44:46 PDT 2005
//
// Modifications:
//
// ****************************************************************************
avtADAPTFileFormat::~avtADAPTFileFormat()
{
FreeUpResources();
delete fileObject;
delete meshFile;
}
// ****************************************************************************
// Method: avtADAPTFileFormat::ActivateTimestep
//
// Purpose:
// Activates the time step.
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:45:09 PDT 2005
//
// Modifications:
//
// ****************************************************************************
void
avtADAPTFileFormat::ActivateTimestep()
{
debug4 << "avtADAPTFileFormat::ActiveTimestep" << endl;
}
// ****************************************************************************
// Method: avtADAPTFileFormat::FreeUpResources
//
// Purpose:
// Frees up resources like memory and file descriptors.
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:45:27 PDT 2005
//
// Modifications:
//
// ****************************************************************************
void
avtADAPTFileFormat::FreeUpResources()
{
debug4 << "avtADAPTFileFormat::FreeUpResources" << endl;
fileObject->Close();
if(meshFile != 0)
meshFile->Close();
}
// ****************************************************************************
// Method: avtADAPTFileFormat::GetGridFileName
//
// Purpose:
// Gets the name of the grid file.
//
// Returns: The name of the grid file to open.
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:45:48 PDT 2005
//
// Modifications:
//
// ****************************************************************************
std::string
avtADAPTFileFormat::GetGridFileName()
{
std::string grid_file;
if(fileObject->ReadStringAttribute("grid_file", grid_file))
{
// Get the filename portion of the grid_file string.
std::string::size_type pos = grid_file.rfind("/");
if(pos != std::string::npos)
grid_file = grid_file.substr(pos + 1, grid_file.size() - pos - 1);
// Get the path to the filename that we're opening.
std::string path(filename);
pos = path.rfind(VISIT_SLASH_STRING);
if(pos != std::string::npos)
{
path = path.substr(0, pos);
if(path.size() > 0 && path[path.size()-1] != VISIT_SLASH_CHAR)
path += VISIT_SLASH_STRING;
}
else
path = "";
grid_file = path + grid_file;
}
return grid_file;
}
// ****************************************************************************
// Method: avtADAPTFileObject::GetMeshFile
//
// Purpose:
// Returns a pointer to the mesh file and first creates a handle to if,
// if needed.
//
// Returns: A pointer to the mesh file object.
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:46:28 PDT 2005
//
// Modifications:
//
// ****************************************************************************
NETCDFFileObject *
avtADAPTFileFormat::GetMeshFile()
{
if(meshFile == 0)
meshFile = new NETCDFFileObject(GetGridFileName().c_str());
return meshFile;
}
// ****************************************************************************
// Method: avtADAPTFileFormat::PopulateDatabaseMetaData
//
// Purpose:
// Populates the metadata object with the mesh and variables present in
// the database
//
// Arguments:
// md : The database object to populate.
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:47:31 PDT 2005
//
// Modifications:
// Jeremy Meredith, Thu Aug 25 12:55:29 PDT 2005
// Added group origin to mesh metadata constructor.
//
// Mark C. Miller, Wed Apr 22 13:48:13 PDT 2009
// Changed interface to DebugStream to obtain current debug level.
// ****************************************************************************
void
avtADAPTFileFormat::PopulateDatabaseMetaData(avtDatabaseMetaData *md)
{
const char *mName = "avtADAPTFileFormat::PopulateDatabaseMetaData: ";
debug4 << mName << endl;
if(DebugStream::Level4())
fileObject->PrintFileContents(DebugStream::Stream4());
// Assemble a database title.
std::string comment(GetType()), titleString, create_version,
create_date_time;
if(fileObject->ReadStringAttribute("title", titleString))
{
comment += (std::string(" database: title=") + titleString);
if(fileObject->ReadStringAttribute("create_version", create_version))
comment += (std::string(", create_version=") + create_version);
if(fileObject->ReadStringAttribute("create_date_time", create_date_time))
comment += (std::string(", create_date_time=") + create_date_time);
md->SetDatabaseComment(comment);
}
//
// Add the main mesh.
//
std::string meshName("main");
avtMeshMetaData *mmd = new avtMeshMetaData(meshName,
1, 1, 1, 0, 3, 3, AVT_CURVILINEAR_MESH);
// Get the units for the main mesh from the grid file.
std::string xUnits, xLabel, yUnits, yLabel;
GetMeshFile()->ReadStringAttribute("x", "units", xUnits);
GetMeshFile()->ReadStringAttribute("x", "long_name", xLabel);
GetMeshFile()->ReadStringAttribute("y", "units", yUnits);
GetMeshFile()->ReadStringAttribute("y", "long_name", yLabel);
GetMeshFile()->ReadStringAttribute("vert", "long_name", mmd->zLabel);
mmd->xUnits = xUnits;
mmd->xLabel = xLabel;
mmd->yUnits = yUnits;
mmd->yLabel = yLabel;
md->Add(mmd);
// Get the number of nodes in each dimension so we can determine which
// variables belong to the main mesh. We can also use it to determine
// node/zone centering.
size_t sizes[3];
bool haveAllSizes = true;
int i;
debug4 << mName << " meshSize={";
for(i = 0; i < 3; ++i)
{
int status = nc_inq_dimlen(fileObject->GetFileHandle(), i, &sizes[i]);
if(status != NC_NOERR)
{
haveAllSizes = false;
fileObject->HandleError(status);
}
debug4 << ", " << sizes[i];
}
debug4 << "}" << endl;
//
// If we have the mesh sizes then iterate over the variables in the file
// and add those that have the same dimensions as the "main" mesh.
//
if(haveAllSizes)
{
int status, nDims, nVars, nGlobalAtts, unlimitedDimension;
status = nc_inq(fileObject->GetFileHandle(), &nDims, &nVars, &nGlobalAtts,
&unlimitedDimension);
if(status != NC_NOERR)
{
fileObject->HandleError(status);
return;
}
// Get the sizes of all dimensions.
size_t *dimSizes = new size_t[nDims];
for(i = 0; i < nDims; ++i)
{
int status = nc_inq_dimlen(fileObject->GetFileHandle(), i, &dimSizes[i]);
if(status != NC_NOERR)
fileObject->HandleError(status);
}
bool addedMain2d = false;
std::map<std::string, bool> componentExists;
for(i = 0; i < nVars; ++i)
{
char varname[NC_MAX_NAME+1];
nc_type vartype;
int varndims;
int vardims[NC_MAX_VAR_DIMS];
int varnatts;
if((status = nc_inq_var(fileObject->GetFileHandle(), i, varname,
&vartype, &varndims,
vardims, &varnatts)) == NC_NOERR)
{
debug4 << mName << varname << " size={";
for(int j = 0; j < varndims; ++j)
{
if(j > 0)
debug4 << ", ";
debug4 << dimSizes[vardims[j]];
}
debug4 << "}\n";
if(varndims == 2)
{
avtCentering centering = AVT_ZONECENT;
if((sizes[0] - dimSizes[vardims[1]]) == 0 &&
(sizes[1] - dimSizes[vardims[0]]) == 0)
{
centering = AVT_NODECENT;
}
avtScalarMetaData *smd = new avtScalarMetaData(varname,
"main2d", centering);
smd->hasUnits = fileObject->ReadStringAttribute(
varname, "units", smd->units);
md->Add(smd);
addedMain2d = true;
}
else if(varndims == 3)
{
componentExists[varname] = true;
avtCentering centering = AVT_ZONECENT;
if((sizes[0] - dimSizes[vardims[2]]) == 0 &&
(sizes[1] - dimSizes[vardims[1]]) == 0 &&
(sizes[2] - dimSizes[vardims[0]]) == 0)
{
centering = AVT_NODECENT;
}
avtScalarMetaData *smd = new avtScalarMetaData(varname,
meshName, centering);
smd->hasUnits = fileObject->ReadStringAttribute(
varname, "units", smd->units);
md->Add(smd);
}
else
{
debug4 << mName << varname << " will not be plottable "
<< "because it is not defined on the \"main\" mesh."
<< endl;
}
}
else
fileObject->HandleError(status);
}
delete [] dimSizes;
// If we referenced a 2D mesh then add it.
if(addedMain2d)
{
mmd = new avtMeshMetaData("main2d",
1, 1, 1, 0, 2, 2, AVT_RECTILINEAR_MESH);
mmd->xUnits = xUnits;
mmd->xLabel = xLabel;
mmd->yUnits = yUnits;
mmd->yLabel = yLabel;
md->Add(mmd);
}
// Check to see if certain variables exist. If they do then we can
// add expressions.
if(componentExists.find("u") != componentExists.end() &&
componentExists.find("v") != componentExists.end() &&
componentExists.find("w") != componentExists.end())
{
Expression *e = new Expression;
e->SetName("wind");
e->SetDefinition("{u,v,w}");
e->SetType(Expression::VectorMeshVar);
md->AddExpression(e);
}
if(componentExists.find("u_int") != componentExists.end() &&
componentExists.find("v_int") != componentExists.end() &&
componentExists.find("w_int") != componentExists.end())
{
Expression *e = new Expression;
e->SetName("interpolated_wind");
e->SetDefinition("{u_int,v_int,w_int}");
e->SetType(Expression::VectorMeshVar);
md->AddExpression(e);
}
}
}
// ****************************************************************************
// Method: avtADAPTFileFormat::GetMesh
//
// Purpose:
// Returns a dataset containing the specified mesh.
//
// Arguments:
// var : The name of the mesh to be returned.
//
// Returns: A pointer to the mesh.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:48:25 PDT 2005
//
// Modifications:
//
// ****************************************************************************
vtkDataSet *
avtADAPTFileFormat::GetMesh(const char *var)
{
const char *mName = "avtADAPTFileFormat::GetMesh: ";
debug4 << mName << "var=" << var << endl;
vtkDataSet *retval = 0;
bool isMain = strcmp(var, "main") == 0 ;
bool isMain2d = strcmp(var, "main2d") == 0 ;
if(isMain || isMain2d)
{
TypeEnum xt = NO_TYPE;
int xndims = 0, *xdims = 0;
float *xc = 0;
if(GetMeshFile()->InqVariable("x", &xt, &xndims, &xdims))
{
xc = new float[xdims[0]];
if(!GetMeshFile()->ReadVariableIntoAsFloat("x", xc))
{
debug4 << mName << "Could not read x coordinate from the "
<< "mesh file.\n";
delete [] xc;
xc = 0;
}
}
TypeEnum yt = NO_TYPE;
int yndims = 0, *ydims = 0;
float *yc = 0;
if(GetMeshFile()->InqVariable("y", &yt, &yndims, &ydims))
{
yc = new float[ydims[0]];
if(!GetMeshFile()->ReadVariableIntoAsFloat("y", yc))
{
debug4 << mName << "Could not read y coordinate from the "
<< "mesh file.\n";
delete [] yc;
yc = 0;
}
}
if(xc != 0 && yc != 0)
{
if(isMain2d)
retval = CreateMain2D(xc, xdims[0], yc, ydims[0]);
else
retval = CreateMain(xc, xdims[0], yc, ydims[0]);
}
// Free the coordinates.
delete [] xc;
delete [] yc;
// Free the dims
delete [] xdims;
delete [] ydims;
}
else
{
EXCEPTION1(InvalidVariableException, var);
}
return retval;
}
// ****************************************************************************
// Method: avtADAPTFileFormat::CreateMain2D
//
// Purpose:
// Creates the main 2D mesh
//
// Arguments:
// xc : The x coordinates to use.
// nx : The number of x coordinates.
// yc : The y coordinates to use.
// ny : The number of y coordinates.
//
// Returns: The main2d mesh or 0.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Wed Aug 17 17:59:18 PST 2005
//
// Modifications:
//
// ****************************************************************************
vtkDataSet *
avtADAPTFileFormat::CreateMain2D(const float *xc, int nx, const float *yc,
int ny)
{
const char *mName = "avtADAPTFileFormat::CreateMain2D";
//
// Populate the coordinates.
//
int dims[3];
dims[0] = nx;
dims[1] = ny;
dims[2] = 1;
const float *coordinate[3];
coordinate[0] = xc;
coordinate[1] = yc;
coordinate[2] = 0;
const char *coordLabels[3] = {"X coords", "Y coords", "Z coords"};
vtkFloatArray *coords[3];
for (int i = 0 ; i < 3 ; i++)
{
// Default number of components for an array is 1.
coords[i] = vtkFloatArray::New();
coords[i]->SetNumberOfTuples(dims[i]);
if(i < 2)
{
debug4 << mName << coordLabels[i] << " size=" << dims[i]
<< ", values = {";
for (int j = 0 ; j < dims[i] ; j++)
{
coords[i]->SetComponent(j, 0, coordinate[i][j]);
debug4 << ", " << coordinate[i][j];
}
debug4 << "}" << endl;
}
else
coords[i]->SetComponent(0, 0, 0.);
}
vtkRectilinearGrid *rgrid = vtkRectilinearGrid::New();
rgrid->SetDimensions(dims);
rgrid->SetXCoordinates(coords[0]);
coords[0]->Delete();
rgrid->SetYCoordinates(coords[1]);
coords[1]->Delete();
rgrid->SetZCoordinates(coords[2]);
coords[2]->Delete();
return rgrid;
}
// ****************************************************************************
// Method: avtADAPTFileFormat::CreateMain
//
// Purpose:
// Creates the main mesh, which is a curvilinear mesh that is displaced in
// Z by vert and zSfc.
//
// Arguments:
// xc : The x coordinates to use.
// nx : The number of x coordinates.
// yc : The y coordinates to use.
// ny : The number of y coordinates.
//
// Returns: The main mesh or 0.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Wed Aug 17 17:59:18 PST 2005
//
// Modifications:
//
// ****************************************************************************
vtkDataSet *
avtADAPTFileFormat::CreateMain(const float *xc, int nx, const float *yc,
int ny)
{
const char *mName = "avtADAPTFileFormat::CreateMain: ";
vtkDataSet *retval = 0;
debug4 << mName << endl;
// See if any transformations need to be done to the vert values before
// using them as Z values.
std::string pvc;
if(!GetMeshFile()->ReadStringAttribute(
"principal_vertical_coordinate", pvc))
{
debug4 << mName << "Could not read principal_vertical_coordinate "
<< "attribute" << endl;
return retval;
}
else
debug4 << mName << "PVC=" << pvc.c_str() << endl;
// Determine which arrays need to be read in for the height.
bool needzSfc = false;
bool needZ = false;
if(pvc == "sigmaZ")
needzSfc = true;
else if(pvc == "zAGL")
{
needzSfc = true;
needZ = true;
}
else if(pvc == "zMSL")
{
needzSfc = true;
needZ = true;
}
// Read the arrays that we need to create the height.
bool havezSfc = false;
TypeEnum zg = NO_TYPE;
int zSfcNdims, *zSfcDims = 0;
void *zSfc = 0;
if(needzSfc)
{
havezSfc = GetMeshFile()->ReadVariable("zSfc", &zg, &zSfcNdims,
&zSfcDims, &zSfc);
// Make sure that zSfc has the expected characteristics.
bool xDimsEqual = nx == zSfcDims[0];
bool yDimsEqual = ny == zSfcDims[1];
bool err = false;
if(!xDimsEqual)
{
debug4 << mName << "nx=" << nx
<< ", zSfcDims[0]="
<< zSfcDims[0]
<< " are not the same!" << endl;
err = true;
}
if(!yDimsEqual)
{
debug4 << mName << "ny=" << ny
<< ", zSfcDims[1]="
<< zSfcDims[1]
<< " are not the same!" << endl;
err = true;
}
if(zSfcNdims != 2)
{
debug4 << mName << "zSfc did not have 2 dimensions." << endl;
err = true;
}
if(havezSfc && err)
{
debug4 << mName << "zSfc did not have the expected "
<< "characteristics." << endl;
free_void_mem(zSfc, zg);
zSfc = 0;
havezSfc = false;
}
}
bool haveZ = false;
TypeEnum zt = NO_TYPE;
int zNdims, *zDims = 0;
void *z = 0;
if(needZ)
{
haveZ = GetMeshFile()->ReadVariable("z", &zt, &zNdims, &zDims, &z);
if(!haveZ)
{
debug4 << mName << "z could not be read." << endl;
}
}
//
// Create the mesh differently based on the type of
// principal_vertical_coordinate.
//
bool unsupportedPVC = false;
if(pvc == "sigmaZ")
{
TypeEnum ztt = NO_TYPE;
int zTopNdims, *zTopDims = 0;
void *zTop = 0;
bool haveZTop = GetMeshFile()->ReadVariable("zTop",
&ztt, &zTopNdims, &zTopDims, &zTop);
TypeEnum vertt = NO_TYPE;
int vertndims = 0, *vertdims = 0;
float *vertc = 0;
if(GetMeshFile()->InqVariable("vert", &vertt, &vertndims, &vertdims))
{
vertc = new float[vertdims[0]];
if(!GetMeshFile()->ReadVariableIntoAsFloat("vert", vertc))
{
debug4 << mName << "Could not read vert coordinate from the "
<< "mesh file.\n";
}
}
if(haveZTop && havezSfc && vertc != 0 &&
ztt == DOUBLEARRAY_TYPE &&
zg == DOUBLEARRAY_TYPE)
{
double ZT = ((double*)zTop)[0];
double *ZSFC = (double*)zSfc;
debug4 << mName << "Applying sigmaZ" << endl;
// Create the curvilinear mesh.
vtkStructuredGrid *sgrid = vtkStructuredGrid::New();
vtkPoints *points = vtkPoints::New();
sgrid->SetPoints(points);
points->Delete();
// Populate the points array
int dims[3];
dims[0] = nx;
dims[1] = ny;
dims[2] = vertdims[0];
sgrid->SetDimensions(dims);
points->SetNumberOfPoints(dims[0] * dims[1] * dims[2]);
float *pts = (float *) points->GetVoidPointer(0);
for(int k = 0; k < vertdims[0]; ++k)
{
for(int j = 0; j < ny; ++j)
{
int index = nx * j;
for(int i = 0; i < nx; ++i, ++index)
{
*pts++ = xc[i];
*pts++ = yc[j];
*pts++ = ZSFC[index] + (ZT - ZSFC[index]) * vertc[k];
}
}
}
retval = sgrid;
}
delete [] vertc;
delete [] vertdims;
if(zTop != 0)
free_void_mem(zTop, ztt);
delete [] zTopDims;
}
else if(pvc == "zMSL")
{
if(haveZ)
{
debug4 << mName << "Applying zMSL" << endl;
// Create the curvilinear mesh.
vtkStructuredGrid *sgrid = vtkStructuredGrid::New();
vtkPoints *points = vtkPoints::New();
sgrid->SetPoints(points);
points->Delete();
// Populate the points array
int dims[3];
dims[0] = nx;
dims[1] = ny;
dims[2] = zDims[0];
sgrid->SetDimensions(dims);
points->SetNumberOfPoints(dims[0] * dims[1] * dims[2]);
float *pts = (float *) points->GetVoidPointer(0);
double *Z = (double *)z;
for(int k = 0; k < dims[2]; ++k)
{
for(int j = 0; j < ny; ++j)
{
float y = yc[j];
for(int i = 0; i < nx; ++i)
{
*pts++ = xc[i];
*pts++ = yc[j];
*pts++ = float(*Z++);
}
}
}
retval = sgrid;
}
}
else if(pvc == "zAGL")
{
if(haveZ && havezSfc)
{
debug4 << mName << "Applying zAGL" << endl;
// Create the curvilinear mesh.
vtkStructuredGrid *sgrid = vtkStructuredGrid::New();
vtkPoints *points = vtkPoints::New();
sgrid->SetPoints(points);
points->Delete();
// Populate the points array
int dims[3];
dims[0] = nx;
dims[1] = ny;
dims[2] = zDims[0];
sgrid->SetDimensions(dims);
points->SetNumberOfPoints(dims[0] * dims[1] * dims[2]);
float *pts = (float *) points->GetVoidPointer(0);
double *Z = (double *)z;
double *ZSFC = (double*)zSfc;
for(int k = 0; k < dims[2]; ++k)
{
for(int j = 0; j < ny; ++j)
{
float y = yc[j];
int index = nx * j;
for(int i = 0; i < nx; ++i, ++index)
{
*pts++ = xc[i];
*pts++ = yc[j];
float zval = float(*Z++);
*pts++ = zval - ZSFC[index];
}
}
}
retval = sgrid;
}
}
else
unsupportedPVC = true;
//
// Clean up.
//
if(havezSfc)
{
free_void_mem(zSfc, zg);
delete [] zSfcDims;
}
if(haveZ)
{
free_void_mem(z, zt);
delete [] zDims;
}
if(unsupportedPVC)
{
std::string msg("Unsupported principal vertical coordinate: ");
msg += pvc;
EXCEPTION1(ImproperUseException, msg);
}
return retval;
}
// ****************************************************************************
// Method: avtADAPTFileFormat::GetVar
//
// Purpose:
// Reads in the named variable and returns it as a VTK data array.
//
// Arguments:
// var : The name of the variable to read.
//
// Returns: A pointer to the data array.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Tue Aug 16 10:49:02 PDT 2005
//
// Modifications:
//
// ****************************************************************************
#define READVAR(VTKTYPE) \
{\
VTKTYPE *arr = VTKTYPE::New();\
arr->SetNumberOfComponents(1);\
arr->SetNumberOfTuples(nElems);\
debug4 << "Allocated a " << \
#VTKTYPE \
<< " of " << nElems << " elements" << endl; \
if(fileObject->ReadVariableInto(var, t, arr->GetVoidPointer(0)))\
retval = arr;\
else\
arr->Delete();\
}
vtkDataArray *
avtADAPTFileFormat::GetVar(const char *var)
{
debug4 << "avtADAPTFileFormat::GetVar: var=" << var << endl;
vtkDataArray *retval = 0;
TypeEnum t = NO_TYPE;
int ndims = 0;
int *dims = 0;
if(fileObject->InqVariable(var, &t, &ndims, &dims))
{
debug4 << "avtADAPTFileFormat::GetVar: var=" << var << ", dims={";
int nElems = 1;
for(int i = 0; i < ndims; ++i)
{
debug4 << ", " << dims[i];
nElems *= dims[i];
}
debug4 << "}" << endl;
if(t == CHARARRAY_TYPE || t == UCHARARRAY_TYPE)
READVAR(vtkUnsignedCharArray)
else if(t == SHORTARRAY_TYPE)
READVAR(vtkShortArray)
else if(t == INTEGERARRAY_TYPE)
READVAR(vtkIntArray)
else if(t == LONGARRAY_TYPE)
READVAR(vtkLongArray)
else if(t == FLOATARRAY_TYPE)
READVAR(vtkFloatArray)
else if(t == DOUBLEARRAY_TYPE)
READVAR(vtkDoubleArray)
delete [] dims;
}
else
{
EXCEPTION1(InvalidVariableException, var);
}
return retval;
}
|