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
|
/*****************************************************************************
*
* 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 <avtNETCDFReaderBase.h>
#include <cstring>
#include "vtk_netcdf.h"
#include <avtDatabaseMetaData.h>
#include <DebugStream.h>
#include <NETCDFFileObject.h>
// ****************************************************************************
// Method: avtCCSM constructor
//
// Programmer: Brad Whitlock
// Creation: Wed Jul 11 11:28:20 PDT 2007
//
// ****************************************************************************
avtNETCDFReaderBase::avtNETCDFReaderBase(const char *filename, NETCDFFileObject *f)
{
fileObject = f;
}
avtNETCDFReaderBase::avtNETCDFReaderBase(const char *filename)
{
fileObject = new NETCDFFileObject(filename);
}
// ****************************************************************************
// Method: avtNETCDFReaderBase::~avtNETCDFReaderBase
//
// Purpose:
// Destructor for the avtNETCDFReaderBase class.
//
// Programmer: Brad Whitlock
// Creation: Fri Oct 5 12:17:36 PDT 2007
//
// Modifications:
//
// ****************************************************************************
avtNETCDFReaderBase::~avtNETCDFReaderBase()
{
delete fileObject;
}
// ****************************************************************************
// Method: avtNETCDFReaderBase::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: Brad Whitlock
// Creation: Wed Jul 11 11:28:20 PDT 2007
//
// ****************************************************************************
void
avtNETCDFReaderBase::FreeUpResources()
{
debug4 << "avtNETCDFReaderBase::FreeUpResources" << endl;
fileObject->Close();
}
// ****************************************************************************
// Method: avtNETCDFReaderBase::GetTimeDimension
//
// Purpose:
// Gets the ncdim, size, and name of the time axis.
//
// Arguments:
// ncdim : The netcdf dimension index that identifies the dimension.
// nts : The size of the time dimension, or -1
// name : The name of the time dimension.
//
// Returns: True if there is a time dimension; False otherwise.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Fri Oct 30 14:33:01 PDT 2009
//
// Modifications:
//
// ****************************************************************************
bool
avtNETCDFReaderBase::GetTimeDimension(NETCDFFileObject *fileObject, int &ncdim, int &nts, std::string &name)
{
const char *mName = "avtNETCDFReaderBase::GetTimeDimension: ";
bool retval = false;
ncdim = -1;
nts = -1;
name = "";
int status, nDims, nVars, nGlobalAtts, unlimitedDimension;
status = nc_inq(fileObject->GetFileHandle(), &nDims, &nVars, &nGlobalAtts,
&unlimitedDimension);
// Check the dimension size.
size_t sz = 0;
char dimName[NC_MAX_NAME+1];
if(status == NC_NOERR && unlimitedDimension >= 0)
{
ncdim = unlimitedDimension;
debug4 << mName << "unlimitedDimension = " << unlimitedDimension << endl;
if((status = nc_inq_dim(fileObject->GetFileHandle(), unlimitedDimension, dimName,
&sz)) == NC_NOERR)
{
nts = sz;
name = dimName;
retval = true;
debug4 << mName << "unlimitedDimension name=" << name << ", size=" << nts << endl;
}
}
if(nts == -1)
{
debug4 << mName << "No unlimited dimension so look for suitable time dimensions" << endl;
const char *timedims[] = {"time", "Time", "T"};
for(int i = 0; i < 3; ++i)
{
if(fileObject->GetDimensionInfo(timedims[i], &sz))
{
// Look up which nc dimension this is too.
for(int j = 0; j < nDims && ncdim == -1; ++j)
{
if((status = nc_inq_dim(fileObject->GetFileHandle(), j, dimName,
&sz)) == NC_NOERR)
{
if(strcmp(dimName, timedims[i]) == 0)
ncdim = j;
}
}
nts = sz;
name = timedims[i];
retval = true;
debug4 << mName << timedims[i] << " dimension size=" << nts << endl;
break;
}
}
}
return retval;
}
// ****************************************************************************
// Method: avtEMSTDFileFormat::GetNTimesteps
//
// Purpose:
// Tells the rest of the code how many timesteps there are in this file.
//
// Programmer: Brad Whitlock
// Creation: Wed Jul 11 11:28:20 PDT 2007
//
// ****************************************************************************
int
avtNETCDFReaderBase::GetNTimesteps(void)
{
int ncdim = -1, nts = 1;
std::string name;
GetTimeDimension(fileObject, ncdim, nts, name);
return nts;
}
void
avtNETCDFReaderBase::GetCycles(std::vector<int> &cycles)
{
int nts = GetNTimesteps();
if (nts <= 1)
{
cycles.push_back(ReadCycleAttribute());
}
else
{
for(int i = 0; i < nts; ++i)
cycles.push_back(i);
}
}
void
avtNETCDFReaderBase::GetTimes(std::vector<double> ×)
{
int ncdim = -1, nts = 1;
std::string name;
float *times_array = 0;
if(GetTimeDimension(fileObject, ncdim, nts, name))
{
// Read the times from the DB.
times_array = ReadArray(name.c_str());
}
else
{
// Read the time attribute.
times_array = ReadTimeAttribute();
if (times_array != 0)
nts = 1;
}
if(times_array != 0)
{
for(int i = 0; i < nts; ++i)
times.push_back((double)times_array[i]);
delete [] times_array;
}
else
{
for(int i = 0; i < nts; ++i)
times.push_back((double)i);
}
}
// ****************************************************************************
// Method: avtCCSMReader::ReadTimeAttribute
//
// Purpose:
// Reads the global attribute Time into a float array.
//
// Returns: A float array or NULL.
//
// Note:
//
// Programmer: Eric Brugger
// Creation: Mon Nov 16 08:01:05 PST 2009
//
// Modifications:
//
// ****************************************************************************
float *
avtNETCDFReaderBase::ReadTimeAttribute()
{
float *times_array = 0;
//
// See if the global attribute time exists. If it does and is
// either a float or double, then return the first value of it
// as the time array.
//
int status;
nc_type atttype;
size_t attsize;
if((status = nc_inq_att(fileObject->GetFileHandle(), NC_GLOBAL,
"Time", &atttype, &attsize)) == NC_NOERR)
{
if (atttype == NC_FLOAT)
{
times_array = new float[1];
float *value = new float[attsize];
nc_get_att_float(fileObject->GetFileHandle(), NC_GLOBAL,
"Time", value);
times_array[0] = value[0];
delete [] value;
}
else if (atttype == NC_DOUBLE)
{
times_array = new float[1];
double *value = new double[attsize];
nc_get_att_double(fileObject->GetFileHandle(), NC_GLOBAL,
"Time", value);
times_array[0] = value[0];
delete [] value;
}
}
return times_array;
}
// ****************************************************************************
// Method: avtCCSMReader::ReadCycleAttribute
//
// Purpose:
// Returns the global attribute Cycle as an int.
//
// Returns: The global attribute Cycle.
//
// Note:
//
// Programmer: Eric Brugger
// Creation: Mon Nov 16 08:01:05 PST 2009
//
// Modifications:
//
// ****************************************************************************
int
avtNETCDFReaderBase::ReadCycleAttribute()
{
int cycle = 0;
//
// See if the global attribute cycle exists. If it does and is
// an int, then return the first value of it as the cycle.
//
int status;
nc_type atttype;
size_t attsize;
if((status = nc_inq_att(fileObject->GetFileHandle(), NC_GLOBAL,
"Cycle", &atttype, &attsize)) == NC_NOERR)
{
if (atttype == NC_INT)
{
int *value = new int[attsize];
nc_get_att_int(fileObject->GetFileHandle(), NC_GLOBAL,
"Cycle", value);
cycle = value[0];
delete [] value;
}
}
return cycle;
}
// ****************************************************************************
// Method: avtCCSMReader::ReadArray
//
// Purpose:
// Reads a variable into a float array.
//
// Arguments:
// varname : The name of the variable to read.
//
// Returns: A float array or NULL.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Fri Oct 5 12:18:25 PDT 2007
//
// Modifications:
//
// ****************************************************************************
float *
avtNETCDFReaderBase::ReadArray(const char *varname)
{
const char *mName = "avtCCSMReader::ReadArray: ";
TypeEnum t;
int ndims, *dims = 0;
float *arr = 0;
if(fileObject->InqVariable(varname, &t, &ndims, &dims))
{
debug4 << mName << "Got information for " << varname << endl;
// Determine the size of the variable.
int nelems = 1;
for(int i = 0; i < ndims; ++i)
nelems *= dims[i];
arr = new float[nelems];
delete [] dims;
// Read the variable.
if(!fileObject->ReadVariableIntoAsFloat(varname, arr))
{
debug4 << mName << "Could not read variable as float." << endl;
delete [] arr;
arr = 0;
}
else
debug4 << mName << "Variable " << varname << " was read." << endl;
}
return arr;
}
|