1#ifndef RPG_RGRID_TRAJECTORY_READER_TPP
2#define RPG_RGRID_TRAJECTORY_READER_TPP
11#include "RGridTrajectoryReader.h"
12#include <rpg/System.h>
13#include <pscf/math/IntVec.h>
14#include <pscf/mesh/MeshIterator.h>
15#include <util/misc/ioUtil.h>
38 const int nMonomer = system().mixture().nMonomer();
40 const IntVec<D> dimensions = system().domain().mesh().dimensions();
42 wField_.allocate(nMonomer);
43 for (
int i = 0; i < nMonomer; ++i) {
44 wField_[i].allocate(dimensions);
56 system().fileMaster().open(filename, inputfile_);
64 int nMonomer = system().mixture().nMonomer();
80 UTIL_THROW(
"Real Grid Field is not allocated");
84 std::stringstream line;
99 step = std::stoi(value);
111 int nMonomer = system().mixture().nMonomer();
112 FieldIo<D> const & fieldIo = system().domain().fieldIo();
116 system().setWRGrid(wField_);
126 { inputfile_.close();}
An IntVec<D, T> is a D-component vector of elements of integer type T.
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.
Spatial domain and spatial discretization for a periodic structure.
UnitCell< D > & unitCell()
Get UnitCell by reference.
FieldIo< D > & fieldIo()
Get associated FieldIo object.
File input/output operations and format conversions for fields.
void readFieldsRGridData(std::istream &in, DArray< RField< D > > &fields, int nMonomer) const
Read data for an array of r-grid fields, with no header section.
RGridTrajectoryReader(System< D > &system)
Constructor.
bool readFrame()
Read a single frame.
void readHeader()
Read header of trajectory file.
void open(std::string filename)
Open trajectory file and read header, if any.
void allocate()
Allocate memory required by trajectory reader.
void close()
Close the trajectory file.
Main class for calculations that represent one system.
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.
PSCF package top-level namespace.
Utility classes for scientific computation.