1#ifndef RPC_RGRID_TRAJECTORY_READER_TPP
2#define RPC_RGRID_TRAJECTORY_READER_TPP
11#include "RGridTrajectoryReader.h"
13#include <rpc/System.h>
14#include <pscf/mesh/MeshIterator.h>
15#include <util/misc/ioUtil.h>
38 const int nMonomer = system().mixture().nMonomer();
41 meshDimensions_ = system().domain().mesh().dimensions();
43 wField_.allocate(nMonomer);
44 for (
int i = 0; i < nMonomer; ++i) {
45 wField_[i].allocate(meshDimensions_);
57 system().fileMaster().open(filename, inputfile_);
65 int nMonomer = system().mixture().nMonomer();
66 FieldIo<D> const & fieldIo = system().domain().fieldIo();
71 system().setUnitCell(tmpUnitCell);
87 std::stringstream line;
102 step = std::stoi(value);
116 int nMonomer = system().mixture().nMonomer();
117 FieldIo<D> const & fieldIo = system().domain().fieldIo();
121 system().setWRGrid(wField_);
131 { inputfile_.close();}
void readFieldHeader(std::istream &in, int &nMonomer, UnitCell< D > &unitCell, bool &isSymmetric) const
Reader header of field file (fortran pscf format)
Base template for UnitCell<D> classes, D=1, 2 or 3.
File input/output operations and format conversions for fields.
void readFieldsRGridData(std::istream &in, DArray< RField< D > > &fields, int nMonomer) const override
Read data for an array of r-grid fields, with no header section.
RGridTrajectoryReader(System< D > &system)
Constructor.
void open(std::string filename)
Open trajectory file and read header, if any.
void allocate()
Allocate memory required by trajectory reader.
bool readFrame()
Read a single frame.
void close()
Close the trajectory file.
void readHeader()
Read header of trajectory file.
Main class for SCFT or PS-FTS simulation of one system.
Trajectory file reader (base class).
static std::ostream & file()
Get log ostream by reference.
#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.
void checkString(std::istream &in, const std::string &expected)
Extract string from stream, and compare to expected value.
bool getNextLine(std::istream &in, std::string &line)
Read the next non-empty line into a string, strip trailing whitespace.
bool hasSymmetry(AT const &in, Basis< D > const &basis, IntVec< D > const &dftDimensions, double epsilon=1.0e-8, bool verbose=true)
Check if a k-grid field has the declared space group symmetry.
PSCF package top-level namespace.
Utility classes for scientific computation.