PSCF v1.2
rpg/fts/trajectory/RGridTrajectoryReader.tpp
1#ifndef RPG_RGRID_TRAJECTORY_READER_TPP
2#define RPG_RGRID_TRAJECTORY_READER_TPP
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 "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>
16#include <iostream>
17#include <string>
18
19namespace Pscf {
20namespace Rpg
21{
22
23 using namespace Util;
24
25 /*
26 * Constructor.
27 */
28 template <int D>
30 : TrajectoryReader<D>(system),
31 systemPtr_(&system),
32 isAllocated_(false)
33 {}
34
35 template <int D>
37 {
38 const int nMonomer = system().mixture().nMonomer();
39 UTIL_CHECK(nMonomer > 0);
40 const IntVec<D> dimensions = system().domain().mesh().dimensions();
41 if (!isAllocated_){
42 wField_.allocate(nMonomer);
43 for (int i = 0; i < nMonomer; ++i) {
44 wField_[i].allocate(dimensions);
45 }
46 isAllocated_ = true;
47 }
48 }
49
50 /*
51 * Open file and setup memory.
52 */
53 template <int D>
54 void RGridTrajectoryReader<D>::open(std::string filename)
55 {
56 system().fileMaster().open(filename, inputfile_);
57 allocate();
58 }
59
60 template <int D>
62 {
63 // Read Header
64 int nMonomer = system().mixture().nMonomer();
65 Domain<D> & domain = system().domain();
66 FieldIo<D> & fieldIo = domain.fieldIo();
67 UnitCell<D> & unitcell = domain.unitCell();
68 bool isSymmetric;
69 fieldIo.readFieldHeader(inputfile_, nMonomer, unitcell, isSymmetric);
70 Log::file() << "Read Header" << "\n";
71 }
72 /*
73 * Read frame, return false if end-of-file
74 */
75 template <int D>
77 {
78 // Preconditions
79 if (!isAllocated_) {
80 UTIL_THROW("Real Grid Field is not allocated");
81 }
82
83 bool notEnd;
84 std::stringstream line;
85
86 // Attempt to read first line
87 notEnd = getNextLine(inputfile_, line);
88 if (!notEnd) {
89 return false;
90 }
91
92 // Process ITEM: TIMESTEP
93 checkString(line, "i");
94 checkString(line, "=");
95 #if 0
96 std::string value;
97 line >> value;
98 int step;
99 step = std::stoi(value);
100 Log::file() << "step "<< step <<"\n";
101 #endif
102
103 // Read ITEM: NUMBER OF Mesh
104 notEnd = getNextLine(inputfile_, line);
105 UTIL_CHECK(notEnd);
106 checkString(line, "mesh");
107 notEnd = getNextLine(inputfile_, line);
108 UTIL_CHECK(notEnd);
109
110 // Read a single real-space grid field frame from trajectory file
111 int nMonomer = system().mixture().nMonomer();
112 FieldIo<D> const & fieldIo = system().domain().fieldIo();
113 fieldIo.readFieldsRGridData(inputfile_, wField_, nMonomer);
114
115 // Update system real-space grid field
116 system().setWRGrid(wField_);
117
118 return true;
119 }
120
121 /*
122 * Close trajectory file.
123 */
124 template <int D>
126 { inputfile_.close();}
127
128}
129}
130#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
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.
Definition rpg/System.h:34
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.
void open(std::string filename)
Open trajectory file and read header, if any.
void allocate()
Allocate memory required by trajectory reader.
Main class for calculations that represent one system.
Definition rpg/System.h:107
static std::ostream & file()
Get log ostream by reference.
Definition Log.cpp:57
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
void checkString(std::istream &in, const std::string &expected)
Extract string from stream, and compare to expected value.
Definition ioUtil.cpp:37
bool getNextLine(std::istream &in, std::string &line)
Read the next non-empty line into a string, strip trailing whitespace.
Definition ioUtil.cpp:79
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.