1#ifndef RPG_BINARY_STRUCTURE_FACTOR_GRID_H
2#define RPG_BINARY_STRUCTURE_FACTOR_GRID_H
13#include <prdc/cuda/RFieldDft.h>
14#include <prdc/cuda/RField.h>
15#include <pscf/math/IntVec.h>
16#include <util/accumulators/Average.h>
17#include <util/containers/DArray.h>
27 template <
int D>
class System;
28 template <
int D>
class Simulator;
185 int nSamplePerBlock_;
203 std::vector<double> qList_;
206 std::map<double, double> averageSMap_;
212 {
return *systemPtr_; }
217 {
return *simulatorPtr_; }
An IntVec<D, T> is a D-component vector of elements of integer type T.
Fourier transform of a real field on an FFT mesh.
Field of real double precision values on an FFT mesh.
Abstract base for periodic output and/or analysis actions.
const std::string & outputFileName() const
Return outputFileName string.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
int interval() const
Get interval value.
void readInterval(std::istream &in)
Read interval from file, with error checking.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
BinaryStructureFactorGrid evaluates AB diblock structure factors in Fourier space.
void setup()
Clear accumulators.
void sample(long iStep)
Add particles to BinaryStructureFactor accumulators.
void setClassName(const char *className)
Set class name string.
DArray< double > structureFactors_
Structure factor.
void averageStructureFactor()
Compute average S(k) over k of equal magnitude.
System< D > * systemPtr_
Pointer to the parent system.
const Average & accumulator(int i) const
Get Average accumulator for a specific value.
void computeStructureFactor()
Compute structure factor.
int nWave_
Number of wavevectors.
std::string filename_
Output filename.
void output()
Output results to predefined output file.
Simulator< D > & simulator()
Return reference to parent Simulator.
void readParameters(std::istream &in)
Read parameters from file.
System< D > & system()
Return reference to parent system.
~BinaryStructureFactorGrid()
Destructor.
Simulator< D > * simulatorPtr_
Pointer to parent Simulator.
BinaryStructureFactorGrid(Simulator< D > &simulator, System< D > &system)
Constructor.
std::ofstream outputFile_
Output file stream.
Field theoretic simulator (base class).
Main class for calculations that represent one system.
Calculates the average and variance of a sampled property.
Loading (input) archive for binary istream.
Saving / output archive for binary ostream.
Dynamically allocatable contiguous array template.
DArrayParam< Type > & readDArray(std::istream &in, const char *label, DArray< Type > &array, int n)
Add and read a required DArray < Type > parameter.
void setClassName(const char *className)
Set class name string.
virtual void save(Serializable::OArchive &ar)
Saves all parameters to an archive.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
virtual void loadParameters(Serializable::IArchive &ar)
Load state from archive, without adding Begin and End lines.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Periodic fields and crystallography.
PSCF package top-level namespace.
Utility classes for scientific computation.