PSCF v1.2
rpc/fts/trajectory/RGridTrajectoryReader.tpp
1#ifndef RPC_RGRID_TRAJECTORY_READER_TPP
2#define RPC_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
13#include <rpc/System.h>
14#include <pscf/mesh/MeshIterator.h>
15#include <util/misc/ioUtil.h>
16
17#include <sstream>
18#include <iostream>
19#include <string>
20
21namespace Pscf {
22namespace Rpc {
23
24 using namespace Util;
25
26 /*
27 * Constructor.
28 */
29 template <int D>
31 : TrajectoryReader<D>(system),
32 isAllocated_(false)
33 {}
34
35 template <int D>
37 {
38 const int nMonomer = system().mixture().nMonomer();
39 UTIL_CHECK(nMonomer > 0);
40
41 meshDimensions_ = system().domain().mesh().dimensions();
42 if (!isAllocated_){
43 wField_.allocate(nMonomer);
44 for (int i = 0; i < nMonomer; ++i) {
45 wField_[i].allocate(meshDimensions_);
46 }
47 isAllocated_ = true;
48 }
49 }
50
51 /*
52 * Open file and setup memory.
53 */
54 template <int D>
55 void RGridTrajectoryReader<D>::open(std::string filename)
56 {
57 system().fileMaster().open(filename, inputfile_);
58 allocate();
59 }
60
61 template <int D>
63 {
64 // Read Header
65 int nMonomer = system().mixture().nMonomer();
66 FieldIo<D> const & fieldIo = system().domain().fieldIo();
67 UnitCell<D> tmpUnitCell;
68 bool hasSymmetry;
69 fieldIo.readFieldHeader(inputfile_, nMonomer, tmpUnitCell,
71 system().setUnitCell(tmpUnitCell);
72 Log::file() << "Read Header" << "\n";
73 }
74
75 /*
76 * Read frame, return false if end-of-file
77 */
78 template <int D>
80 {
81 // Preconditions
82 if (!isAllocated_) {
83 UTIL_THROW("R-grid Field is not allocated");
84 }
85
86 bool notEnd;
87 std::stringstream line;
88
89 // Attempt to read first line, check for end of file
90 notEnd = getNextLine(inputfile_, line);
91 if (!notEnd) {
92 return false;
93 }
94
95 // Read line containing time step
96 checkString(line, "i");
97 checkString(line, "=");
98 #if 0
99 std::string value;
100 line >> value;
101 int step;
102 step = std::stoi(value);
103 Log::file()<< "step "<< step <<"\n";
104 #endif
105
106 // Read mesh dimensions
107 notEnd = getNextLine(inputfile_, line);
108 UTIL_CHECK(notEnd);
109 checkString(line, "mesh");
110
111 // Read empty line
112 notEnd = getNextLine(inputfile_, line);
113 UTIL_CHECK(notEnd);
114
115 // Read w-field configuration in r-grid format
116 int nMonomer = system().mixture().nMonomer();
117 FieldIo<D> const & fieldIo = system().domain().fieldIo();
118 fieldIo.readFieldsRGridData(inputfile_, wField_, nMonomer);
119
120 // Update system r-grid field
121 system().setWRGrid(wField_);
122
123 return true;
124 }
125
126 /*
127 * Close trajectory file.
128 */
129 template <int D>
131 { inputfile_.close();}
132
133}
134}
135#endif
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
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.
void open(std::string filename)
Open trajectory file and read header, if any.
void allocate()
Allocate memory required by trajectory reader.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Trajectory file reader (base class).
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
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.
Definition param_pc.dox:1
Utility classes for scientific computation.