PSCF v1.2
rpc/System.h
1#ifndef RPC_SYSTEM_H
2#define RPC_SYSTEM_H
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// Header file includes
12#include <util/param/ParamComposite.h> // base class
13#include <rpc/solvers/Mixture.h> // member
14#include <rpc/field/Domain.h> // member
15#include <rpc/field/WFieldContainer.h> // member
16#include <rpc/field/CFieldContainer.h> // member
17#include <rpc/field/Mask.h> // member
18#include <prdc/cpu/RField.h> // member (tmpFieldsRGrid_)
19#include <prdc/cpu/RFieldDft.h> // member (tmpFieldSKGrid_)
20#include <pscf/homogeneous/Mixture.h> // member
21#include <util/misc/FileMaster.h> // member
22#include <util/containers/DArray.h> // member (tmpFields...)
23
24// Forward references
25namespace Util {
26 template <typename T, int N> class FSArray;
27}
28namespace Pscf {
29 class Interaction;
30 namespace Prdc {
31 template <int D> class UnitCell;
32 }
33 namespace Rpc {
34 template <int D> class Iterator;
35 template <int D> class IteratorFactory;
36 template <int D> class Sweep;
37 template <int D> class SweepFactory;
38 template <int D> class Simulator;
39 template <int D> class SimulatorFactory;
40 }
41}
42
43namespace Pscf {
44namespace Rpc {
45
46 // Namespaces that are implicitly available, without qualification
47 using namespace Util;
48 using namespace Prdc;
49 using namespace Prdc::Cpu;
50
98 template <int D>
99 class System : public ParamComposite
100 {
101
102 public:
103
106
110 System();
111
115 ~System();
116
120
132 void setOptions(int argc, char **argv);
133
139 virtual void readParam(std::istream& in);
140
147 void readParam();
148
154 virtual void readParameters(std::istream& in);
155
161 void readCommands(std::istream& in);
162
169 void readCommands();
170
174
197 void readWBasis(const std::string & filename);
198
219 void readWRGrid(const std::string & filename);
220
235 void setWBasis(DArray< DArray<double> > const & fields);
236
248 void setWRGrid(DArray< RField<D> > const & fields);
249
265 void estimateWfromC(const std::string& filename);
266
270
286 void setUnitCell(UnitCell<D> const & unitCell);
287
301 void setUnitCell(typename UnitCell<D>::LatticeSystem lattice,
302 FSArray<double, 6> const & parameters);
303
317 void setUnitCell(FSArray<double, 6> const & parameters);
318
322
346 void compute(bool needStress = false);
347
368 int iterate(bool isContinuation = false);
369
384 void sweep();
385
401 void simulate(int nStep);
402
406
417 void computeFreeEnergy();
418
425 double fHelmholtz() const;
426
434 double pressure() const;
435
439
452 void writeParamNoSweep(std::ostream& out) const;
453
467 void writeThermo(std::ostream& out);
468
481 void writeStress(std::ostream& out);
482
486
492 void writeWBasis(const std::string & filename) const;
493
499 void writeWRGrid(const std::string & filename) const;
500
506 void writeCBasis(const std::string & filename) const;
507
513 void writeCRGrid(const std::string & filename) const;
514
526 void writeBlockCRGrid(const std::string & filename) const;
527
531
541 void writeQSlice(std::string const & filename,
542 int polymerId, int blockId,
543 int directionId, int segmentId) const;
544
553 void writeQTail(std::string const & filename, int polymerId,
554 int blockId, int directionId) const;
555
564 void writeQ(std::string const & filename, int polymerId,
565 int blockId, int directionId) const;
566
585 void writeQAll(std::string const & basename);
586
590
599 void writeWaves(std::string const & filename) const;
600
609 void writeStars(std::string const & filename) const;
610
616 void writeGroup(std::string const & filename) const;
617
621
636 void basisToRGrid(const std::string & inFileName,
637 const std::string & outFileName);
638
653 void rGridToBasis(const std::string & inFileName,
654 const std::string & outFileName);
655
662 void kGridToRGrid(const std::string& inFileName,
663 const std::string& outFileName);
664
671 void rGridToKGrid(const std::string & inFileName,
672 const std::string & outFileName);
673
688 void kGridToBasis(const std::string& inFileName,
689 const std::string& outFileName);
690
697 void basisToKGrid(const std::string & inFileName,
698 const std::string & outFileName);
699
709 void compare(const DArray< DArray<double> > field1,
710 const DArray< DArray<double> > field2);
711
721 void compare(const DArray< RField<D> > field1,
722 const DArray< RField<D> > field2);
723
731 bool checkRGridFieldSymmetry(const std::string & inFileName,
732 double epsilon = 1.0E-8);
733
741 void scaleFieldsBasis(const std::string & inFileName,
742 const std::string & outFileName,
743 double factor);
744
752 void scaleFieldsRGrid(const std::string & inFileName,
753 const std::string & outFileName,
754 double factor) const;
755
775 void expandRGridDimension(const std::string & inFileName,
776 const std::string & outFileName,
777 int d,
778 DArray<int> newGridDimensions);
792 void replicateUnitCell(const std::string & inFileName,
793 const std::string & outFileName,
794 IntVec<D> const & replicas);
795
799
805 void writeTimers(std::ostream& out);
806
810 void clearTimers();
811
815
819 WFieldContainer<D> const & w() const;
820
824 CFieldContainer<D> const & c() const;
825
830
834 WFieldContainer<D> const & h() const;
835
839 Mask<D>& mask();
840
844 Mask<D> const & mask() const;
845
849
854
858 Mixture<D> const & mixture() const;
859
864
868 Interaction const & interaction() const;
869
873 Domain<D> const & domain() const;
874
879
883 Iterator<D> const & iterator() const;
884
889
896
900 FileMaster const & fileMaster() const;
901
906
910 Homogeneous::Mixture const & homogeneous() const;
911
915
919 bool hasIterator() const;
920
924 bool hasSweep() const;
925
929 bool hasSimulator() const;
930
934 bool hasExternalFields() const;
935
939 bool hasMask() const;
940
944 bool hasCFields() const;
945
949 bool hasFreeEnergy() const;
950
952
953 private:
954
955 // Component objects
956
960 Mixture<D> mixture_;
961
965 Domain<D> domain_;
966
970 FileMaster fileMaster_;
971
975 Homogeneous::Mixture homogeneous_;
976
977 // Pointers to objects owned by the System
978
982 Interaction* interactionPtr_;
983
987 Iterator<D>* iteratorPtr_;
988
992 IteratorFactory<D>* iteratorFactoryPtr_;
993
997 Sweep<D>* sweepPtr_;
998
1002 SweepFactory<D>* sweepFactoryPtr_;
1003
1007 Simulator<D>* simulatorPtr_;
1008
1012 SimulatorFactory<D>* simulatorFactoryPtr_;
1013
1014 // Field container objects
1015
1020
1025
1030
1034 Mask<D> mask_;
1035
1041 mutable DArray< DArray<double> > tmpFieldsBasis_;
1042
1048 mutable DArray< RField<D> > tmpFieldsRGrid_;
1049
1055 mutable DArray< RFieldDft<D> > tmpFieldsKGrid_;
1056
1057 // Thermodynamic properties
1058
1062 double fHelmholtz_;
1063
1071 double fIdeal_;
1072
1076 double fInter_;
1077
1081 double fExt_;
1082
1089 double pressure_;
1090
1091 // Boolean flags
1092
1096 bool isAllocatedGrid_;
1097
1101 bool isAllocatedBasis_;
1102
1106 bool hasMixture_;
1107
1120 bool hasCFields_;
1121
1125 bool hasFreeEnergy_;
1126
1127 // Private member functions
1128
1132 void allocateFieldsGrid();
1133
1137 void allocateFieldsBasis();
1138
1147 void readFieldHeader(std::string filename);
1148
1157 void readEcho(std::istream& in, std::string& string) const;
1158
1167 void readEcho(std::istream& in, double& value) const;
1168
1172 void initHomogeneous();
1173
1174 };
1175
1176 // Inline member functions
1177
1178 // Get the Mixture object by non-const reference.
1179 template <int D>
1181 { return mixture_; }
1182
1183 // Get the Mixture object by const reference.
1184 template <int D>
1185 inline Mixture<D> const & System<D>::mixture() const
1186 { return mixture_; }
1187
1188 // Get the Domain by const reference.
1189 template <int D>
1190 inline Domain<D> const & System<D>::domain() const
1191 { return domain_; }
1192
1193 // Get the Simulator.
1194 template <int D>
1196 { return *simulatorPtr_; }
1197
1198 // Get the FileMaster by non-const reference.
1199 template <int D>
1201 { return fileMaster_; }
1202
1203 // Get the FileMaster by const reference.
1204 template <int D>
1205 inline FileMaster const & System<D>::fileMaster() const
1206 { return fileMaster_; }
1207
1208 // Get the Homogeneous::Mixture object.
1209 template <int D>
1211 { return homogeneous_; }
1212
1213 // Get the const Homogeneous::Mixture object.
1214 template <int D>
1216 { return homogeneous_; }
1217
1218 // Get the Interaction (excess free energy model).
1219 template <int D>
1221 {
1222 UTIL_ASSERT(interactionPtr_);
1223 return *interactionPtr_;
1224 }
1225
1226 // Get the Interaction by const reference.
1227 template <int D>
1229 {
1230 UTIL_ASSERT(interactionPtr_);
1231 return *interactionPtr_;
1232 }
1233
1234 // Get the Iterator.
1235 template <int D>
1237 {
1238 UTIL_ASSERT(iteratorPtr_);
1239 return *iteratorPtr_;
1240 }
1241
1242 // Get the Iterator by const reference.
1243 template <int D>
1244 inline Iterator<D> const & System<D>::iterator() const
1245 {
1246 UTIL_ASSERT(iteratorPtr_);
1247 return *iteratorPtr_;
1248 }
1249
1250 // Get container of chemical potential fields (const reference)
1251 template <int D>
1252 inline
1254 { return w_; }
1255
1256 // Get container of monomer concentration fields (const reference)
1257 template <int D>
1258 inline
1260 { return c_; }
1261
1262 // Get container of external potential fields (reference)
1263 template <int D>
1265 { return h_; }
1266
1267 // Get container of external potential fields (const reference)
1268 template <int D>
1269 inline WFieldContainer<D> const & System<D>::h() const
1270 { return h_; }
1271
1272 // Get mask field (reference)
1273 template <int D>
1275 { return mask_; }
1276
1277 // Get mask field (const reference)
1278 template <int D>
1279 inline Mask<D> const & System<D>::mask() const
1280 { return mask_; }
1281
1282 // Does the system have an Iterator object?
1283 template <int D>
1284 inline bool System<D>::hasIterator() const
1285 { return (iteratorPtr_); }
1286
1287 // Does the system have a Sweep object?
1288 template <int D>
1289 inline bool System<D>::hasSweep() const
1290 { return (sweepPtr_); }
1291
1292 // Does this system have external potential fields?
1293 template <int D>
1295 { return h_.hasData(); }
1296
1297 // Does this system have a mask?
1298 template <int D>
1299 inline bool System<D>::hasMask() const
1300 { return mask_.hasData(); }
1301
1302 // Does the system have an initialized Simulator ?
1303 template <int D>
1304 inline bool System<D>::hasSimulator() const
1305 { return (simulatorPtr_); }
1306
1307 // Have the c fields been computed for the current w fields?
1308 template <int D>
1309 inline bool System<D>::hasCFields() const
1310 { return hasCFields_; }
1311
1312 // Get the precomputed Helmholtz free energy per monomer / kT.
1313 template <int D>
1314 inline double System<D>::fHelmholtz() const
1315 {
1316 UTIL_CHECK(hasFreeEnergy_);
1317 return fHelmholtz_;
1318 }
1319
1320 // Get the precomputed pressure (units of kT / monomer volume).
1321 template <int D>
1322 inline double System<D>::pressure() const
1323 {
1324 UTIL_CHECK(hasFreeEnergy_);
1325 return pressure_;
1326 }
1327
1328 // Has the free energy been computed for the current w fields?
1329 template <int D>
1330 inline bool System<D>::hasFreeEnergy() const
1331 { return hasFreeEnergy_; }
1332
1333 #ifndef RPC_SYSTEM_TPP
1334 // Suppress implicit instantiation
1335 extern template class System<1>;
1336 extern template class System<2>;
1337 extern template class System<3>;
1338 #endif
1339
1340} // namespace Rpc
1341} // namespace Pscf
1342#endif
A spatially homogeneous mixture.
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Flory-Huggins excess free energy model.
Definition Interaction.h:26
Field of real double precision values on an FFT mesh.
bool hasData() const
Has field data been set in either format?
Definition MaskTmpl.h:373
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
A list of c fields stored in both basis and r-grid format.
Spatial domain and spatial discretization for a periodic structure.
Factory for subclasses of Iterator.
Definition rpc/System.h:35
Base class for iterative solvers for SCF equations.
Definition rpc/System.h:34
A field to which the total density is constrained.
Solver for a mixture of polymers and solvents.
Factory for subclasses of Simulator.
Definition rpc/System.h:39
Field theoretic simulator (base class).
Definition rpc/System.h:38
Default Factory for subclasses of Sweep.
Definition rpc/System.h:37
Solve a sequence of SCFT problems along a line in parameter space.
Definition rpc/System.h:36
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
void expandRGridDimension(const std::string &inFileName, const std::string &outFileName, int d, DArray< int > newGridDimensions)
Expand the number of spatial dimensions of an r-grid field.
Mask< D > & mask()
Get the mask (field to which total density is constrained).
WFieldContainer< D > const & w() const
Get container of chemical potential fields (w fields).
int iterate(bool isContinuation=false)
Iteratively solve a SCFT problem.
void writeGroup(std::string const &filename) const
Output all elements of the space group.
void scaleFieldsBasis(const std::string &inFileName, const std::string &outFileName, double factor)
Multiply all components of an array of basis fields by a scalar.
void writeQTail(std::string const &filename, int polymerId, int blockId, int directionId) const
Write the final slice of a propagator in r-grid format.
void readWBasis(const std::string &filename)
Read chemical potential fields in symmetry adapted basis format.
void writeWBasis(const std::string &filename) const
Write chemical potential fields in symmetrized basis format.
void compute(bool needStress=false)
Solve the modified diffusion equation once, without iteration.
void setWRGrid(DArray< RField< D > > const &fields)
Set new w fields, in real-space (r-grid) format.
void writeWRGrid(const std::string &filename) const
Write chemical potential fields in real space grid (r-grid) format.
Mixture< D > & mixture()
Get the Mixture by non-const reference.
void setOptions(int argc, char **argv)
Process command line options.
Simulator< D > & simulator()
Get the Simulator for field theoretic simulation.
void readCommands()
Read and process commands from the default command file.
bool hasMask() const
Does this system have a mask (inhomogeneous density constraint)?
void simulate(int nStep)
Perform a field theoretic simulation (PS-FTS).
void writeQAll(std::string const &basename)
Write all propagators of all blocks, each to a separate file.
bool checkRGridFieldSymmetry(const std::string &inFileName, double epsilon=1.0E-8)
Check if r-grid fields have the declared space group symmetry.
void replicateUnitCell(const std::string &inFileName, const std::string &outFileName, IntVec< D > const &replicas)
Replicate the crystal unit cell to create a larger cell.
void writeTimers(std::ostream &out)
Write timer information to an output stream.
void compare(const DArray< DArray< double > > field1, const DArray< DArray< double > > field2)
Compare arrays of fields in basis format, output a report.
bool hasFreeEnergy() const
Has the free energy been computed from the current w fields?
Iterator< D > & iterator()
Get the Iterator by non-const reference.
void writeCBasis(const std::string &filename) const
Write concentration fields in symmetrized basis format.
void writeThermo(std::ostream &out)
Write thermodynamic properties to a file.
FileMaster & fileMaster()
Get the FileMaster.
bool hasIterator() const
Does this system have an Iterator object?
void setUnitCell(UnitCell< D > const &unitCell)
Set parameters of the associated unit cell.
~System()
Destructor.
void rGridToKGrid(const std::string &inFileName, const std::string &outFileName)
Convert fields from real-space (r-grid) to Fourier (k-grid) format.
CFieldContainer< D > const & c() const
Get container of monomer concentration fields (c fields).
void basisToKGrid(const std::string &inFileName, const std::string &outFileName)
Convert fields from symmetrized basis to Fourier (k-grid) format.
void computeFreeEnergy()
Compute free energy density and pressure for current fields.
void setWBasis(DArray< DArray< double > > const &fields)
Set chemical potential fields, in symmetry-adapted basis format.
System()
Constructor.
void clearTimers()
Clear timers.
void scaleFieldsRGrid(const std::string &inFileName, const std::string &outFileName, double factor) const
Multiply all elements of an array of r-grid fields by a scalar.
void writeQ(std::string const &filename, int polymerId, int blockId, int directionId) const
Write one propagator for one block, in r-grid format.
bool hasSimulator() const
Does this system have an initialized Simulator?
void writeBlockCRGrid(const std::string &filename) const
Write c-fields for all blocks and solvents in r-grid format.
virtual void readParameters(std::istream &in)
Read body of parameter block (without opening and closing lines).
void writeParamNoSweep(std::ostream &out) const
Write parameter file to an ostream, omitting any sweep block.
void sweep()
Sweep in parameter space, solving an SCF problem at each point.
void kGridToBasis(const std::string &inFileName, const std::string &outFileName)
Convert fields from Fourier (k-grid) to symmetrized basis format.
void readWRGrid(const std::string &filename)
Read chemical potential fields in real space grid (r-grid) format.
bool hasCFields() const
Have c fields been computed from the current w fields?
double fHelmholtz() const
Get precomputed Helmoltz free energy per monomer / kT.
void kGridToRGrid(const std::string &inFileName, const std::string &outFileName)
Convert fields from Fourier (k-grid) to real-space (r-grid) format.
bool hasSweep() const
Does this system have a Sweep object?
void estimateWfromC(const std::string &filename)
Construct trial w-fields from c-fields in symmetry-adapted form.
void writeCRGrid(const std::string &filename) const
Write concentration fields in real space grid (r-grid) format.
bool hasExternalFields() const
Does this system have external potential fields?
Domain< D > const & domain() const
Get Domain by const reference.
void writeQSlice(std::string const &filename, int polymerId, int blockId, int directionId, int segmentId) const
Write slice of a propagator at fixed s in r-grid format.
double pressure() const
Get precomputed pressure x monomer volume / kT.
void basisToRGrid(const std::string &inFileName, const std::string &outFileName)
Convert a field from symmetrized basis format to r-grid format.
Homogeneous::Mixture & homogeneous()
Get homogeneous mixture (for reference calculations).
void writeStars(std::string const &filename) const
Output information about stars and symmetrized basis functions.
void readParam()
Read input parameters from default param file.
void writeStress(std::ostream &out)
Write stress properties to a file.
WFieldContainer< D > & h()
Get container of external potential fields (reference).
Interaction & interaction()
Get Interaction (excess free energy model) by reference.
void rGridToBasis(const std::string &inFileName, const std::string &outFileName)
Convert a field from real-space grid to symmetrized basis format.
void writeWaves(std::string const &filename) const
Output information about waves.
A container of fields stored in both basis and r-grid format.
Dynamically allocatable contiguous array template.
A fixed capacity (static) contiguous array with a variable logical size.
Definition rpg/System.h:28
A FileMaster manages input and output files for a simulation.
Definition FileMaster.h:143
An object that can read multiple parameters from file.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_ASSERT(condition)
Assertion macro suitable for debugging serial or parallel code.
Definition global.h:75
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.