File size: 14,945 Bytes
10f2621 | 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 | /** @defgroup Vgrid Vgrid class
* @brief Oracle for Cartesian mesh data
*/
/**
* @file vgrid.h
* @ingroup Vgrid
* @author Nathan Baker and Steve Bond
* @brief Potential oracle for Cartesian mesh data
* @version $Id$
*
* @attention
* @verbatim
*
* APBS -- Adaptive Poisson-Boltzmann Solver
*
* Nathan A. Baker (nathan.baker@pnnl.gov)
* Pacific Northwest National Laboratory
*
* Additional contributing authors listed in the code documentation.
*
* Copyright (c) 2010-2020 Battelle Memorial Institute. Developed at the
* Pacific Northwest National Laboratory, operated by Battelle Memorial
* Institute, Pacific Northwest Division for the U.S. Department of Energy.
*
* Portions Copyright (c) 2002-2010, Washington University in St. Louis.
* Portions Copyright (c) 2002-2010, Nathan A. Baker.
* Portions Copyright (c) 1999-2002, The Regents of the University of
* California.
* Portions Copyright (c) 1995, Michael Holst.
* All rights reserved.
*
* 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 following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* Neither the name of the developer 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 THE COPYRIGHT OWNER 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.
*
* @endverbatim
*/
#ifndef _VGRID_H_
#define _VGRID_H_
#include "apbscfg.h"
#include "maloc/maloc.h"
#include "generic/vhal.h"
#include "generic/vstring.h"
/** @brief Number of decimal places for comparisons and formatting
* @ingroup Vgrid */
#define VGRID_DIGITS 6
/**
* @ingroup Vgrid
* @author Nathan Baker
* @brief Electrostatic potential oracle for Cartesian mesh data
*/
struct sVgrid {
int nx; /**< Number grid points in x direction */
int ny; /**< Number grid points in y direction */
int nz; /**< Number grid points in z direction */
double hx; /**< Grid spacing in x direction */
double hy; /**< Grid spacing in y direction */
double hzed; /**< Grid spacing in z direction */
double xmin; /**< x coordinate of lower grid corner */
double ymin; /**< y coordinate of lower grid corner */
double zmin; /**< z coordinate of lower grid corner */
double xmax; /**< x coordinate of upper grid corner */
double ymax; /**< y coordinate of upper grid corner */
double zmax; /**< z coordinate of upper grid corner */
double *data; /**< nx*ny*nz array of data */
int readdata; /**< flag indicating whether data was read from file */
int ctordata; /**< flag indicating whether data was included at
* construction */
Vmem *mem; /**< Memory manager object */
};
/**
* @ingroup Vgrid
* @brief Declaration of the Vgrid class as the sVgrid structure
*/
typedef struct sVgrid Vgrid;
#if !defined(VINLINE_VGRID)
/** @brief Return the memory used by this structure (and its contents)
* in bytes
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid object
* @return The memory used by this structure and its contents in bytes
*/
VEXTERNC unsigned long int Vgrid_memChk(Vgrid *thee);
#else /* if defined(VINLINE_VGRID) */
/** @brief Return the memory used by this structure (and its contents)
* in bytes
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid object
* @return The memory used by this structure and its contents in bytes
*/
#define Vgrid_memChk(thee) (Vmem_bytes((thee)->vmem))
#endif /* if !defined(VINLINE_VPMG) */
/** @brief Construct Vgrid object with values obtained from Vpmg_readDX (for
* example)
* @ingroup Vgrid
* @author Nathan Baker
* @param nx Number grid points in x direction
* @param ny Number grid points in y direction
* @param nz Number grid points in z direction
* @param hx Grid spacing in x direction
* @param hy Grid spacing in y direction
* @param hzed Grid spacing in z direction
* @param xmin x coordinate of lower grid corner
* @param ymin y coordinate of lower grid corner
* @param zmin z coordinate of lower grid corner
* @param data nx*ny*nz array of data. This can be VNULL if you are
* planning to read in data later with one of the read routines
* @returns Newly allocated and initialized Vgrid object
*/
VEXTERNC Vgrid* Vgrid_ctor(int nx, int ny, int nz,
double hx, double hy, double hzed,
double xmin, double ymin, double zmin,
double *data);
/** @brief Initialize Vgrid object with values obtained from Vpmg_readDX (for
* example)
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Pointer to newly allocated Vgrid object
* @param nx Number grid points in x direction
* @param ny Number grid points in y direction
* @param nz Number grid points in z direction
* @param hx Grid spacing in x direction
* @param hy Grid spacing in y direction
* @param hzed Grid spacing in z direction
* @param xmin x coordinate of lower grid corner
* @param ymin y coordinate of lower grid corner
* @param zmin z coordinate of lower grid corner
* @param data nx*ny*nz array of data. This can be VNULL if you are
* planning to read in data later with one of the read routines
* @returns Newly allocated and initialized Vgrid object
*/
VEXTERNC int Vgrid_ctor2(Vgrid *thee, int nx, int ny, int nz,
double hx, double hy, double hzed,
double xmin, double ymin, double zmin,
double *data);
/** @brief Get potential value (from mesh or approximation) at a point
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid obejct
* @param x Point at which to evaluate potential
* @param value Value of data at point x
* @return 1 if successful, 0 if off grid
*/
VEXTERNC int Vgrid_value(Vgrid *thee, double x[3], double *value);
/** @brief Object destructor
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Pointer to memory location of object to be destroyed
*/
VEXTERNC void Vgrid_dtor(Vgrid **thee);
/** @brief FORTRAN stub object destructor
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Pointer to object to be destroyed
*/
VEXTERNC void Vgrid_dtor2(Vgrid *thee);
/** @brief Get second derivative values at a point
* @ingroup Vgrid
* @author Steve Bond and Nathan Baker
* @param thee Pointer to Vgrid object
* @param pt Location to evaluate second derivative
* @param cflag
* \li 0: Reduced Maximal Curvature
* \li 1: Mean Curvature (Laplace)
* \li 2: Gauss Curvature
* \li 3: True Maximal Curvature
* @param curv Specified curvature value
* @return 1 if successful, 0 if off grid
*/
VEXTERNC int Vgrid_curvature(Vgrid *thee, double pt[3], int cflag,
double *curv);
/** @brief Get first derivative values at a point
* @ingroup Vgrid
* @author Nathan Baker and Steve Bond
* @param thee Pointer to Vgrid object
* @param pt Location to evaluate gradient
* @param grad Gradient
* @return 1 if successful, 0 if off grid
*/
VEXTERNC int Vgrid_gradient(Vgrid *thee, double pt[3], double grad[3] );
/** @brief Read in OpenDX data in GZIP format
* @ingroup Vgrid
* @author Dave Gohara
* @return 1 if successful, 0 otherwise */
VEXTERNC int Vgrid_readGZ(
Vgrid *thee, /**< Object with grid data to write */
const char *fname /**< Path to write to */
);
/** @brief Write out OpenDX data in GZIP format
* @author Dave Gohara
*/
VEXTERNC void Vgrid_writeGZ(
Vgrid *thee, /**< Object to hold new grid data */
const char *iodev, /**< I/O device */
const char *iofmt, /**< I/O format */
const char *thost, /**< Remote host name */
const char *fname, /**< File name */
char *title, /**< Data title */
double *pvec /**< Masking vector (0 = not written) */
);
/** @brief Write out the data in UHBD grid format
* @note \li The mesh spacing should be uniform
* \li Format changed from %12.6E to %12.5E
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Grid object
* @param iodev Output device type (FILE/BUFF/UNIX/INET)
* @param iofmt Output device format (ASCII/XDR)
* @param thost Output hostname (for sockets)
* @param fname Output FILE/BUFF/UNIX/INET name
* @param title Title to be inserted in grid file
* @param pvec Partition weight (
* if 1: point in current partition,
* if 0 point not in current partition
* if > 0 && < 1 point on/near boundary )
* @bug This routine does not respect partition information
*/
VEXTERNC void Vgrid_writeUHBD(Vgrid *thee, const char *iodev,
const char *iofmt, const char *thost, const char *fname, char *title,
double *pvec);
/** @brief Write out the data in OpenDX grid format
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Grid object
* @param iodev Output device type (FILE/BUFF/UNIX/INET)
* @param iofmt Output device format (ASCII/XDR)
* @param thost Output hostname (for sockets)
* @param fname Output FILE/BUFF/UNIX/INET name
* @param title Title to be inserted in grid file
* @param pvec Partition weight (
* if 1: point in current partition,
* if 0 point not in current partition
* if > 0 && < 1 point on/near boundary )
*/
VEXTERNC void Vgrid_writeDX(Vgrid *thee, const char *iodev,
const char *iofmt, const char *thost, const char *fname, char *title,
double *pvec);
/** @brief Read in data in OpenDX grid format
* @note All dimension information is given in order: z, y, x
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid object
* @param iodev Input device type (FILE/BUFF/UNIX/INET)
* @param iofmt Input device format (ASCII/XDR)
* @param thost Input hostname (for sockets)
* @param fname Input FILE/BUFF/UNIX/INET name
* @returns 1 if sucessful, 0 otherwise
*/
VEXTERNC int Vgrid_readDX(Vgrid *thee, const char *iodev, const char *iofmt,
const char *thost, const char *fname);
/** @brief Write out the binary data in OpenDX grid format
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Grid object
* @param iodev Output device type (FILE/BUFF/UNIX/INET)
* @param iofmt Output device format (ASCII/XDR)
* @param thost Output hostname (for sockets)
* @param fname Output FILE/BUFF/UNIX/INET name
* @param title Title to be inserted in grid file
* @param pvec Partition weight (
* if 1: point in current partition,
* if 0 point not in current partition
* if > 0 && < 1 point on/near boundary )
*/
VEXTERNC void Vgrid_writeDXBIN(Vgrid *thee, const char *iodev,
const char *iofmt, const char *thost, const char *fname, char *title,
double *pvec);
/** @brief Read in binary data in OpenDX grid format
* @note All dimension information is given in order: z, y, x
* @ingroup Vgrid
* @author Juan Brandi
* @param thee Vgrid object
* @param iodev Input device type (FILE/BUFF/UNIX/INET)
* @param iofmt Input device format (ASCII/XDR)
* @param thost Input hostname (for sockets)
* @param fname Input FILE/BUFF/UNIX/INET name
* @returns 1 if sucessful, 0 otherwise
*/
VEXTERNC int Vgrid_readDXBIN(Vgrid *thee, const char *iodev, const char *iofmt,
const char *thost, const char *fname);
/**
* @brief Get the integral of the data
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid object
* @returns Integral of data */
VEXTERNC double Vgrid_integrate(Vgrid *thee);
/**
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid object
* @returns \f$L_1\f$ norm of data
* @brief Get the \f$L_1\f$ norm of the data. This returns the integral:
* \f[ \| u \|_{L_1} = \int_\Omega | u(x) | dx \f]
*/
VEXTERNC double Vgrid_normL1(Vgrid *thee);
/**
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid object
* @returns \f$L_2\f$ norm of data
* @brief Get the \f$L_2\f$ norm of the data. This returns the integral:
* \f[ \| u \|_{L_2} = \left( \int_\Omega | u(x) |^2 dx \right)^{1/2} \f]
*/
VEXTERNC double Vgrid_normL2(Vgrid *thee);
/**
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid object
* @returns \f$L\infty\f$ norm of data
* @brief Get the \f$L_\infty\f$ norm of the data. This returns the integral:
* \f[ \| u \|_{L_\infty} = \sup_{x \in \Omega} | u(x) | \f]
*/
VEXTERNC double Vgrid_normLinf(Vgrid *thee);
/**
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid object
* @returns Integral of data
* @brief Get the \f$H_1\f$ semi-norm of the data.
* This returns the integral:
* \f[ | u |_{H_1} = \left( \int_\Omega |\nabla u(x)|^2 dx \right)^{1/2} \f]
*/
VEXTERNC double Vgrid_seminormH1(Vgrid *thee);
/**
* @ingroup Vgrid
* @author Nathan Baker
* @param thee Vgrid object
* @returns Integral of data
* @brief Get the \f$H_1\f$ norm (or energy norm) of the data.
* This returns the integral:
* \f[ \| u \|_{H_1} = \left( \int_\Omega |\nabla u(x)|^2 dx
* + \int_\Omega |u(x)|^2 dx \right)^{1/2} \f]
*/
VEXTERNC double Vgrid_normH1(Vgrid *thee);
#endif
|