PSCF v1.2
rpc/fts/analyzer/BinaryStructureFactorGrid.h
1#ifndef RPC_BINARY_STRUCTURE_FACTOR_GRID_H
2#define RPC_BINARY_STRUCTURE_FACTOR_GRID_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 "Analyzer.h" // base class
12
13#include <util/containers/DArray.h> // member
14#include <util/accumulators/Average.h> // member
15#include <prdc/cpu/RField.h> // member
16#include <prdc/cpu/RFieldDft.h> // member
17#include <map> // member
18
19#include <string>
20#include <iostream>
21#include <vector>
22
23namespace Pscf {
24namespace Rpc {
25
26 template <int D> class System;
27 template <int D> class Simulator;
28
29 using namespace Util;
30 using namespace Pscf::Prdc::Cpu;
31
50 template <int D>
52 {
53
54 public:
55
60
65
76 void readParameters(std::istream& in);
77
78 #if 0
85
92 #endif
93
97 void setup();
98
104 void sample(long iStep);
105
109 void output();
110
115
120
121 protected:
122
126 std::ofstream outputFile_;
127
131 std::string filename_;
132
140 const Average& accumulator(int i) const;
141
146
149
154
159
163 System<D>& system();
164
169
173 using Analyzer<D>::interval;
174 using Analyzer<D>::isAtInterval;
176 using Analyzer<D>::setClassName;
177 using Analyzer<D>::readInterval;
179
180 private:
181
183 bool isInitialized_;
184
186 int nSamplePerBlock_;
187
189 IntVec<D> kMeshDimensions_;
190
192 int kSize_;
193
195 DArray<Average> accumulators_;
196
198 DArray< RFieldDft<D> > wKGrid_;
199
201 RField<D> wm_;
202
204 RFieldDft<D> wk_;
205
207 std::vector<double> qList_;
208
210 std::map<double, double> averageSMap_;
211
212 };
213
214 // Get the parent system.
215 template <int D>
217 { return *systemPtr_; }
218
219 //Get parent Simulator object.
220 template <int D>
222 { return *simulatorPtr_; }
223
224 #ifndef RPC_BINARY_STRUCTURE_FACTOR_GRID_TPP
225 // Suppress implicit instantiation
226 extern template class BinaryStructureFactorGrid<1>;
227 extern template class BinaryStructureFactorGrid<2>;
228 extern template class BinaryStructureFactorGrid<3>;
229 #endif
230
231}
232}
233#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
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.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
void readInterval(std::istream &in)
Optionally read interval from file, with error checking.
const std::string & outputFileName() const
Return outputFileName string.
int interval() const
Get interval value.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
BinaryStructureFactorGrid evaluates AB copolymer structure factors.
void setClassName(const char *className)
Set class name string.
System< D > & system()
Return reference to parent system.
void readParameters(std::istream &in)
Read parameters from file.
BinaryStructureFactorGrid(Simulator< D > &simulator, System< D > &system)
Constructor.
Simulator< D > & simulator()
Return reference to parent Simulator.
System< D > * systemPtr_
Pointer to the parent system.
const Average & accumulator(int i) const
Get Average accumulator for a specific value.
void sample(long iStep)
Add particles to BinaryStructureFactor accumulators.
void averageStructureFactor()
Compute average S(k) over k of equal magnitude.
Simulator< D > * simulatorPtr_
Pointer to parent Simulator.
void output()
Output results to predefined output file.
Field theoretic simulator (base class).
Definition rpc/System.h:38
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Calculates the average and variance of a sampled property.
Definition Average.h:44
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 and FFTs for periodic boundary conditions (CPU)
Definition CField.cpp:12
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.