PSCF v1.2
rpc/fts/analyzer/ConcentrationWriter.tpp
1#ifndef RPC_CONCENTRATION_WRITER_TPP
2#define RPC_CONCENTRATION_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 "ConcentrationWriter.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/misc/ioUtil.h>
16#include <sstream>
17
18namespace Pscf {
19namespace Rpc
20{
21
22 using namespace Util;
23
24 /*
25 * Constructor.
26 */
27 template <int D>
29 System<D>& system)
30 : Analyzer<D>(),
31 nSample_(0),
32 isInitialized_(false),
33 simulatorPtr_(&simulator),
34 systemPtr_(&(simulator.system()))
35 { setClassName("ConcentrationWriter"); }
36
37 /*
38 * Read interval and outputFileName.
39 */
40 template <int D>
42 {
44 isInitialized_ = true;
45 }
46
47 /*
48 * Read interval and outputFileName.
49 */
50 template <int D>
52 {
53 nSample_ = 0;
54 std::string filename;
55 filename_ = outputFileName();
56 system().fileMaster().openOutputFile(filename_ , outputFile_);
57 writeHeader(outputFile_);
58 }
59
60 template <int D>
61 void ConcentrationWriter<D>::writeFrame(std::ofstream& out, long iStep)
62 {
63 UTIL_CHECK(system().w().hasData());
64 if (!system().hasCFields()){
65 system().compute();
66 }
67 out << "i = " << iStep << "\n";
68 bool writeHeader = false;
69 bool isSymmetric = false;
70 Domain<D> const & domain = system().domain();
71 FieldIo<D> const & fieldIo = domain.fieldIo();
72 fieldIo.writeFieldsRGrid(out, system().c().rgrid(),
73 domain.unitCell(),
74 writeHeader, isSymmetric);
75 out << "\n";
76 }
77
78
79 template <int D>
80 void ConcentrationWriter<D>::writeHeader(std::ofstream& out)
81 {
82 int nMonomer = system().mixture().nMonomer();
83 bool isSymmetric = false;
84 Domain<D> const & domain = system().domain();
85 FieldIo<D> const & fieldIo = domain.fieldIo();
86 fieldIo.writeFieldHeader(out, nMonomer,
87 domain.unitCell(), isSymmetric);
88 out << "\n";
89 }
90
91
92 /*
93 * Periodically write a frame to file
94 */
95 template <int D>
97 {
98 if (isAtInterval(iStep)) {
99 writeFrame(outputFile_, iStep);
100 ++nSample_;
101 }
102 }
103
104 /*
105 * Close output file at end of simulation.
106 */
107 template <int D>
109 { outputFile_.close(); }
110
111}
112}
113#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.
void writeHeader(std::ofstream &out)
Write data that should appear once, at beginning of the file.
void setClassName(const char *className)
Set class name string.
void writeFrame(std::ofstream &out, long iStep)
Write data that should appear in every frame.
ConcentrationWriter(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual void sample(long iStep)
Write a frame/snapshot to trajectory file.
virtual void readParameters(std::istream &in)
Read interval and output file name.
virtual void output()
Close trajectory file after run.
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
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.