source: src/Fragmentation/Summation/SetValues/SamplingGridProperties.hpp@ 028790

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 028790 was 028790, checked in by Frederik Heber <heber@…>, 9 years ago

Moved getNearestLowerGridPoint and ..Higher:: from SamplingGrid to SamplingGridProperties.

  • we only use functions from ..Properties anyway.
  • Property mode set to 100644
File size: 4.5 KB
Line 
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
19#include "Fragmentation/Summation/ZeroInstance.hpp"
20
21/** This class stores a sample function on a three-dimensional grid.
22 *
23 */
24class SamplingGridProperties {
25public:
26 /** Constructor for class SamplingGridProperties.
27 *
28 * \param _begin offset of grid
29 * \param _end edge length per axis
30 * \param _level number of gridpoints as \f$2^{\mathrm{level}}\f$ per unit(!) length
31 */
32 SamplingGridProperties(
33 const double _begin[3],
34 const double _end[3],
35 const int _level);
36
37 /** Copy constructor for class SamplingGridProperties.
38 *
39 * \param _props instance to copy from
40 */
41 SamplingGridProperties(const SamplingGridProperties &_props);
42
43 /** Default constructor.
44 */
45 SamplingGridProperties();
46
47 virtual ~SamplingGridProperties();
48
49 /** Checks whether another instance is compatible with this one.
50 *
51 * \note Compatibility implies only that both grids have same grid spacing.
52 *
53 * \param _props other properties to check against
54 * \return true - are compatible, false - else
55 */
56 bool isCompatible(const SamplingGridProperties &_props) const
57 {
58 return level == _props.level;
59 }
60
61 /** Assignment operator.
62 *
63 * \param other other instance to assign ourselves to
64 */
65 SamplingGridProperties& operator=(const SamplingGridProperties& other);
66
67 /** Equality operator for class SamplingGridProperties.
68 *
69 * \param _props other object to compare to
70 */
71 bool operator==(const SamplingGridProperties &_props) const;
72
73 /** Inequality operator for class SamplingGridProperties.
74 *
75 * \param _props other object to compare to
76 */
77 bool operator!=(const SamplingGridProperties &_props) const
78 {
79 return (!(*this == _props));
80 }
81
82 /** Returns the volume of the domain for this sampled function.
83 *
84 * @return volume
85 */
86 const double getVolume() const;
87
88 /** Returns the total number of gridpoints of the discrete mesh covering the volume.
89 *
90 * @return number of gridpoints sampled_values should have
91 */
92 const size_t getTotalGridPoints() const;
93
94 /** Returns the number of grid points per axis.
95 *
96 * @return number of grid points per unit length
97 */
98 const size_t getGridPointsPerAxis() const;
99
100 /** Returns the length of the domain for the given \a axis.
101 *
102 * \param axis axis for which to get step length
103 * \return domain length for the given axis, i.e. end - begin
104 */
105 const double getTotalLengthPerAxis(const size_t axis) const;
106
107 /** Returns the real step length from one discrete grid point to the next.
108 *
109 * \param axis axis for which to get step length
110 * \return step length for the given axis, as domain length over getGridPointsPerAxis()
111 */
112 const double getDeltaPerAxis(const size_t axis) const;
113
114 /** Helper function to get point at grid point for given \a axis and less than value.
115 *
116 * @param value value to find nearest grid point to
117 * @param axis axis of the value
118 * @return nearest lower grid point
119 */
120 double getNearestLowerGridPoint(
121 const double value, const size_t axis) const;
122
123 /** Helper function to get point at grid point for given \a axis and greater than value.
124 *
125 * @param value value to find nearest grid point to
126 * @param axis axis of the value
127 * @return nearest lower grid point
128 */
129 double getNearestHigherGridPoint(
130 const double value, const size_t axis) const;
131
132public:
133 //!> offset of grid
134 double begin[3];
135 //!> size of grid, i.e. edge length per axis of domain
136 double end[3];
137 //!> level, i.e. \f$2^{\mathrm{level}}\f$ grid points per axis per unit(!) length
138 int level;
139
140private:
141
142 friend class boost::serialization::access;
143 // serialization
144 template <typename Archive>
145 void serialize(Archive& ar, const unsigned int version)
146 {
147 int i;
148 for (i=0; i<3; ++i)
149 ar & begin[i];
150 for (i=0; i<3; ++i)
151 ar & end[i];
152 ar & level;
153 }
154
155};
156
157template<> SamplingGridProperties ZeroInstance<SamplingGridProperties>();
158
159// we need to give this class a unique key for serialization
160// its is only serialized through its base class FragmentJob
161BOOST_CLASS_EXPORT_KEY(SamplingGridProperties)
162
163// define inline functions
164#include "SamplingGridProperties_inline.hpp"
165
166#endif /* SAMPLINGGRIDPROPERTIES_HPP_ */
Note: See TracBrowser for help on using the repository browser.