PSCF v1.2
rpg/scft/iterator/AmIteratorBasis.h
1#ifndef RPG_AM_ITERATOR_BASIS_H
2#define RPG_AM_ITERATOR_BASIS_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 argument
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>
34 : public AmIteratorTmpl< Iterator<D>, DArray<double> >
35 {
36
37 public:
38
45
50
56 void readParameters(std::istream& in);
57
63 void outputTimers(std::ostream& out);
64
69
78 void setParameter(std::string name, DArray<int> ids,
79 double value, bool& success);
80
88 double getParameter(std::string name, DArray<int> ids, bool& success)
89 const;
90
91 // Inherited public member functions
94 using Iterator<D>::isFlexible;
95 using Iterator<D>::flexibleParams;
96 using Iterator<D>::setFlexibleParams;
97 using Iterator<D>::nFlexibleParams;
98 using ParameterModifier::setParameter; // overloaded method
99 using ParameterModifier::getParameter; // overloaded method
100
101 protected:
102
103 // Inherited protected members
110 using Iterator<D>::system;
111 using Iterator<D>::isSymmetric_;
112 using Iterator<D>::isFlexible_;
113 using Iterator<D>::flexibleParams_;
114
120 void setup(bool isContinuation);
121
122 private:
123
125 ImposedFieldsGenerator<D> imposedFields_;
126
128 AmbdInteraction interaction_;
129
131 double scaleStress_;
132
139 void setEqual(DArray<double>& a, DArray<double> const & b);
140
144 double dotProduct(DArray<double> const & a, DArray<double> const & b);
145
149 double maxAbs(DArray<double> const & hist);
150
157 void updateBasis(RingBuffer< DArray<double> > & basis,
158 RingBuffer< DArray<double> > const & hists);
159
168 void addHistories(DArray<double>& trial,
169 RingBuffer<DArray<double> > const & basis,
170 DArray<double> coeffs, int nHist);
171
179 void addPredictedError(DArray<double>& fieldTrial,
180 DArray<double> const & resTrial,
181 double lambda);
182
184 bool hasInitialGuess();
185
189 int nElements();
190
196 void getCurrent(DArray<double>& curr);
197
201 void evaluate();
202
208 void getResidual(DArray<double>& resid);
209
215 void update(DArray<double>& newGuess);
216
220 void outputToLog();
221
222 };
223
224 #ifndef RPG_AM_ITERATOR_BASIS_TPP
225 // Suppress implicit instantiation
226 extern template class AmIteratorBasis<1>;
227 extern template class AmIteratorBasis<2>;
228 extern template class AmIteratorBasis<3>;
229 #endif
230
231} // namespace Rpg
232} // namespace Pscf
233#endif
Template for Anderson mixing iterator algorithm.
Modified interaction to compute residual defn.
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.
double getParameter(std::string name, DArray< int > ids, bool &success) const
Get the value of a specialized sweep parameter.
AmIteratorBasis(System< D > &system)
Constructor.
void readParameters(std::istream &in)
Read all parameters and initialize.
void setup(bool isContinuation)
Setup iterator just before entering iteration loop.
void outputTimers(std::ostream &out)
Output timing results to log file.
void setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
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.