source: src/Fragmentation/Exporters/SphericalPointDistribution.hpp@ c8d2e7

Last change on this file since c8d2e7 was c8d2e7, checked in by Frederik Heber <heber@…>, 11 years ago

findBestMatching() now returns the MCS instead of the joined Points.

  • this is preparatory to obtain an association and not join points.
  • Property mode set to 100644
File size: 9.0 KB
Line 
1/*
2 * SphericalPointDistribution.hpp
3 *
4 * Created on: May 29, 2014
5 * Author: heber
6 */
7
8
9#ifndef SPHERICALPOINTDISTRIBUTION_HPP_
10#define SPHERICALPOINTDISTRIBUTION_HPP_
11
12// include config.h
13#ifdef HAVE_CONFIG_H
14#include <config.h>
15#endif
16
17#include "CodePatterns/Assert.hpp"
18
19#include <cmath>
20#include <list>
21#include <map>
22#include <set>
23#include <vector>
24
25#include "LinearAlgebra/Vector.hpp"
26
27class SphericalPointDistributionTest;
28
29/** contains getters for the VSEPR model for specific number of electrons.
30 *
31 * This struct contains specialized functions returning a list of Vectors
32 * (points in space) to match the VSEPR model for the given number of electrons.
33 *
34 * This is implemented via template specialization of the function get().
35 *
36 * These specializations are taken from the python script \b CreateVspeShapes.py
37 * by Christian Neuen, 07th May 2009.
38 */
39struct SphericalPointDistribution
40{
41 /** Cstor for SphericalPointDistribution, allows setting radius of sphere
42 *
43 * \param _BondLength desired radius of sphere
44 */
45 SphericalPointDistribution(const double _Bondlength = 1.) :
46 Bondlength(_Bondlength),
47 SQRT_3(sqrt(3.0))
48 {}
49
50 //!> typedef for the list of points
51 typedef std::list<Vector> Polygon_t;
52 //!> typedef for the list of points with integral weights
53 typedef std::list<std::pair<Vector, int> > WeightedPolygon_t;
54 //!> typedef for a sorted list of indices
55 typedef std::set<unsigned int> IndexSet_t;
56 //!> typedef for the adjacency list of a polygon
57 typedef std::map<unsigned int, IndexSet_t > adjacency_t;
58
59 /** General getter function for the distribution of points on the surface.
60 *
61 * \warn this function needs to be specialized!
62 *
63 * \return Polygon_t with points on the surface centered at (0,0,0)
64 */
65 template <int N> Polygon_t get()
66 {
67 ASSERT(0, "SphericalPointDistribution::get() - not specialized for "+toString(N)+".");
68 }
69
70 template <int N> adjacency_t getConnections()
71 {
72 ASSERT(0, "SphericalPointDistribution::getConnections() - not specialized for "+toString(N)+".");
73 }
74
75 /** Returns vacant spots to fill to get a complete spherical point distribution from
76 * given points \a _polygon, containing then \a _N in total.
77 *
78 * The idea is to produce a matching from all points in \a _polygon to those
79 * in \a _newpolygon in such a way that their distance difference is minimal.
80 * As we just look at numbers of points determined by valency, i.e.
81 * independent of the number of atoms, we simply go through each of the possible
82 * mappings. We stop when the L1 error is below a certain \a threshold,
83 * otherwise we pick the matching with the lowest L2 error.
84 *
85 * This is a helper to determine points where to best insert saturation
86 * hydrogens.
87 *
88 * \param _polygon already filled places to match
89 * \param _N desired total number fo points
90 */
91 Polygon_t getRemainingPoints(const WeightedPolygon_t &_polygon, const int _N);
92
93 //!> default radius of the spherical distribution
94 const double Bondlength;
95 //!> precalculated value for root of 3
96 const double SQRT_3;
97 //!> threshold for L1 error below which matching is immediately acceptable
98 static const double L1THRESHOLD;
99 //!> threshold for L2 error below which matching is acceptable
100 static const double L2THRESHOLD;
101
102 //!> typedef for a full rotation specification consisting of axis and angle.
103 typedef std::pair<Vector, double> Rotation_t;
104
105 //!> typedef for a list of indices (of points in a polygon)
106 typedef std::list<unsigned int> IndexList_t;
107 //!> typedef enumerating possibly multiple points accumulated as one point
108 typedef std::list< IndexList_t > IndexTupleList_t;
109 //!> typedef for a vector of indices
110 typedef std::vector<unsigned int> IndexArray_t;
111 //!> typedef for a Vector of positions
112 typedef std::vector<Vector> VectorArray_t;
113 //!> typedef for a Vector of positions with weights
114 typedef std::vector< std::pair<Vector, int> > WeightedVectorArray_t;
115 //!> typedef for a vector of degrees (or integral weights)
116 typedef std::vector<unsigned int> WeightsArray_t;
117
118 //!> amplitude up to which deviations in checks of rotations are tolerated
119 static const double warn_amplitude;
120
121 struct PolygonWithIndices
122 {
123 //!> array with points
124 VectorArray_t polygon;
125 //!> list with indices for the above points, defining subset
126 IndexList_t indices;
127 };
128
129 static Vector calculateCenterOfMinimumDistance(
130 const SphericalPointDistribution::VectorArray_t &_positions,
131 const SphericalPointDistribution::IndexList_t &_indices);
132
133private:
134 //!> points for the ideal distribution
135 Polygon_t points;
136 //!> connection information between these ideal points
137 adjacency_t adjacency;
138
139 /** Initialize inner status (points and adjacency) to desired number of
140 * points.
141 *
142 * \param _N number of points
143 */
144 void initSelf(const int _N);
145
146private:
147 //!> grant unit tests access to private parts
148 friend class SphericalPointDistributionTest;
149
150 static std::pair<double, double> calculateErrorOfMatching(
151 const VectorArray_t &_old,
152 const VectorArray_t &_new,
153 const IndexTupleList_t &_Matching);
154
155 static Polygon_t removeMatchingPoints(
156 const PolygonWithIndices &_points);
157
158 struct MatchingControlStructure {
159 MatchingControlStructure(
160 const adjacency_t &_adjacency,
161 const VectorArray_t &_oldpoints,
162 const VectorArray_t &_newpoints,
163 const WeightsArray_t &_weights
164 );
165 bool foundflag;
166 double bestL2;
167 const adjacency_t &adjacency;
168 const VectorArray_t oldpoints;
169 const VectorArray_t newpoints;
170 const WeightsArray_t weights;
171 IndexTupleList_t bestmatching;
172 };
173
174 static void recurseMatchings(
175 MatchingControlStructure &_MCS,
176 IndexTupleList_t &_matching,
177 IndexList_t _indices,
178 WeightsArray_t &_remainingweights,
179 WeightsArray_t::iterator _remainiter,
180 const unsigned int _matchingsize
181 );
182
183 MatchingControlStructure findBestMatching(const WeightedPolygon_t &_polygon);
184
185 static IndexList_t joinPoints(
186 Polygon_t &_newpolygon,
187 const VectorArray_t &_newpoints,
188 const IndexTupleList_t &_bestmatching
189 );
190
191 static Rotation_t findPlaneAligningRotation(
192 const PolygonWithIndices &_referencepositions,
193 const PolygonWithIndices &_currentpositions
194 );
195
196 static Rotation_t findPointAligningRotation(
197 const PolygonWithIndices &remainingold,
198 const PolygonWithIndices &remainingnew);
199};
200
201// declare specializations
202
203template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<0>();
204template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<1>();
205template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<2>();
206template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<3>();
207template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<4>();
208template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<5>();
209template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<6>();
210template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<7>();
211template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<8>();
212template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<9>();
213template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<10>();
214template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<11>();
215template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<12>();
216template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<14>();
217
218template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<0>();
219template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<1>();
220template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<2>();
221template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<3>();
222template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<4>();
223template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<5>();
224template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<6>();
225template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<7>();
226template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<8>();
227template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<9>();
228template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<10>();
229template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<11>();
230template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<12>();
231template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<14>();
232
233#endif /* SPHERICALPOINTDISTRIBUTION_HPP_ */
Note: See TracBrowser for help on using the repository browser.