PSCF v1.2
AmIteratorGrid.h
1#ifndef RPG_AM_ITERATOR_GRID_H
2#define RPG_AM_ITERATOR_GRID_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 "Iterator.h" // base class
12#include "ImposedFieldsGenerator.h" // member variable
13#include <pscf/iterator/AmIteratorTmpl.h> // base class template
14#include <pscf/iterator/AmbdInteraction.h> // member variable
15#include <util/containers/DArray.h> // base class argument
16#include <util/containers/RingBuffer.h> // method input variable
17
18namespace Pscf {
19namespace Rpg
20{
21
22 template <int D>
23 class System;
24
25 using namespace Util;
26
32 template <int D>
33 class AmIteratorGrid : public AmIteratorTmpl<Iterator<D>, FieldCUDA>
34 {
35
36 public:
37
44
49
55 void readParameters(std::istream& in);
56
62 void outputTimers(std::ostream& out);
63
76 void setParameter(std::string name, DArray<int> ids,
77 double value, bool& success);
85 double getParameter(std::string name, DArray<int> ids, bool& success)
86 const;
87
88 // Inherited public member functions
91 using Iterator<D>::isFlexible;
92 using Iterator<D>::flexibleParams;
93 using Iterator<D>::setFlexibleParams;
94 using Iterator<D>::nFlexibleParams;
95 using ParameterModifier::setParameter; // overloaded method
96 using ParameterModifier::getParameter; // overloaded method
97
98 protected:
99
100 // Inherited protected members
107 using Iterator<D>::system;
108 using Iterator<D>::isSymmetric_;
109 using Iterator<D>::isFlexible_;
110 using Iterator<D>::flexibleParams_;
111
117 void setup(bool isContinuation);
118
119 private:
120
122 ImposedFieldsGenerator<D> imposedFields_;
123
125 AmbdInteraction interaction_;
126
128 double scaleStress_;
129
130 // Virtual functions used to implement AM algorithm
131
138 void setEqual(FieldCUDA& a, FieldCUDA const & b);
139
143 double dotProduct(FieldCUDA const & a, FieldCUDA const & b);
144
150 double maxAbs(FieldCUDA const & a);
151
158 void updateBasis(RingBuffer<FieldCUDA> & basis,
159 RingBuffer<FieldCUDA> const & hists);
160
169 void addHistories(FieldCUDA& trial,
170 RingBuffer<FieldCUDA> const & basis,
171 DArray<double> coeffs, int nHist);
172
180 void addPredictedError(FieldCUDA& fieldTrial,
181 FieldCUDA const & resTrial,
182 double lambda);
183
185 bool hasInitialGuess();
186
190 int nElements();
191
197 void getCurrent(FieldCUDA& curr);
198
202 void evaluate();
203
209 void getResidual(FieldCUDA& resid);
210
216 void update(FieldCUDA& newGuess);
217
221 void outputToLog();
222
223 // --- Private member functions specific to this implementation ---
224
230 cudaReal findAverage(FieldCUDA const & field);
231
232 };
233
234 #ifndef RPG_AM_ITERATOR_GRID_TPP
235 // Suppress implicit instantiation
236 extern template class AmIteratorGrid<1>;
237 extern template class AmIteratorGrid<2>;
238 extern template class AmIteratorGrid<3>;
239 #endif
240
241} // namespace Rpg
242} // namespace Pscf
243#endif
Template for Anderson mixing iterator algorithm.
Modified interaction to compute residual defn.
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
virtual void setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
virtual double getParameter(std::string name, DArray< int > ids, bool &success) const
Get the value of a specialized sweep parameter.
Rpg implementation of the Anderson Mixing iterator.
AmIteratorGrid(System< D > &system)
Constructor.
void readParameters(std::istream &in)
Read all parameters and initialize.
void setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
double getParameter(std::string name, DArray< int > ids, bool &success) const
Get the value of a specialized sweep parameter.
void setup(bool isContinuation)
Setup iterator just before entering iteration loop.
void outputTimers(std::ostream &out)
Output timing results to log file.
GArray< ParameterType > getParameterTypes()
Return specialized sweep parameter types to add to the Sweep object.
Class defining mask & external fields to impose on the calculation.
Base class for iterative solvers for SCF equations.
Definition rpg/System.h:37
Main class for calculations that represent one system.
Definition rpg/System.h:107
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
Definition GArray.h:34
FSArrayParam< Type, N > & readOptionalFSArray(std::istream &in, const char *label, FSArray< Type, N > &array, int size)
Add and read an optional FSArray < Type, N > array parameter.
void setClassName(const char *className)
Set class name string.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
void readParamCompositeOptional(std::istream &in, ParamComposite &child, bool next=true)
Add and attempt to read an optional child ParamComposite.
Class for storing history of previous values in an array.
Definition RingBuffer.h:27
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.