PSCF v1.2
rpc/fts/analyzer/TrajectoryWriter.tpp
1#ifndef RPC_TRAJECTORY_WRITER_TPP
2#define RPC_TRAJECTORY_WRITER_TPP
3/*
4* PSCF - Polymer Self-Consistent Field Theory
5*
6* Copyright 2016 - 2022, The Regents of the University of Minnesota
7* Distributed under the terms of the GNU General Public License.
8*/
9
10#include "TrajectoryWriter.h"
11#include "Analyzer.h"
12#include <rpc/fts/simulator/Simulator.h>
13#include <rpc/System.h>
14#include <util/misc/FileMaster.h>
15//#include <util/archives/Serializable_includes.h>
16#include <util/misc/ioUtil.h>
17#include <sstream>
18
19namespace Pscf {
20namespace Rpc
21{
22
23 using namespace Util;
24
25 /*
26 * Constructor.
27 */
28 template <int D>
30 System<D>& system)
31 : Analyzer<D>(),
32 nSample_(0),
33 isInitialized_(false),
34 simulatorPtr_(&simulator),
35 systemPtr_(&(simulator.system()))
36 { setClassName("TrajectoryWriter"); }
37
38 /*
39 * Read interval and outputFileName.
40 */
41 template <int D>
43 {
45 isInitialized_ = true;
46 }
47
48 #if 0
49 /*
50 * Load state from an archive.
51 */
52 template <int D>
54 {
56 ar & nSample_;
57 isInitialized_ = true;
58 }
59
60 /*
61 * Save state to archive.
62 */
63 template <int D>
65 { ar & *this; }
66 #endif
67
68 /*
69 * Read interval and outputFileName.
70 */
71 template <int D>
73 {
74 nSample_ = 0;
75 std::string filename;
76 filename_ = outputFileName();
77 system().fileMaster().openOutputFile(filename_ , outputFile_);
78 writeHeader(outputFile_);
79 }
80
81 template <int D>
82 void TrajectoryWriter<D>::writeFrame(std::ofstream& out, long iStep)
83 {
84 out << "i = " << iStep << "\n";
85 bool writeHeader = false;
86 bool isSymmetric = false;
87 Domain<D> const & domain = system().domain();
88 FieldIo<D> const & fieldIo = domain.fieldIo();
89 fieldIo.writeFieldsRGrid(out, system().w().rgrid(),
90 domain.unitCell(),
91 writeHeader, isSymmetric);
92 out << "\n";
93 }
94
95
96 template <int D>
97 void TrajectoryWriter<D>::writeHeader(std::ofstream& out)
98 {
99 int nMonomer = system().mixture().nMonomer();
100 bool isSymmetric = false;
101 Domain<D> const & domain = system().domain();
102 FieldIo<D> const & fieldIo = domain.fieldIo();
103 fieldIo.writeFieldHeader(out, nMonomer,
104 domain.unitCell(), isSymmetric);
105 out << "\n";
106 }
107
108
109 /*
110 * Periodically write a frame to file
111 */
112 template <int D>
114 {
115 if (isAtInterval(iStep)) {
116 writeFrame(outputFile_, iStep);
117 ++nSample_;
118 }
119 }
120
121 /*
122 * Close output file at end of simulation.
123 */
124 template <int D>
126 { outputFile_.close(); }
127
128}
129}
130#endif
void writeFieldHeader(std::ostream &out, int nMonomer, UnitCell< D > const &unitCell, bool isSymmetric=true) const
Write header for field file (fortran pscf format)
Abstract base for periodic output and/or analysis actions.
virtual void readParameters(std::istream &in)
Read parameters from archive.
Spatial domain and spatial discretization for a periodic structure.
FieldIo< D > & fieldIo()
Get associated FieldIo object.
UnitCell< D > & unitCell()
Get UnitCell (i.e., lattice type and parameters) by reference.
File input/output operations and format conversions for fields.
void writeFieldsRGrid(std::ostream &out, DArray< RField< D > > const &fields, UnitCell< D > const &unitCell, bool writeHeader=true, bool isSymmetric=true, bool writeMeshSize=true) const override
Write array of RField objects (fields on r-space grid) to a stream.
Field theoretic simulator (base class).
Definition rpc/System.h:38
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
virtual void readParameters(std::istream &in)
Read interval and output file name.
void setClassName(const char *className)
Set class name string.
void writeHeader(std::ofstream &out)
Write data that should appear once, at beginning of the file.
virtual void output()
Close trajectory file after run.
void writeFrame(std::ofstream &out, long iStep)
Write data that should appear in every frame.
TrajectoryWriter(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual void setup()
Clear nSample counter.
virtual void sample(long iStep)
Write a frame/snapshot to trajectory file.
Loading (input) archive for binary istream.
Saving / output archive for binary ostream.
virtual void loadParameters(Serializable::IArchive &ar)
Load state from archive, without adding Begin and End lines.
virtual void save(OArchive &ar)=0
Save to an archive.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.