PSCF v1.2
rpg/scft/iterator/Iterator.h
1#ifndef RPG_ITERATOR_H
2#define RPG_ITERATOR_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 <rpg/scft/sweep/Sweep.h>
12#include <pscf/cuda/DeviceArray.h>
13#include <pscf/sweep/ParameterModifier.h> // base class
14#include <util/param/ParamComposite.h> // base class
15#include <util/global.h>
16
17namespace Pscf {
18namespace Rpg
19{
20
21 template <int D>
22 class System;
23
24 using namespace Util;
25
26 typedef Prdc::Cuda::DeviceArray<Prdc::Cuda::cudaReal> FieldCUDA;
27
33 template <int D>
34 class Iterator : public ParamComposite, public ParameterModifier
35 {
36
37 public:
38
42 Iterator();
43
49 Iterator(System<D>& system);
50
54 ~Iterator();
55
62 virtual int solve(bool isContinuation) = 0;
63
67 virtual void outputTimers(std::ostream& out) = 0;
68
72 virtual void clearTimers() = 0;
73
77 bool isSymmetric() const;
78
82 bool isFlexible() const;
83
91
95 int nFlexibleParams() const;
96
102 void setFlexibleParams(FSArray<bool,6> const & flexParams);
103
104 protected:
105
110
115
120
124 System<D>& system();
125
129 System<D> const & system() const;
130
131 private:
132
134 System<D>* sysPtr_;
135
136 };
137
138 // Default constructor
139 template<int D>
141 : isSymmetric_(false),
142 isFlexible_(false),
143 sysPtr_(nullptr)
144 { setClassName("Iterator"); }
145
146 // Constructor
147 template<int D>
149 : isSymmetric_(false),
150 isFlexible_(false),
151 sysPtr_(&system)
152 { setClassName("Iterator"); }
153
154 // Destructor
155 template<int D>
157 {}
158
159 // Does this iterator use a symmetry-adapted Fourier basis?
160 template<int D>
161 inline bool Iterator<D>::isSymmetric() const
162 { return isSymmetric_; }
163
164
165 // Is the unit cell flexible (true) or rigid (false) ?
166 template<int D>
167 inline bool Iterator<D>::isFlexible() const
168 { return isFlexible_; }
169
170 // Get the array indicating which lattice parameters are flexible.
171 template<int D>
173 { return flexibleParams_; }
174
175 // Get the number of flexible lattice parameters
176 template <int D>
178 {
179 UTIL_CHECK(flexibleParams_.size() ==
180 system().unitCell().nParameter());
181 int nFlexParams = 0;
182 for (int i = 0; i < flexibleParams_.size(); i++) {
183 if (flexibleParams_[i]) nFlexParams++;
184 }
185 return nFlexParams;
186 }
187
188 // Set the array indicating which lattice parameters are flexible.
189 template <int D>
191 {
192 flexibleParams_ = flexParams;
193 if (nFlexibleParams() == 0) {
194 isFlexible_ = false;
195 } else {
196 isFlexible_ = true;
197 }
198 }
199
200 // Return reference to parent system.
201 template<int D>
203 { return *sysPtr_; }
204
205 // Return const reference to parent system.
206 template<int D>
207 inline System<D> const & Iterator<D>::system() const
208 { return *sysPtr_; }
209
210} // namespace Rpg
211} // namespace Pscf
212#endif
System< D > & system()
Return reference to parent system.
void setFlexibleParams(FSArray< bool, 6 > const &flexParams)
Set the array indicating which lattice parameters are flexible.
Iterator()
Default constructor.
virtual int solve(bool isContinuation)=0
Iterate to solution.
virtual void clearTimers()=0
Clear timers.
bool isFlexible() const
Is the unit cell flexible (true) or rigid (false).
int nFlexibleParams() const
Get the number of flexible lattice parameters.
bool isSymmetric() const
Does this iterator use a symmetry-adapted Fourier basis?
bool isFlexible_
Is the unit cell flexible during iteration?
FSArray< bool, 6 > flexibleParams() const
Get the array indicating which lattice parameters are flexible.
virtual void outputTimers(std::ostream &out)=0
Log output timing results.
bool isSymmetric_
Does this iterator use a symmetry-adapted basis?
FSArray< bool, 6 > flexibleParams_
Array of indices of the lattice parameters that are flexible.
Main class for calculations that represent one system.
Definition rpg/System.h:107
A fixed capacity (static) contiguous array with a variable logical size.
Definition rpg/System.h:28
An object that can read multiple parameters from file.
void setClassName(const char *className)
Set class name string.
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.