1#ifndef RPC_LR_POST_AM_COMPRESSOR_TPP
2#define RPC_LR_POST_AM_COMPRESSOR_TPP
11#include "LrAmCompressor.h"
12#include <rpc/System.h>
13#include <rpc/fts/compressor/intra/IntraCorrelation.h>
14#include <pscf/mesh/MeshIterator.h>
27 intraCorrelation_(system)
28 { setClassName(
"LrAmCompressor"); }
48 const int nMonomer = system().mixture().nMonomer();
49 const int meshSize = system().domain().mesh().size();
50 IntVec<D> const & dimensions = system().domain().mesh().dimensions();
56 for (
int i = 0; i < D; ++i) {
58 kMeshDimensions_[i] = dimensions[i];
60 kMeshDimensions_[i] = dimensions[i]/2 + 1;
66 newBasis_.allocate(meshSize);
67 w0_.allocate(nMonomer);
68 wFieldTmp_.allocate(nMonomer);
69 resid_.allocate(dimensions);
70 residK_.allocate(dimensions);
71 intraCorrelationK_.allocate(kMeshDimensions_);
72 for (
int i = 0; i < nMonomer; ++i) {
73 w0_[i].allocate(dimensions);
74 wFieldTmp_[i].allocate(dimensions);
81 for (
int i = 0; i < nMonomer; ++i) {
82 for (
int j = 0; j< meshSize; ++j){
83 w0_[i][j] = system().w().rgrid(i)[j];
88 intraCorrelationK_ = intraCorrelation_.computeIntraCorrelations();
120 for (
int i = 0; i < n; i++) {
122 if (std::isnan(a[i]) || std::isnan(b[i])) {
124 __FILE__,__LINE__,0);
140 for (
int i = 0; i < n; i++) {
142 if (std::isnan(value)) {
143 throw NanException(
"LrAmCompressor::dotProduct",
144 __FILE__, __LINE__, 0);
146 if (fabs(value) > max) {
158 LrAmCompressor<D>::updateBasis(
165 const int n = hists[0].capacity();
168 for (
int i = 0; i < n; i++) {
169 newBasis_[i] = hists[0][i] - hists[1][i];
172 basis.append(newBasis_);
183 for (
int i = 0; i < nHist; i++) {
184 for (
int j = 0; j < n; j++) {
186 trial[j] += coeffs[i] * -1 * basis[i][j];
195 double LrAmCompressor<D>::computeLambda(
double r)
211 const int n = fieldTrial.
capacity();
212 const double vMonomer = system().mixture().vMonomer();
216 for (
int i = 0 ; i < n; ++i) {
217 resid_[i] = resTrial[i];
221 system().domain().fft().forwardTransform(resid_, residK_);
225 MeshIterator<D> iter;
226 iter.setDimensions(kMeshDimensions_);
227 for (iter.begin(); !iter.atEnd(); ++iter) {
228 factor = 1.0 / (vMonomer * intraCorrelationK_[iter.rank()]);
229 residK_[iter.rank()][0] *= factor;
230 residK_[iter.rank()][1] *= factor;
236 system().domain().fft().inverseTransformUnsafe(residK_, resid_);
239 for (
int i = 0; i < n; i++) {
240 fieldTrial[i] += lambda * resid_[i];
248 bool LrAmCompressor<D>::hasInitialGuess()
249 {
return system().w().hasData(); }
255 int LrAmCompressor<D>::nElements()
256 {
return system().domain().mesh().size(); }
268 const int meshSize = system().domain().mesh().size();
277 for (
int i = 0; i < meshSize; i++){
278 curr[i] = (*currSys)[0][i] - w0_[0][i];
287 void LrAmCompressor<D>::evaluate()
299 const int n = nElements();
300 const int nMonomer = system().mixture().nMonomer();
301 const int meshSize = system().domain().mesh().size();
304 for (
int i = 0 ; i < n; ++i) {
309 for (
int j = 0; j < nMonomer; ++j) {
310 for (
int k = 0; k < meshSize; ++k) {
311 resid[k] += system().c().rgrid(j)[k];
324 const int nMonomer = system().mixture().nMonomer();
325 const int meshSize = system().domain().mesh().size();
329 for (
int i = 0; i < nMonomer; i++){
330 for (
int k = 0; k < meshSize; k++){
331 wFieldTmp_[i][k] = w0_[i][k] + newGuess[k];
336 system().setWRGrid(wFieldTmp_);
340 void LrAmCompressor<D>::outputToLog()
351 out <<
"LrAmCompressor time contributions:\n";
Template for Anderson mixing iterator algorithm.
An IntVec<D, T> is a D-component vector of elements of integer type T.
Exception thrown when not-a-number (NaN) is encountered.
Base class for iterators that impose incompressibility.
Anderson Mixing compressor with linear-response mixing step.
void readParameters(std::istream &in)
Read all parameters and initialize.
~LrAmCompressor()
Destructor.
LrAmCompressor(System< D > &system)
Constructor.
void outputTimers(std::ostream &out)
Return compressor times contributions.
void clearTimers()
Clear all timers (reset accumulated time to zero).
void setup(bool isContinuation)
Initialize just before entry to iterative loop.
int compress()
Compress to obtain partial saddle point w+.
Main class for SCFT or PS-FTS simulation of one system.
int capacity() const
Return allocated size.
Dynamically allocatable contiguous array template.
Class for storing history of previous values in an array.
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
cudaReal max(DeviceArray< cudaReal > const &in)
Get maximum of array elements (GPU kernel wrapper).
PSCF package top-level namespace.
Utility classes for scientific computation.
float product(float a, float b)
Product for float Data.