8 #include "StructureFactor.h" 9 #include <mcMd/simulation/Simulation.h> 10 #include <mcMd/simulation/McMd_mpi.h> 11 #include <mcMd/chemistry/Molecule.h> 12 #include <mcMd/chemistry/Atom.h> 13 #include <simp/boundary/Boundary.h> 14 #include <util/math/Constants.h> 15 #include <util/space/Dimension.h> 16 #include <util/misc/FileMaster.h> 17 #include <util/archives/Serializable_includes.h> 18 #include <util/misc/ioUtil.h> 19 #include <util/format/Int.h> 20 #include <util/format/Dbl.h> 50 read<int>(in,
"nMode",
nMode_);
54 read<int>(in,
"nWave",
nWave_);
62 isInitialized_ =
true;
72 loadParameter<int>(ar,
"nMode",
nMode_);
74 loadParameter<int>(ar,
"nWave",
nWave_);
81 UTIL_THROW(
"Inconsistent values of nAtomType_");
83 if (modes_.capacity1() !=
nMode_) {
84 UTIL_THROW(
"Inconsistent capacity1 for modes array");
87 UTIL_THROW(
"Inconsistent capacity2 for modes array");
89 if (waveIntVectors_.capacity() !=
nWave_) {
90 UTIL_THROW(
"Inconsistent capacity for waveIntVector");
97 isInitialized_ =
true;
111 if (!isInitialized_) {
112 UTIL_THROW(
"Error: object is not initialized");
119 for (i = 0; i <
nWave_; ++i) {
120 for (j = 0; j <
nMode_; ++j) {
134 std::ios_base::openmode mode = std::ios_base::out;
136 mode = std::ios_base::out | std::ios_base::app;
146 std::complex<double> expFactor;
150 int nSpecies, iSpecies, typeId, i, j;
155 for (i = 0; i <
nWave_; ++i) {
156 for (j = 0; j <
nMode_; ++j) {
163 for (iSpecies = 0; iSpecies < nSpecies; ++iSpecies) {
165 for ( ; molIter.
notEnd(); ++molIter) {
166 molIter->begin(atomIter);
167 for ( ; atomIter.
notEnd(); ++atomIter) {
168 position = atomIter->position();
169 typeId = atomIter->typeId();
172 for (i = 0; i <
nWave_; ++i) {
176 for (j = 0; j <
nMode_; ++j) {
190 for (j = 0; j <
nMode_; ++j) {
191 double maxValue = 0.0;
194 for (i = 0; i <
nWave_; ++i) {
196 if (
double(norm/volume) >= maxValue) {
197 maxValue = double(norm/volume);
227 for (i = 0; i <
nWave_; ++i) {
251 for (i = 0; i <
nWave_; ++i) {
256 for (j = 0; j <
nMode_; ++j) {
268 for (j = 0; j <
nMode_; ++j) {
271 suffix = std::string(
".");
273 suffix += std::string(
".dat");
278 for (i = 0; i <
nWave_; ++i) {
const int Dimension
Dimensionality of space.
int nSample_
Number of samples thus far.
std::string toString(int n)
Return string representation of an integer.
A Vector is a Cartesian vector.
float product(float a, float b)
Product for float Data.
~StructureFactor()
Destructor.
DArray< Vector > waveVectors_
Array of floating point wave vectors (temporary).
void allocate(int capacity1, int capacity2)
Allocate memory for a matrix.
void begin(int speciesId, MoleculeIterator &iterator)
Initialize an iterator for molecules of one species in this System.
double volume() const
Return unit cell volume.
double dot(const Vector &v) const
Return dot product of this vector and vector v.
An orthorhombic periodic unit cell.
void openOutputFile(const std::string &filename, std::ofstream &out, std::ios_base::openmode mode=std::ios_base::out) const
Open an output file.
static const Vector Zero
Zero Vector = {0.0, 0.0, 0.0}.
virtual void loadParameters(Serializable::IArchive &ar)
Load parameters from archive.
int nWave_
Number of wavevectors.
DMatrix< std::complex< double > > fourierModes_
Instantaneous Fourier amplitudes (temporary)
virtual void output()
Output results to predefined output file.
A set of interacting Molecules enclosed by a Boundary.
System & system()
Return reference to parent system.
Wrapper for a double precision number, for formatted ostream output.
Forward iterator for a PArray.
Classes used by all simpatico molecular simulations.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
DMatrix< double > modes_
Array of mode vectors.
Forward const iterator for an Array or a C array.
Saving / output archive for binary ostream.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Simulation & simulation() const
Get the parent Simulation by reference.
virtual void writeParam(std::ostream &out)
Write all parameters to an output stream.
const Vector & reciprocalBasisVector(int i) const
Return reciprocal lattice basis vector i.
void readInterval(std::istream &in)
Read interval from file, with error checking.
int nAtomType_
Number of atom types, copied from Simulation::nAtomType().
DMatrix< double > structureFactors_
Structure factor accumulators.
Utility classes for scientific computation.
DArray< IntVector > waveIntVectors_
Array of Miller index IntVectors for wavevectors.
Wrapper for an int, for formatted ostream output.
virtual void save(Serializable::OArchive &ar)
Save state to archive.
std::ofstream outputFile_
Output file stream.
void makeWaveVectors()
Update wavevectors.
Template for Analyzer associated with one System.
int nMode_
Number of mode vectors.
bool notEnd() const
Is the current pointer not at the end of the array?
Boundary & boundary() const
Get the Boundary by reference.
bool isFirstStep_
Is this the first step?
Saving archive for binary istream.
virtual void loadParameters(Serializable::IArchive &ar)
Load state from an archive.
StructureFactor(System &system)
Constructor.
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
int nSpecies() const
Get the number of Species in this Simulation.
virtual void readParameters(std::istream &in)
Read parameters from file.
void setClassName(const char *className)
Set class name string.
An IntVector is an integer Cartesian vector.
FileMaster & fileMaster()
Get the FileMaster by reference.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
const std::string & outputFileName() const
Return outputFileName string.
virtual void sample(long iStep)
Add particles to StructureFactor accumulators.
int nAtomType() const
Get the number of atom types.
bool notEnd() const
Is this not the end of the array?
static const std::complex< double > Im
Square root of -1.
virtual void setup()
Clear accumulators.