PSCF v1.2
rpg/solvers/Propagator.h
1#ifndef RPG_PROPAGATOR_H
2#define RPG_PROPAGATOR_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <prdc/cuda/RField.h> // member array
12#include <pscf/cuda/DeviceArray.h> // member array
13#include <pscf/solvers/PropagatorTmpl.h> // base class template
14#include <util/containers/DArray.h> // member array
15
16namespace Pscf {
17
18 // Forward declaration
19 template <int D> class Mesh;
20
21namespace Rpg {
22
23 // Forward declaration
24 template <int D> class Block;
25
26 using namespace Util;
27 using namespace Pscf::Prdc;
28 using namespace Pscf::Prdc::Cuda;
29
51 template <int D>
52 class Propagator : public PropagatorTmpl< Propagator<D> >
53 {
54
55 public:
56
57 // Public typedefs (used by template classes)
58
63
68
73
78
79 // Member functions
80
84 Propagator();
85
90
96 void setBlock(Block<D>& block);
97
104 void allocate(int ns, const Mesh<D>& mesh);
105
119 void reallocate(int ns);
120
130 void solve();
131
142 void solve(RField<D> const & head);
143
151 double computeQ();
152
158 RField<D> const & q(int i) const;
159
163 RField<D> const & head();
164
168 RField<D> const & tail() const;
169
173 DeviceArray<cudaReal> const & qAll();
174
178 Block<D>& block();
179
183 Block<D> const & block() const;
184
188 int ns() const;
189
193 bool isAllocated() const;
194
201
202 protected:
203
207 void computeHead();
208
209 private:
210
218 DeviceArray<cudaReal> qFieldsAll_;
219
228 DArray<RField<D> > qFields_;
229
231 Block<D>* blockPtr_;
232
234 Mesh<D> const * meshPtr_;
235
237 int ns_;
238
240 bool isAllocated_;
241
242 };
243
244 // Inline member functions
245
246 /*
247 * Return q-field at beginning of block.
248 */
249 template <int D>
250 inline
252 {
253 UTIL_CHECK(isAllocated());
254 return qFields_[0];
255 }
256
257 /*
258 * Return q-field at end of block, after solution.
259 */
260 template <int D>
261 inline
263 {
264 UTIL_CHECK(isSolved());
265 return qFields_[ns_-1];
266 }
267
268 /*
269 * Return const q-field at specified step by reference.
270 */
271 template <int D>
272 inline
273 RField<D> const & Propagator<D>::q(int i) const
274 {
275 UTIL_CHECK(isSolved());
276 return qFields_[i];
277 }
278
279 /*
280 * Return the full array of q-fields.
281 */
282 template <int D>
283 inline
285 {
286 UTIL_CHECK(isSolved());
287 return qFieldsAll_;
288 }
289
290 /*
291 * Get the associated Block object (non-const reference)
292 */
293 template <int D>
294 inline
296 {
297 assert(blockPtr_);
298 return *blockPtr_;
299 }
300
301 /*
302 * Get the associated Block object (non-const reference)
303 */
304 template <int D>
305 inline
307 {
308 assert(blockPtr_);
309 return *blockPtr_;
310 }
311
312 /*
313 * Get the number ns of chain contour points.
314 */
315 template <int D>
316 inline
318 { return ns_; }
319
320 template <int D>
321 inline
323 { return isAllocated_; }
324
325 /*
326 * Associate this propagator with a block and direction
327 */
328 template <int D>
329 inline
331 { blockPtr_ = &block; }
332
333
334 #ifndef RPG_PROPAGATOR_TPP
335 // Suppress implicit instantiation
336 extern template class Propagator<1>;
337 extern template class Propagator<2>;
338 extern template class Propagator<3>;
339 #endif
340
341}
342}
343#endif
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
Description of a regular grid of points in a periodic domain.
Field of real double precision values on an FFT mesh.
Template for propagator classes.
const Propagator< D > & partner() const
const Propagator< D > & source(int id) const
Block within a branched polymer.
MDE solver for one-direction of one block.
RField< D > CField
Monomer concentration field type.
Block< D > & block()
Get the associated Block object by reference.
int ns() const
Get the number of chain contour points.
RField< D > Field
Generic field (function of position).
void solve()
Solve the modified diffusion equation (MDE) for this block.
DeviceArray< cudaReal > const & qAll()
Return the full array of q-fields (after propagator is solved).
double computeQ()
Compute and return partition function for the molecule.
void allocate(int ns, const Mesh< D > &mesh)
Allocate propagator arrays.
RField< D > const & head()
Return q-field at beginning of block (initial condition).
void computeHead()
Compute initial QField at head from tail QFields of sources.
RField< D > const & tail() const
Return q-field at end of block (after propagator is solved).
RField< D > const & q(int i) const
Return const q-field at specified step by reference (after solving).
RField< D > WField
Chemical potential field type.
bool isAllocated() const
Has memory been allocated for this propagator?
void setBlock(Block< D > &block)
Associate this propagator with a block.
RField< D > QField
Propagator q-field type.
void reallocate(int ns)
Reallocate memory used by this propagator.
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.