PSCF v1.2
WaveList.h
1#ifndef RPG_WAVE_LIST_H
2#define RPG_WAVE_LIST_H
3/*
4* PSCF - Polymer Self-Consistent Field Theory
5*
6* Copyright 2016 - 2022, The Regents of the University of Minnesota
7* Distributed under the terms of the GNU General Public License.
8*/
9
10#include <prdc/cuda/RField.h>
11#include <prdc/crystal/UnitCell.h>
12
13#include <pscf/mesh/Mesh.h>
14#include <pscf/math/IntVec.h>
15#include <pscf/cuda/DeviceArray.h>
16
17#include <util/containers/DArray.h>
18
19namespace Pscf {
20namespace Rpg {
21
22 using namespace Util;
23 using namespace Pscf::Prdc;
24 using namespace Pscf::Prdc::Cuda;
25
37 template <int D>
39 {
40 public:
41
45 WaveList();
46
50 ~WaveList();
51
58 void allocate(Mesh<D> const & m, UnitCell<D> const & c);
59
66 void clearUnitCellData();
67
83
87 void computeKSq();
88
92 void computedKSq();
93
102 DeviceArray<int> const & minImages() const;
103
107 RField<D> const & kSq() const;
108
118 DeviceArray<cudaReal> const & dKSq() const;
119
125 RField<D> const & dKSq(int i) const;
126
135 DeviceArray<bool> const & implicitInverse() const;
136
144 bool hasVariableAngle() const;
145
149 bool isAllocated() const
150 { return isAllocated_; }
151
155 bool hasMinimumImages() const
156 { return hasMinimumImages_; }
157
161 bool hasKSq() const
162 { return hasKSq_; }
163
167 bool hasdKSq() const
168 { return hasdKSq_; }
169
170 private:
171
180 DeviceArray<int> minImages_;
181
183 RField<D> kSq_;
184
187
189 DArray<RField<D> > dKSqSlices_;
190
192 DeviceArray<bool> implicitInverse_;
193
195 IntVec<D> kMeshDimensions_;
196
198 int kSize_;
199
201 bool isAllocated_;
202
204 bool hasMinimumImages_;
205
207 bool hasKSq_;
208
210 bool hasdKSq_;
211
213 UnitCell<D> const * unitCellPtr_;
214
216 Mesh<D> const * meshPtr_;
217
219 UnitCell<D> const & unitCell() const
220 { return *unitCellPtr_; }
221
223 Mesh<D> const & mesh() const
224 { return *meshPtr_; }
225
226 };
227
228 // Get the array of minimum images on the device by reference.
229 template <int D>
231 {
232 UTIL_CHECK(hasMinimumImages_);
233 return minImages_;
234 }
235
236 // Get the kSq array on the device by reference.
237 template <int D>
238 inline RField<D> const & WaveList<D>::kSq() const
239 {
240 UTIL_CHECK(hasKSq_);
241 return kSq_;
242 }
243
244 // Get the full dKSq array on the device by reference.
245 template <int D>
247 {
248 UTIL_CHECK(hasdKSq_);
249 return dKSq_;
250 }
251
252 // Get a slice of the dKSq array on the device by reference.
253 template <int D>
254 inline RField<D> const & WaveList<D>::dKSq(int i) const
255 {
256 UTIL_CHECK(hasdKSq_);
257 return dKSqSlices_[i];
258 }
259
260 // Get the implicitInverse array by reference.
261 template <int D>
263 {
264 UTIL_CHECK(isAllocated_);
265 return implicitInverse_;
266 }
267
268 #ifndef RPG_WAVE_LIST_TPP
269 // Suppress implicit instantiation
270 extern template class WaveList<1>;
271 extern template class WaveList<2>;
272 extern template class WaveList<3>;
273 #endif
274
275}
276}
277//#include "WaveList.tpp"
278#endif
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Description of a regular grid of points in a periodic domain.
Field of real double precision values on an FFT mesh.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
Class to calculate and store properties of wavevectors.
Definition WaveList.h:39
bool hasdKSq() const
Has the dKSq array been computed?
Definition WaveList.h:167
DeviceArray< cudaReal > const & dKSq() const
Get the full dKSq array on the device by reference.
Definition WaveList.h:246
void computedKSq()
Compute derivatives of |k|^2 w/ respect to unit cell parameters.
Definition WaveList.tpp:602
bool isAllocated() const
Has memory been allocated for arrays?
Definition WaveList.h:149
bool hasKSq() const
Has the kSq array been computed?
Definition WaveList.h:161
~WaveList()
Destructor.
Definition WaveList.tpp:421
DeviceArray< int > const & minImages() const
Get the array of minimum images on the device by reference.
Definition WaveList.h:230
WaveList()
Constructor.
Definition WaveList.tpp:410
void computeMinimumImages()
Compute minimum images of wavevectors.
Definition WaveList.tpp:489
void clearUnitCellData()
Clear all internal data that depends on lattice parameters.
Definition WaveList.tpp:479
void allocate(Mesh< D > const &m, UnitCell< D > const &c)
Allocate memory and set association with a Mesh and UnitCell object.
Definition WaveList.tpp:425
DeviceArray< bool > const & implicitInverse() const
Get the implicitInverse array by reference.
Definition WaveList.h:262
void computeKSq()
Compute sq.
Definition WaveList.tpp:561
bool hasMinimumImages() const
Have minimum images been computed?
Definition WaveList.h:155
RField< D > const & kSq() const
Get the kSq array on the device by reference.
Definition WaveList.h:238
bool hasVariableAngle() const
Does this unit cell have an angle that can change?
Dynamically allocatable contiguous array template.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.