PSCF v1.2
rpc/scft/iterator/AmIteratorBasis.h
1#ifndef RPC_AM_ITERATOR_BASIS_H
2#define RPC_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 Rpc
20{
21
22 template <int D> class System;
23
24 using namespace Util;
25
33 template <int D>
35 : public AmIteratorTmpl< Iterator<D>, DArray<double> >
36 {
37
38 public:
39
46
51
57 void readParameters(std::istream& in);
58
64 void outputTimers(std::ostream& out);
65
70
79 void setParameter(std::string name, DArray<int> ids,
80 double value, bool& success);
81
89 double getParameter(std::string name, DArray<int> ids, bool& success)
90 const;
91
92 // Inherited public member functions
95 using Iterator<D>::isFlexible;
96 using Iterator<D>::flexibleParams;
97 using Iterator<D>::setFlexibleParams;
98 using Iterator<D>::nFlexibleParams;
99 using ParameterModifier::setParameter; // overloaded method
100 using ParameterModifier::getParameter; // overloaded method
101
102 protected:
103
104 // Inherited protected members
111 using Iterator<D>::system;
112 using Iterator<D>::isSymmetric_;
113 using Iterator<D>::isFlexible_;
114 using Iterator<D>::flexibleParams_;
115
121 void setup(bool isContinuation);
122
123 private:
124
126 ImposedFieldsGenerator<D> imposedFields_;
127
129 AmbdInteraction interaction_;
130
132 double scaleStress_;
133
140 void setEqual(DArray<double>& a, DArray<double> const & b);
141
145 double dotProduct(DArray<double> const & a, DArray<double> const & b);
146
150 double maxAbs(DArray<double> const & hist);
151
158 void updateBasis(RingBuffer<DArray<double> > & basis,
159 RingBuffer<DArray<double> > const & hists);
160
169 void addHistories(DArray<double>& trial,
170 RingBuffer<DArray<double> > const & basis,
171 DArray<double> coeffs,
172 int nHist);
173
181 void addPredictedError(DArray<double>& fieldTrial,
182 DArray<double> const & resTrial,
183 double lambda);
184
188 bool hasInitialGuess();
189
195 int nElements();
196
202 void getCurrent(DArray<double>& curr);
203
210 void evaluate();
211
217 void getResidual(DArray<double>& resid);
218
224 void update(DArray<double>& newGuess);
225
229 void outputToLog();
230
231 };
232
233 #ifndef RPC_AM_ITERATOR_BASIS_TPP
234 // Suppress implicit instantiation
235 extern template class AmIteratorBasis<1>;
236 extern template class AmIteratorBasis<2>;
237 extern template class AmIteratorBasis<3>;
238 #endif
239
240} // namespace Rpc
241} // namespace Pscf
242#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.
Rpc implementation of the Anderson Mixing iterator with symmetry.
void setup(bool isContinuation)
Setup iterator just before entering iteration loop.
GArray< ParameterType > getParameterTypes()
Return specialized sweep parameter types to add to the Sweep object.
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 setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
void outputTimers(std::ostream &out)
Output timing results to log file.
Class defining mask & external fields to impose on the calculation.
Base class for iterative solvers for SCF equations.
Definition rpc/System.h:34
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
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.