1#ifndef RPC_LR_COMPRESSOR_TPP
2#define RPC_LR_COMPRESSOR_TPP
11#include "LrCompressor.h"
12#include <rpc/System.h>
13#include <rpc/fts/compressor/intra/IntraCorrelation.h>
15#include <util/format/Dbl.h>
16#include <pscf/mesh/MeshIterator.h>
17#include <pscf/iterator/NanException.h>
18#include <prdc/crystal/shiftToMinimum.h>
34 errorType_(
"rmsResid"),
37 intraCorrelation_(system)
50 read(in,
"epsilon", epsilon_);
51 readOptional(in,
"maxItr", maxItr_);
52 readOptional(in,
"verbose", verbose_);
53 readOptional(in,
"errorType", errorType_);
60 const int nMonomer = system().mixture().nMonomer();
61 IntVec<D> const & dimensions = system().domain().mesh().dimensions();
62 for (
int i = 0; i < D; ++i) {
64 kMeshDimensions_[i] = dimensions[i];
66 kMeshDimensions_[i] = dimensions[i]/2 + 1;
72 resid_.allocate(dimensions);
73 residK_.allocate(dimensions);
74 wFieldTmp_.allocate(nMonomer);
75 intraCorrelationK_.allocate(kMeshDimensions_);
76 for (
int i = 0; i < nMonomer; ++i) {
77 wFieldTmp_[i].allocate(dimensions);
83 intraCorrelationK_ = intraCorrelation_.computeIntraCorrelations();
103 for (itr_ = 0; itr_ < maxItr_; ++itr_) {
106 Log::file() <<
"------------------------------- \n";
117 error = computeError(verbose_);
119 Log::file() <<
", error = NaN" << std::endl;
123 Log::file() <<
", error = " <<
Dbl(error, 15) << std::endl;
127 if (error < epsilon_) {
133 Log::file() <<
"-------------------------------\n";
163 Log::file() <<
"Iterator failed to converge.\n";
172 const int nMonomer = system().mixture().nMonomer();
173 const int meshSize = system().domain().mesh().size();
176 for (
int i = 0 ; i < meshSize; ++i) {
181 for (
int j = 0; j < nMonomer; ++j) {
182 for (
int k = 0; k < meshSize; ++k) {
183 resid_[k] += system().c().rgrid(j)[k];
190 void LrCompressor<D>::updateWFields()
192 const int nMonomer = system().mixture().nMonomer();
193 const int meshSize = system().domain().mesh().size();
194 const double vMonomer = system().mixture().vMonomer();
197 system().domain().fft().forwardTransform(resid_, residK_);
198 MeshIterator<D> iter;
199 iter.setDimensions(residK_.dftDimensions());
200 for (iter.begin(); !iter.atEnd(); ++iter) {
201 residK_[iter.rank()][0] *= 1.0 / (vMonomer * intraCorrelationK_[iter.rank()]);
202 residK_[iter.rank()][1] *= 1.0 / (vMonomer * intraCorrelationK_[iter.rank()]);
206 system().domain().fft().inverseTransformUnsafe(residK_, resid_);
208 for (
int i = 0; i < nMonomer; i++){
209 for (
int k = 0; k < meshSize; k++){
210 wFieldTmp_[i][k] = system().w().rgrid(i)[k] + resid_[k];
213 system().setWRGrid(wFieldTmp_);
217 void LrCompressor<D>::outputToLog()
224 double total = timerTotal_.time();
226 out <<
"LrCompressor time contributions:\n";
228 out <<
"Total" << std::setw(22)<<
"Per Iteration"
229 << std::setw(9) <<
"Fraction" <<
"\n";
230 out <<
"MDE solution: "
231 <<
Dbl(timerMDE_.time(), 9, 3) <<
" s, "
232 <<
Dbl(timerMDE_.time()/totalItr_, 9, 3) <<
" s, "
233 <<
Dbl(timerMDE_.time()/total, 9, 3) <<
"\n";
252 for (
int i = 0; i < n; i++) {
254 if (std::isnan(value)) {
255 throw NanException(
"LrCompressor::dotProduct",__FILE__,__LINE__,0);
257 if (fabs(value) > max) {
266 double LrCompressor<D>::dotProduct(RField<D>
const & a,
269 const int n = a.capacity();
272 for (
int i = 0; i < n; i++) {
274 if (std::isnan(a[i]) || std::isnan(b[i])) {
275 throw NanException(
"AmCompressor::dotProduct",__FILE__,__LINE__,0);
284 double LrCompressor<D>::norm(RField<D>
const & a)
286 double normSq = dotProduct(a, a);
292 double LrCompressor<D>::computeError(
int verbose)
294 const int meshSize = system().domain().mesh().size();
298 double maxRes =
maxAbs(resid_);
300 double normRes = norm(resid_);
302 double rmsRes = normRes/sqrt(meshSize);
303 if (errorType_ ==
"maxResid") {
305 }
else if (errorType_ ==
"normResid") {
307 }
else if (errorType_ ==
"rmsResid") {
310 UTIL_THROW(
"Invalid iterator error type in parameter file.");
315 Log::file() <<
"Max Residual = " <<
Dbl(maxRes,15) <<
"\n";
316 Log::file() <<
"Residual Norm = " <<
Dbl(normRes,15) <<
"\n";
317 Log::file() <<
"RMS Residual = " <<
Dbl(rmsRes,15) <<
"\n";
An IntVec<D, T> is a D-component vector of elements of integer type T.
Exception thrown when not-a-number (NaN) is encountered.
Field of real double precision values on an FFT mesh.
Base class for iterators that impose incompressibility.
Linear response compressor.
void setClassName(const char *className)
Set class name string.
LrCompressor(System< D > &system)
Constructor.
~LrCompressor()
Destructor.
int compress()
Iterate pressure field to obtain partial saddle point.
void outputTimers(std::ostream &out)
Return compressor times contributions.
void clearTimers()
Clear timers.
void readParameters(std::istream &in)
Read all parameters and initialize.
void setup()
Initialize just before entry to iterative loop.
Main class for SCFT or PS-FTS simulation of one system.
int capacity() const
Return allocated size.
Wrapper for a double precision number, for formatted ostream output.
Wrapper for an int, for formatted ostream output.
static std::ostream & file()
Get log ostream by reference.
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
cudaReal maxAbs(DeviceArray< cudaReal > const &in)
Get maximum absolute magnitude of array elements (GPU kernel wrapper).
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.