PSCF v1.2
rpg/fts/simulator/Simulator.h
1#ifndef RPG_SIMULATOR_H
2#define RPG_SIMULATOR_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#include <util/param/ParamComposite.h> // base class
12
13#include <rpg/fts/simulator/SimState.h> // member
14#include <prdc/cuda/RField.h> // memmber (template arg)
15#include <util/random/Random.h> // member
16#include <pscf/cuda/CudaRandom.h> // member
17#include <util/containers/DArray.h> // member (template)
18#include <util/containers/DMatrix.h> // member (template)
19
20namespace Pscf {
21namespace Rpg {
22
23 template <int D> class System;
24 template <int D> class Compressor;
25 template <int D> class CompressorFactory;
26 template <int D> class Perturbation;
27 template <int D> class PerturbationFactory;
28 template <int D> class Ramp;
29 template <int D> class RampFactory;
30
31 using namespace Util;
32 using namespace Pscf::Prdc::Cuda;
33
60 template <int D>
61 class Simulator : public ParamComposite
62 {
63
64 public:
65
72
76 ~Simulator();
77
86 void allocate();
87
96 virtual void readParameters(std::istream &in);
97
100
112 virtual void simulate(int nStep);
113
130 virtual void analyze(int min, int max,
131 std::string classname,
132 std::string filename);
133
140 void clearData();
141
149 virtual void outputTimers(std::ostream& out);
150
159 virtual void outputMdeCounter(std::ostream& out);
160
166 virtual void clearTimers();
167
171 long iStep();
172
176 long iTotalStep();
177
181
188 void analyzeChi();
189
200 DArray<double> const & chiEvals() const;
201
207 double chiEval(int a) const;
208
227 DMatrix<double> const & chiEvecs() const;
228
237 double chiEvecs(int a, int i) const;
238
253 DArray<double> const & sc() const;
254
263 double sc(int a) const;
264
268
272 void computeHamiltonian();
273
281 double hamiltonian() const;
282
286 double idealHamiltonian() const;
287
291 double fieldHamiltonian() const;
292
303 double perturbationHamiltonian() const;
304
308 bool hasHamiltonian() const;
309
313
330 void computeWc();
331
339 DArray< RField<D> > const & wc() const;
340
348 RField<D> const & wc(int a) const;
349
353 bool hasWc() const;
354
358
366 void computeCc();
367
389 DArray< RField<D> > const & cc() const;
390
399 RField<D> const & cc(int a) const;
400
404 bool hasCc() const;
405
409
417 void computeDc();
418
427 DArray< RField<D> > const & dc() const;
428
434 RField<D> const & dc(int i) const;
435
439 bool hasDc() const;
440
444
456 void saveState();
457
468 void restoreState();
469
478 void clearState();
479
483
487 System<D>& system();
488
493
497 bool hasCompressor() const;
498
502 Random& random();
503
508
512 bool hasPerturbation() const;
513
517 Perturbation<D> const & perturbation() const;
518
523
527 bool hasRamp() const;
528
532 Ramp<D> const & ramp() const;
533
537 Ramp<D>& ramp();
538
540
541 protected:
542
543 // Protected member functions
544
546
552 void readRandomSeed(std::istream& in);
553
558
568 void readCompressor(std::istream& in, bool& isEnd);
569
574
584 void readPerturbation(std::istream& in, bool& isEnd);
585
592
597
607 void readRamp(std::istream& in, bool& isEnd);
608
614 void setRamp(Ramp<D>* ptr);
615
616 // Protected data members
617
622
627
635
643
651
656
661
666
671
680
684 long iStep_;
685
690
694 long seed_;
695
700
704 bool hasWc_;
705
709 bool hasCc_;
710
714 bool hasDc_;
715
716 private:
717
725 DMatrix<double> chiP_;
726
734 DMatrix<double> chiEvecs_;
735
741 DArray<double> chiEvals_;
742
751 DArray<double> sc_;
752
756 RField<D> wcs_;
757
761 System<D>* systemPtr_;
762
766 CompressorFactory<D>* compressorFactoryPtr_;
767
771 Compressor<D>* compressorPtr_;
772
776 PerturbationFactory<D>* perturbationFactoryPtr_;
777
781 Perturbation<D>* perturbationPtr_;
782
786 RampFactory<D>* rampFactoryPtr_;
787
791 Ramp<D>* rampPtr_;
792
796 bool isAllocated_;
797
798 };
799
800 // Inline functions
801
802 // Get the parent System.
803 template <int D>
805 {
806 UTIL_CHECK(systemPtr_);
807 return *systemPtr_;
808 }
809
810 // Get the CPU random number generator.
811 template <int D>
813 { return random_; }
814
815 // Get the GPU random number generator.
816 template <int D>
818 { return cudaRandom_; }
819
820 // Does this Simulator have a Compressor?
821 template <int D>
822 inline bool Simulator<D>::hasCompressor() const
823 { return (bool)compressorPtr_; }
824
825 // Get the Compressor by reference.
826 template <int D>
828 {
829 UTIL_CHECK(compressorPtr_);
830 return *compressorPtr_;
831 }
832
833 // Get the Compressor factory.
834 template <int D>
836 {
837 UTIL_CHECK(compressorFactoryPtr_);
838 return *compressorFactoryPtr_;
839 }
840
841 // Does this Simulator have an associated Perturbation?
842 template <int D>
844 { return (bool)perturbationPtr_; }
845
846 // Get the perturbation (if any) by const reference.
847 template <int D>
849 {
850 UTIL_CHECK(perturbationPtr_);
851 return *perturbationPtr_;
852 }
853
854 // Get the perturbation (if any) by non-const reference.
855 template <int D>
857 {
858 UTIL_CHECK(perturbationPtr_);
859 return *perturbationPtr_;
860 }
861
862 // Get the perturbation factory.
863 template <int D>
865 {
866 UTIL_CHECK(perturbationFactoryPtr_);
867 return *perturbationFactoryPtr_;
868 }
869
870 // Does this Simulator have an associated Ramp?
871 template <int D>
872 inline bool Simulator<D>::hasRamp() const
873 { return (bool)rampPtr_; }
874
875 // Get the ramp by const reference.
876 template <int D>
877 inline Ramp<D> const & Simulator<D>::ramp() const
878 {
879 UTIL_CHECK(rampPtr_);
880 return *rampPtr_;
881 }
882
883 // Get the ramp by non-const reference.
884 template <int D>
886 {
887 UTIL_CHECK(rampPtr_);
888 return *rampPtr_;
889 }
890
891 // Get the ramp factory.
892 template <int D>
894 {
895 UTIL_CHECK(rampFactoryPtr_);
896 return *rampFactoryPtr_;
897 }
898
899 // Return an array of eigenvalues of projected chi matrix.
900 template <int D>
901 inline double Simulator<D>::chiEval(int a) const
902 { return chiEvals_[a]; }
903
904 // Return an array of eigenvalues of projected chi matrix.
905 template <int D>
907 { return chiEvals_; }
908
909 // Return a matrix of eigenvectors of the projected chi matrix.
910 template <int D>
912 { return chiEvecs_; }
913
914 // Return a matrix of eigenvectors of the projected chi matrix.
915 template <int D>
916 inline double Simulator<D>::chiEvecs(int a, int i) const
917 { return chiEvecs_(a, i); }
918
919 // Return array of values of vector S.
920 template <int D>
921 inline DArray<double> const & Simulator<D>::sc() const
922 { return sc_; }
923
924 // Return one component of vector S.
925 template <int D>
926 inline double Simulator<D>::sc(int a) const
927 { return sc_[a]; }
928
929 // Has the Hamiltonian been computed for the current w fields ?
930 template <int D>
932 { return hasHamiltonian_; }
933
934 // Get the precomputed Hamiltonian
935 template <int D>
936 inline double Simulator<D>::hamiltonian() const
937 {
938 UTIL_CHECK(hasHamiltonian_);
939 return hamiltonian_;
940 }
941
942 // Get the ideal gas component of the precomputed Hamiltonian
943 template <int D>
944 inline double Simulator<D>::idealHamiltonian() const
945 {
946 UTIL_CHECK(hasHamiltonian_);
947 return idealHamiltonian_;
948 }
949
950 // Get the W field component of the precomputed Hamiltonian.
951 template <int D>
952 inline double Simulator<D>::fieldHamiltonian() const
953 {
954 UTIL_CHECK(hasHamiltonian_);
955 return fieldHamiltonian_;
956 }
957
958 // Get the perturbation component of the precomputed Hamiltonian.
959 template <int D>
961 {
962 UTIL_CHECK(hasHamiltonian_);
963 return perturbationHamiltonian_;
964 }
965
966 // Return all eigencomponents of the w fields.
967 template <int D>
968 inline DArray< RField<D> > const & Simulator<D>::wc() const
969 { return wc_; }
970
971 // Return a single eigenvector component of the w fields.
972 template <int D>
973 inline RField<D> const & Simulator<D>::wc(int a) const
974 { return wc_[a]; }
975
976 // Have eigenvector components of current w fields been computed?
977 template <int D>
978 inline bool Simulator<D>::hasWc() const
979 { return hasWc_; }
980
981 // Return all eigenvector components of the current c fields.
982 template <int D>
983 inline DArray< RField<D> > const & Simulator<D>::cc() const
984 { return cc_; }
985
986 // Return a single eigenvector component of the current c fields.
987 template <int D>
988 inline RField<D> const & Simulator<D>::cc(int a) const
989 { return cc_[a]; }
990
991 // Have eigenvector components of current c fields been computed?
992 template <int D>
993 inline bool Simulator<D>::hasCc() const
994 { return hasCc_; }
995
996 // Return all eigenvector components of the current d fields.
997 template <int D>
998 inline DArray< RField<D> > const & Simulator<D>::dc() const
999 { return dc_; }
1000
1001 // Return a single eigenvector component of the current d fields.
1002 template <int D>
1003 inline RField<D> const & Simulator<D>::dc(int a) const
1004 { return dc_[a]; }
1005
1006 // Have eigenvector components of current d fields been computed?
1007 template <int D>
1008 inline bool Simulator<D>::hasDc() const
1009 { return hasDc_; }
1010
1011 // Clear all data (eigen-components of w field and Hamiltonian)
1012 template <int D>
1014 {
1015 hasHamiltonian_ = false;
1016 hasWc_ = false;
1017 hasCc_ = false;
1018 hasDc_ = false;
1019 }
1020
1021 // Return the current converged simulation step index.
1022 template <int D>
1024 { return iStep_; }
1025
1026 // Return the current simulation step index.
1027 template <int D>
1029 { return iTotalStep_; }
1030
1031 #ifndef RPG_SIMULATOR_TPP
1032 // Suppress implicit instantiation
1033 extern template class Simulator<1>;
1034 extern template class Simulator<2>;
1035 extern template class Simulator<3>;
1036 #endif
1037
1038}
1039}
1040#endif
Random number generator on GPU.
Definition CudaRandom.h:30
Field of real double precision values on an FFT mesh.
Factory for subclasses of Compressor.
Base class for iterators that impose incompressibility.
Factory for subclasses of Perturbation.
Base class for additive perturbations of standard FTS Hamiltonian.
Factory for subclasses of Ramp.
Class that varies parameters during a simulation (abstract).
Field theoretic simulator (base class).
Definition rpg/System.h:41
void readRandomSeed(std::istream &in)
Read random seed and initialize random number generators.
long iStep()
Return the current converged simulation step index.
PerturbationFactory< D > & perturbationFactory()
Get the perturbation factory by reference.
bool hasPerturbation() const
Does this Simulator have a Perturbation?
virtual void outputTimers(std::ostream &out)
Output timing results.
long iTotalStep()
Return the current simulation step index.
Random random_
Random number generator.
System< D > & system()
Get parent system by reference.
void computeWc()
Compute eigenvector components of the current w fields.
CudaRandom & cudaRandom()
Get cuda random number generator by reference.
void readRamp(std::istream &in, bool &isEnd)
Optionally read an associated ramp.
void computeCc()
Compute eigenvector components of the current c fields.
void clearData()
Clear field eigen-components and hamiltonian components.
DArray< RField< D > > dc_
Components of d fields on a real space grid.
DMatrix< double > const & chiEvecs() const
Get the matrix of all eigenvectors of the projected chi matrix.
bool hasHamiltonian_
Has the Hamiltonian been computed for the current w and c fields?
bool hasWc_
Have eigen-components of the current w fields been computed ?
bool hasCc() const
Are eigen-components of current c fields valid ?
void setPerturbation(Perturbation< D > *ptr)
Set the associated perturbation.
void computeDc()
Compute functional derivatives of the Hamiltonian.
SimState< D > state_
State saved during fts simulation.
bool hasHamiltonian() const
Has the MC Hamiltonian been computed for current w and c fields?
double perturbationHamiltonian_
Perturbation to the standard Hamiltonian (if any).
long iTotalStep_
Simulation step counter.
virtual void analyze(int min, int max, std::string classname, std::string filename)
Read and analyze a trajectory file.
Random & random()
Get random number generator by reference.
bool hasDc_
Have functional derivatives of H[W] been computed ?
void allocate()
Allocate required memory.
DArray< RField< D > > cc_
Eigenvector components of c fields on a real space grid.
void saveState()
Save a copy of the fts move state.
void restoreState()
Restore the saved copy of the fts move state.
void readPerturbation(std::istream &in, bool &isEnd)
Optionally read an associated perturbation.
CompressorFactory< D > & compressorFactory()
Get the compressor factory by reference.
void readCompressor(std::istream &in, bool &isEnd)
Read the compressor block of the parameter file.
virtual void simulate(int nStep)
Perform a field theoretic Monte-Carlo simulation.
DArray< double > const & sc() const
Get all components of the vector S.
Ramp< D > const & ramp() const
Get the associated Ramp by const reference.
DArray< RField< D > > const & wc() const
Get all eigenvector components of the current w fields.
double hamiltonian() const
Get the Hamiltonian used in field theoretic simulations.
bool hasCc_
Have eigen-components of the current c fields been computed ?
CudaRandom cudaRandom_
Random number generator.
bool hasRamp() const
Does this Simulator have a Ramp?
virtual void readParameters(std::istream &in)
Read parameters for a simulation.
Simulator(System< D > &system)
Constructor.
double fieldHamiltonian_
Field contribution (H_W) to Hamiltonian.
void analyzeChi()
Perform eigenvalue analysis of projected chi matrix.
DArray< double > const & chiEvals() const
Get an array of the eigenvalues of the projected chi matrix.
Compressor< D > & compressor()
Get the compressor by reference.
bool hasCompressor() const
Does this Simulator have a Compressor object?
bool hasWc() const
Are eigen-components of current w fields valid ?
double chiEval(int a) const
Get a single eigenvalue of the projected chi matrix.
Perturbation< D > const & perturbation() const
Get the associated Perturbation by const reference.
bool hasDc() const
Are the current d fields valid ?
double idealHamiltonian_
Ideal gas contribution (lnQ) to Hamiltonian H[W].
void setRamp(Ramp< D > *ptr)
Set the associated ramp.
double fieldHamiltonian() const
Get the quadratic field contribution (HW) to MC Hamiltonian.
void clearState()
Clear the saved copy of the fts state.
long seed_
Random number generator seed.
long iStep_
Simulation step counter.
virtual void clearTimers()
Clear timers.
DArray< RField< D > > const & dc() const
Get all of the current d fields.
double hamiltonian_
Field theoretic Hamiltonian H[W] (extensive value).
RampFactory< D > & rampFactory()
Get the ramp factory by reference.
DArray< RField< D > > const & cc() const
Get all eigenvector components of the current c fields.
double idealHamiltonian() const
Get ideal gas contribution (-lnQ) to MC Hamiltonian.
DArray< RField< D > > wc_
Eigenvector components of w fields on a real space grid.
double perturbationHamiltonian() const
Get the perturbation to the standard Hamiltonian (if any).
virtual void outputMdeCounter(std::ostream &out)
Output MDE counter.
void computeHamiltonian()
Compute the Hamiltonian used in field theoretic simulations.
Main class for calculations that represent one system.
Definition rpg/System.h:107
Dynamically allocatable contiguous array template.
Dynamically allocated Matrix.
Definition DMatrix.h:25
An object that can read multiple parameters from file.
void setClassName(const char *className)
Set class name string.
Random number generator.
Definition Random.h:47
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
SimState stores the state used by an fts simulation.