forked from gfrd/egfrd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBox.hpp
413 lines (362 loc) · 11.4 KB
/
Box.hpp
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
409
410
411
412
413
#ifndef BOX_HPP
#define BOX_HPP
#include <boost/array.hpp>
#include <boost/range/begin.hpp>
#include <boost/range/end.hpp>
#include <boost/multi_array.hpp>
#include <utility>
#include <algorithm>
#include "utils/array_helper.hpp"
#include "Shape.hpp"
#include "linear_algebra.hpp"
template<typename T_>
class Box
{
public:
typedef T_ value_type;
typedef Vector3<T_> position_type;
typedef T_ length_type;
typedef enum side_enum_type {TOP=0, BOTTOM=1, LEFT=2, RIGHT=3, FRONT=4, BACK=5} side_enum_type; // The typedef is a little bit C style but doesn't matter for C++
public:
Box(position_type const& position = position_type())
: position_(position),
units_(array_gen(
create_vector<position_type>(1., 0., 0.),
create_vector<position_type>(0., 1., 0.),
create_vector<position_type>(0., 0., 1.))),
half_extent_(array_gen<length_type>(0.5, 0.5, 0.5)) {}
template<typename Tarray_>
Box(position_type const& position, Tarray_ const& half_extent)
: position_(position),
units_(array_gen(
create_vector<position_type>(1., 0., 0.),
create_vector<position_type>(0., 1., 0.),
create_vector<position_type>(0., 0., 1.)))
{
std::copy(boost::begin(half_extent), boost::end(half_extent),
boost::begin(half_extent_));
}
template<typename Tarray1, typename Tarray2>
Box(position_type const& position,
Tarray1 const& units, Tarray2 const& half_extent)
: position_(position)
{
std::copy(boost::begin(units), boost::end(units),
boost::begin(units_));
std::copy(boost::begin(half_extent), boost::end(half_extent),
boost::begin(half_extent_));
}
template<typename Tarray_>
Box(position_type const& position,
position_type const& vx,
position_type const& vy,
position_type const& vz,
Tarray_ const& half_extent = array_gen<length_type>(0.5, 0.5, 0.5))
: position_(position), units_(array_gen(vx, vy, vz))
{
std::copy(boost::begin(half_extent), boost::end(half_extent),
boost::begin(half_extent_));
}
Box(position_type const& position,
position_type const& vx,
position_type const& vy,
position_type const& vz,
length_type const& half_lx,
length_type const& half_ly,
length_type const& half_lz)
: position_(position), units_(array_gen(vx, vy, vz)),
half_extent_(array_gen<length_type>(half_lx, half_ly, half_lz)) {}
position_type const& position() const
{
return position_;
}
position_type& position()
{
return position_;
}
position_type const& unit_x() const
{
return units_[0];
}
position_type& unit_x()
{
return units_[0];
}
position_type const& unit_y() const
{
return units_[1];
}
position_type& unit_y()
{
return units_[1];
}
position_type const& unit_z() const
{
return units_[2];
}
position_type& unit_z()
{
return units_[2];
}
boost::array<position_type, 3> const& units() const
{
return units_;
}
boost::array<position_type, 3>& units()
{
return units_;
}
length_type const Lx() const
{
return 2 * half_extent_[0];
}
length_type Lx()
{
return 2 * half_extent_[0];
}
length_type const Ly() const
{
return 2 * half_extent_[1];
}
length_type Ly()
{
return 2 * half_extent_[1];
}
length_type const Lz() const
{
return 2 * half_extent_[2];
}
length_type Lz()
{
return 2 * half_extent_[2];
}
boost::array<length_type, 3> const& half_extent() const
{
return half_extent_;
}
boost::array<length_type, 3>& half_extent()
{
return half_extent_;
}
const int dof() const
{ // degrees of freedom for particle movement
return 3;
}
bool operator==(const Box& rhs) const
{
return position_ == rhs.position_ && units_ == rhs.units_ &&
half_extent_ == rhs.half_extent_;
}
bool operator!=(const Box& rhs) const
{
return !operator==(rhs);
}
std::string show(int precision)
{
std::ostringstream strm;
strm.precision(precision);
strm << *this;
return strm.str();
}
protected:
// Middle of box.
position_type position_;
boost::array<position_type, 3> units_;
// Extent: for a box of 2 by 2 by 2, half_extent is 1 by 1 by 1.
boost::array<length_type, 3> half_extent_;
};
template<typename T_>
inline boost::array<typename Box<T_>::length_type, 3>
to_internal(Box<T_> const& obj, typename Box<T_>::position_type const& pos)
{
// Return pos relative to position of box.
typedef typename Box<T_>::position_type position_type;
position_type pos_vector(subtract(pos, obj.position()));
return array_gen<typename Box<T_>::length_type>(
dot_product(pos_vector, obj.unit_x()),
dot_product(pos_vector, obj.unit_y()),
dot_product(pos_vector, obj.unit_z()));
}
template<typename T_>
inline std::pair<typename Box<T_>::position_type,
std::pair<typename Box<T_>::length_type,
typename Box<T_>::length_type> >
project_point(Box<T_> const& obj, typename Box<T_>::position_type const& pos)
{
typedef typename Box<T_>::length_type length_type;
const boost::array<length_type, 3> x_y_z(to_internal(obj, pos));
const boost::array<length_type, 3> dx_dy_dz(subtract(abs(x_y_z), obj.half_extent()));
const length_type min_dist ( (dx_dy_dz[0] <= 0 &&
dx_dy_dz[1] <= 0 &&
dx_dy_dz[2] <= 0) ? std::max(dx_dy_dz[0], std::max(dx_dy_dz[1], dx_dy_dz[2]) )
: 1.0 ); // TODO make this is proper distance if we need it
// TODO the projection of the point is not very well defined.
// The projection of a point on a box.
return std::make_pair(typename Box<T_>::position_type(),
std::make_pair(typename Box<T_>::length_type(),
min_dist) );
}
template<typename T_>
inline std::pair<typename Box<T_>::position_type,
std::pair<typename Box<T_>::length_type,
typename Box<T_>::length_type> >
project_point_on_surface(Box<T_> const& obj,
typename Box<T_>::position_type const& pos)
{
// Todo. If we ever need it.
// The projection of a point on a box.
return std::make_pair(typename Box<T_>::position_type(),
std::make_pair(typename Box<T_>::length_type(),
typename Box<T_>::length_type()) );
}
template<typename T_>
inline typename Box<T_>::length_type
distance(Box<T_> const& obj, typename Box<T_>::position_type const& pos)
{
typedef typename Box<T_>::length_type length_type;
boost::array<length_type, 3> x_y_z(to_internal(obj, pos));
boost::array<length_type, 3> dx_dy_dz(subtract(abs(x_y_z), obj.half_extent()));
if (dx_dy_dz[0] > 0)
{
if (dx_dy_dz[1] > 0)
{
if (dx_dy_dz[2] > 0)
{
// Far away from box.
return length(dx_dy_dz);
}
else
{
return length(array_slice<0, 2>(dx_dy_dz));
}
}
else
{
if (dx_dy_dz[2] > 0)
{
return std::sqrt(gsl_pow_2(dx_dy_dz[0]) + gsl_pow_2(dx_dy_dz[2]));
}
else
{
return dx_dy_dz[0];
}
}
}
else
{
if (dx_dy_dz[1] > 0)
{
if (dx_dy_dz[2] > 0)
{
return length(array_slice<1, 3>(dx_dy_dz));
}
else
{
return dx_dy_dz[1];
}
}
else
{
if (dx_dy_dz[2] > 0)
{
return dx_dy_dz[2];
}
else
{
// Inside box.
return std::max(std::max(dx_dy_dz[0], dx_dy_dz[1]), dx_dy_dz[2]);
}
}
}
}
template<typename T_>
inline std::pair<typename Box<T_>::position_type, bool>
deflect(Box<T_> const& obj,
typename Box<T_>::position_type const& r0,
typename Box<T_>::position_type const& d )
{
// Displacements are not deflected on cuboidal regions,
// but this function has to be defined for every shape to be used in structure.
// For now it just returns original pos. + displacement. The changeflage = false.
return std::make_pair( add(r0, d), false );
}
/*
template<typename T_>
inline typename Box<T_>::position_type
deflect_back(Box<T_> const& obj,
typename Box<T_>::position_type const& r,
typename Box<T_>::position_type const& u_z )
{
// Return the vector r without any changes
return r;
}
*/
template<typename T, typename Trng>
inline typename Box<T>::position_type
random_position(Box<T> const& shape, Trng& rng)
{
boost::const_multi_array_ref<T, 2> mat(&shape.units()[0][0], boost::extents[3][3]);
// -1 < rng() < 1. See for example CuboidalRegion.hpp.
return add(
shape.position(),
multiply(
create_vector<typename Box<T>::position_type>(
shape.half_extent()[0] * rng(),
shape.half_extent()[1] * rng(),
shape.half_extent()[2] * rng()),
mat));
}
template<typename T>
inline Box<T> const& shape(Box<T> const& shape)
{
return shape;
}
template<typename T>
inline Box<T>& shape(Box<T>& shape)
{
return shape;
}
template<typename T_>
struct is_shape<Box<T_> >: public boost::mpl::true_ {};
template<typename T_>
struct shape_position_type<Box<T_> >
{
typedef typename Box<T_>::position_type type;
};
template<typename Tstrm_, typename Ttraits_, typename T_>
inline std::basic_ostream<Tstrm_, Ttraits_>& operator<<(std::basic_ostream<Tstrm_, Ttraits_>& strm,
const Box<T_>& v)
{
strm << "{" << v.position() << ", " << v.unit_x() << ", " << v.unit_y() << ", " << v.unit_z() << "," << v.Lx() << ", " << v.Ly() << ", " << v.Lz() << "}";
return strm;
}
#if defined(HAVE_TR1_FUNCTIONAL)
namespace std { namespace tr1 {
#elif defined(HAVE_STD_HASH)
namespace std {
#elif defined(HAVE_BOOST_FUNCTIONAL_HASH_HPP)
namespace boost {
#endif
template<typename T_>
struct hash<Box<T_> >
{
typedef Box<T_> argument_type;
std::size_t operator()(argument_type const& val)
{
return hash<typename argument_type::position_type>()(val.position()) ^
hash<typename argument_type::position_type>()(val.unit_x()) ^
hash<typename argument_type::position_type>()(val.unit_y()) ^
hash<typename argument_type::position_type>()(val.unit_z()) ^
hash<typename argument_type::length_type>()(val.half_extent()[0]) ^
hash<typename argument_type::length_type>()(val.half_extent()[1]) ^
hash<typename argument_type::length_type>()(val.half_extent()[2]);
}
};
#if defined(HAVE_TR1_FUNCTIONAL)
} } // namespace std::tr1
#elif defined(HAVE_STD_HASH)
} // namespace std
#elif defined(HAVE_BOOST_FUNCTIONAL_HASH_HPP)
} // namespace boost
#endif
#endif /* BOX_HPP */