| [28c025] | 1 | /* | 
|---|
|  | 2 | * SamplingGridProperties.hpp | 
|---|
|  | 3 | * | 
|---|
|  | 4 | *  Created on: 25.07.2012 | 
|---|
|  | 5 | *      Author: heber | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
|  | 8 | #ifndef SAMPLINGGRIDPROPERTIES_HPP_ | 
|---|
|  | 9 | #define SAMPLINGGRIDPROPERTIES_HPP_ | 
|---|
|  | 10 |  | 
|---|
|  | 11 | // include config.h | 
|---|
|  | 12 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 13 | #include <config.h> | 
|---|
|  | 14 | #endif | 
|---|
|  | 15 |  | 
|---|
|  | 16 | #include "boost/serialization/export.hpp" | 
|---|
|  | 17 | #include "boost/serialization/array.hpp" | 
|---|
|  | 18 |  | 
|---|
| [5b1e5e] | 19 | #include "LinearAlgebra/defs.hpp" | 
|---|
|  | 20 |  | 
|---|
| [955051] | 21 | #include "Fragmentation/Summation/ZeroInstance.hpp" | 
|---|
|  | 22 |  | 
|---|
| [28c025] | 23 | /** This class stores a sample function on a three-dimensional grid. | 
|---|
|  | 24 | * | 
|---|
|  | 25 | */ | 
|---|
|  | 26 | class SamplingGridProperties { | 
|---|
|  | 27 | public: | 
|---|
|  | 28 | /** Constructor for class SamplingGridProperties. | 
|---|
|  | 29 | * | 
|---|
|  | 30 | * \param _begin offset of grid | 
|---|
| [3d9a8d] | 31 | * \param _end edge length per axis | 
|---|
|  | 32 | * \param _level number of gridpoints as \f$2^{\mathrm{level}}\f$ per unit(!) length | 
|---|
| [28c025] | 33 | */ | 
|---|
|  | 34 | SamplingGridProperties( | 
|---|
| [5b1e5e] | 35 | const double _begin[NDIM], | 
|---|
|  | 36 | const double _end[NDIM], | 
|---|
| [28c025] | 37 | const int _level); | 
|---|
|  | 38 |  | 
|---|
|  | 39 | /** Copy constructor for class SamplingGridProperties. | 
|---|
|  | 40 | * | 
|---|
|  | 41 | * \param _props instance to copy from | 
|---|
|  | 42 | */ | 
|---|
|  | 43 | SamplingGridProperties(const SamplingGridProperties &_props); | 
|---|
|  | 44 |  | 
|---|
|  | 45 | /** Default constructor. | 
|---|
|  | 46 | */ | 
|---|
|  | 47 | SamplingGridProperties(); | 
|---|
|  | 48 |  | 
|---|
|  | 49 | virtual ~SamplingGridProperties(); | 
|---|
|  | 50 |  | 
|---|
| [c889b7] | 51 | /** Checks whether another instance is compatible with this one. | 
|---|
| [c0e8fb] | 52 | * | 
|---|
|  | 53 | *  \note Compatibility implies only that both grids have same grid spacing. | 
|---|
| [c889b7] | 54 | * | 
|---|
|  | 55 | * \param _props other properties to check against | 
|---|
|  | 56 | * \return true - are compatible, false - else | 
|---|
|  | 57 | */ | 
|---|
|  | 58 | bool isCompatible(const SamplingGridProperties &_props) const | 
|---|
|  | 59 | { | 
|---|
| [1a00bb] | 60 | return level == _props.level; | 
|---|
| [c889b7] | 61 | } | 
|---|
|  | 62 |  | 
|---|
| [3d9a8d] | 63 | /** Assignment operator. | 
|---|
|  | 64 | * | 
|---|
|  | 65 | * \param other other instance to assign ourselves to | 
|---|
|  | 66 | */ | 
|---|
|  | 67 | SamplingGridProperties& operator=(const SamplingGridProperties& other); | 
|---|
|  | 68 |  | 
|---|
| [c889b7] | 69 | /** Equality operator for class SamplingGridProperties. | 
|---|
|  | 70 | * | 
|---|
|  | 71 | * \param _props other object to compare to | 
|---|
|  | 72 | */ | 
|---|
|  | 73 | bool operator==(const SamplingGridProperties &_props) const; | 
|---|
|  | 74 |  | 
|---|
|  | 75 | /** Inequality operator for class SamplingGridProperties. | 
|---|
|  | 76 | * | 
|---|
|  | 77 | * \param _props other object to compare to | 
|---|
|  | 78 | */ | 
|---|
|  | 79 | bool operator!=(const SamplingGridProperties &_props) const | 
|---|
|  | 80 | { | 
|---|
|  | 81 | return (!(*this == _props)); | 
|---|
|  | 82 | } | 
|---|
|  | 83 |  | 
|---|
| [b5f548] | 84 | /** Returns the volume of the domain for this sampled function. | 
|---|
|  | 85 | * | 
|---|
|  | 86 | * @return volume | 
|---|
|  | 87 | */ | 
|---|
|  | 88 | const double getVolume() const; | 
|---|
|  | 89 |  | 
|---|
|  | 90 | /** Returns the total number of gridpoints of the discrete mesh covering the volume. | 
|---|
|  | 91 | * | 
|---|
|  | 92 | * @return number of gridpoints sampled_values should have | 
|---|
|  | 93 | */ | 
|---|
|  | 94 | const size_t getTotalGridPoints() const; | 
|---|
|  | 95 |  | 
|---|
|  | 96 | /** Returns the number of grid points per axis. | 
|---|
|  | 97 | * | 
|---|
|  | 98 | * @return number of grid points per unit length | 
|---|
|  | 99 | */ | 
|---|
|  | 100 | const size_t getGridPointsPerAxis() const; | 
|---|
|  | 101 |  | 
|---|
|  | 102 | /** Returns the length of the domain for the given \a axis. | 
|---|
|  | 103 | * | 
|---|
|  | 104 | * \param axis axis for which to get step length | 
|---|
|  | 105 | * \return domain length for the given axis, i.e. end - begin | 
|---|
|  | 106 | */ | 
|---|
|  | 107 | const double getTotalLengthPerAxis(const size_t axis) const; | 
|---|
|  | 108 |  | 
|---|
|  | 109 | /** Returns the real step length from one discrete grid point to the next. | 
|---|
|  | 110 | * | 
|---|
|  | 111 | * \param axis axis for which to get step length | 
|---|
|  | 112 | * \return step length for the given axis, as domain length over getGridPointsPerAxis() | 
|---|
|  | 113 | */ | 
|---|
|  | 114 | const double getDeltaPerAxis(const size_t axis) const; | 
|---|
|  | 115 |  | 
|---|
| [028790] | 116 | /** Helper function to get point at grid point for given \a axis and less than value. | 
|---|
|  | 117 | * | 
|---|
|  | 118 | * @param value value to find nearest grid point to | 
|---|
|  | 119 | * @param axis axis of the value | 
|---|
|  | 120 | * @return nearest lower grid point | 
|---|
|  | 121 | */ | 
|---|
|  | 122 | double getNearestLowerGridPoint( | 
|---|
|  | 123 | const double value, const size_t axis) const; | 
|---|
|  | 124 |  | 
|---|
|  | 125 | /** Helper function to get point at grid point for given \a axis and greater than value. | 
|---|
|  | 126 | * | 
|---|
|  | 127 | * @param value value to find nearest grid point to | 
|---|
|  | 128 | * @param axis axis of the value | 
|---|
|  | 129 | * @return nearest lower grid point | 
|---|
|  | 130 | */ | 
|---|
|  | 131 | double getNearestHigherGridPoint( | 
|---|
|  | 132 | const double value, const size_t axis) const; | 
|---|
| [b5f548] | 133 |  | 
|---|
| [ca4b372] | 134 | /** Counts how many levels difference there is in grid spacing if we just compare | 
|---|
|  | 135 | * the extension of \a this and \a _props grid. | 
|---|
|  | 136 | * | 
|---|
|  | 137 | * An example: say this is [0,20]^3 and _props is [0,10]^3, while both | 
|---|
|  | 138 | * have supposedly the same level, then the surplus level of _props is 1 | 
|---|
|  | 139 | * because it has the same number of gridpoints on half the axis length. | 
|---|
|  | 140 | * | 
|---|
|  | 141 | * \param _props other grid to compare extension to | 
|---|
|  | 142 | * \return surplus levels | 
|---|
|  | 143 | */ | 
|---|
|  | 144 | int getSurplusLevel(const SamplingGridProperties &_props) const; | 
|---|
|  | 145 |  | 
|---|
| [28c025] | 146 | public: | 
|---|
|  | 147 | //!> offset of grid | 
|---|
| [5b1e5e] | 148 | double begin[NDIM]; | 
|---|
| [3d9a8d] | 149 | //!> size of grid, i.e. edge length per axis of domain | 
|---|
| [5b1e5e] | 150 | double end[NDIM]; | 
|---|
| [3d9a8d] | 151 | //!> level, i.e. \f$2^{\mathrm{level}}\f$ grid points per axis per unit(!) length | 
|---|
| [28c025] | 152 | int level; | 
|---|
|  | 153 |  | 
|---|
|  | 154 | private: | 
|---|
|  | 155 |  | 
|---|
|  | 156 | friend class boost::serialization::access; | 
|---|
|  | 157 | // serialization | 
|---|
|  | 158 | template <typename Archive> | 
|---|
|  | 159 | void serialize(Archive& ar, const unsigned int version) | 
|---|
|  | 160 | { | 
|---|
|  | 161 | int i; | 
|---|
| [5b1e5e] | 162 | for (i=0; i<NDIM; ++i) | 
|---|
| [28c025] | 163 | ar & begin[i]; | 
|---|
| [5b1e5e] | 164 | for (i=0; i<NDIM; ++i) | 
|---|
| [3d9a8d] | 165 | ar & end[i]; | 
|---|
| [28c025] | 166 | ar & level; | 
|---|
|  | 167 | } | 
|---|
|  | 168 |  | 
|---|
|  | 169 | }; | 
|---|
|  | 170 |  | 
|---|
| [955051] | 171 | template<> SamplingGridProperties ZeroInstance<SamplingGridProperties>(); | 
|---|
|  | 172 |  | 
|---|
| [28c025] | 173 | // we need to give this class a unique key for serialization | 
|---|
|  | 174 | // its is only serialized through its base class FragmentJob | 
|---|
|  | 175 | BOOST_CLASS_EXPORT_KEY(SamplingGridProperties) | 
|---|
|  | 176 |  | 
|---|
| [b5f548] | 177 | // define inline functions | 
|---|
|  | 178 | #include "SamplingGridProperties_inline.hpp" | 
|---|
|  | 179 |  | 
|---|
| [28c025] | 180 | #endif /* SAMPLINGGRIDPROPERTIES_HPP_ */ | 
|---|