PSCF v1.2
rpc/scft/iterator/Iterator.h
1#ifndef RPC_ITERATOR_H
2#define RPC_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 <pscf/sweep/ParameterModifier.h> // base class
12#include <util/param/ParamComposite.h> // base class
13#include <util/containers/FSArray.h>
14#include <util/global.h>
15#include <rpc/scft/sweep/Sweep.h>
16
17namespace Pscf {
18namespace Rpc
19{
20
21 template <int D>
22 class System;
23
24 using namespace Util;
25
31 template <int D>
32 class Iterator : public ParamComposite, public ParameterModifier
33 {
34
35 public:
36
40 Iterator();
41
47 Iterator(System<D>& system);
48
52 ~Iterator();
53
60 virtual int solve(bool isContinuation) = 0;
61
65 virtual void outputTimers(std::ostream& out) = 0;
66
70 virtual void clearTimers() = 0;
71
75 bool isSymmetric() const
76 { return (isSymmetric_); }
77
81 bool isFlexible() const
82 { return (isFlexible_); }
83
92
96 int nFlexibleParams() const;
97
103 void setFlexibleParams(FSArray<bool,6> const & flexParams);
104
105 protected:
106
111
116
121
125 System<D> const & system() const
126 { return *sysPtr_; }
127
132 { return *sysPtr_; }
133
134 private:
135
137 System<D>* sysPtr_;
138
139 };
140
141 // Inline member functions
142
143 // Default constructor
144 template <int D>
146 : isSymmetric_(false),
147 isFlexible_(false),
148 sysPtr_(0)
149 { setClassName("Iterator"); }
150
151 // Constructor
152 template <int D>
154 : isSymmetric_(false),
155 isFlexible_(false),
156 sysPtr_(&system)
157 { setClassName("Iterator"); }
158
159 // Destructor
160 template <int D>
163
164 // Get the number of flexible lattice parameters
165 template <int D>
167 {
168 UTIL_CHECK(flexibleParams_.size() ==
169 system().domain().unitCell().nParameter());
170 int nFlexParams = 0;
171 for (int i = 0; i < flexibleParams_.size(); i++) {
172 if (flexibleParams_[i]) nFlexParams++;
173 }
174 return nFlexParams;
175 }
176
177 // Set the array indicating which lattice parameters are flexible.
178 template <int D>
180 {
181 flexibleParams_ = flexParams;
182 if (nFlexibleParams() == 0) {
183 isFlexible_ = false;
184 } else {
185 isFlexible_ = true;
186 }
187 }
188
189} // namespace Rpc
190} // namespace Pscf
191#endif
bool isSymmetric_
Does this iterator use a symmetry-adapted basis?
void setFlexibleParams(FSArray< bool, 6 > const &flexParams)
Set the array indicating which lattice parameters are flexible.
virtual int solve(bool isContinuation)=0
Iterate to solution.
Iterator()
Default constructor.
System< D > & system()
Get parent system by non-const reference.
int nFlexibleParams() const
Get the number of flexible lattice parameters.
bool isFlexible_
Are any lattice parameters flexible during iteration?
bool isSymmetric() const
Does this iterator use a symmetry-adapted Fourier basis?
bool isFlexible() const
Return true iff unit cell has any flexible lattice parameters.
FSArray< bool, 6 > flexibleParams_
Array of indices of the lattice parameters that are flexible.
virtual void clearTimers()=0
Clear timers.
System< D > const & system() const
Get parent system by const reference.
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.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
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.