6 |
|
#include <vector> |
7 |
|
|
8 |
|
#include "Atom.hpp" |
9 |
+ |
#include "RigidBody.hpp" |
10 |
|
#include "Molecule.hpp" |
11 |
+ |
#include "Exclude.hpp" |
12 |
+ |
#include "SkipList.hpp" |
13 |
|
#include "AbstractClasses.hpp" |
14 |
|
#include "MakeStamps.hpp" |
15 |
|
#include "SimState.hpp" |
18 |
|
#include "fSimulation.h" |
19 |
|
#include "fortranWrapDefines.hpp" |
20 |
|
#include "GenericData.hpp" |
21 |
< |
|
22 |
< |
|
23 |
< |
|
21 |
> |
//#include "Minimizer.hpp" |
22 |
> |
//#include "OOPSEMinimizer.hpp" |
23 |
> |
double roundMe( double x ); |
24 |
> |
class OOPSEMinimizer; |
25 |
|
class SimInfo{ |
26 |
|
|
27 |
|
public: |
31 |
|
|
32 |
|
int n_atoms; // the number of atoms |
33 |
|
Atom **atoms; // the array of atom objects |
34 |
+ |
|
35 |
+ |
vector<RigidBody*> rigidBodies; // A vector of rigid bodies |
36 |
+ |
vector<StuntDouble*> integrableObjects; |
37 |
|
|
38 |
|
double tau[9]; // the stress tensor |
39 |
|
|
51 |
|
|
52 |
|
int n_dipoles; // number of dipoles |
53 |
|
|
54 |
< |
|
55 |
< |
int n_exclude; // the # of pairs excluded from long range forces |
49 |
< |
Exclude** excludes; // the pairs themselves |
50 |
< |
|
54 |
> |
int n_exclude; |
55 |
> |
Exclude* excludes; // the exclude list for ignoring pairs in fortran |
56 |
|
int nGlobalExcludes; |
57 |
|
int* globalExcludes; // same as above, but these guys participate in |
58 |
|
// no long range forces. |
86 |
|
int usePBC; // whether we use periodic boundry conditions. |
87 |
|
int useLJ; |
88 |
|
int useSticky; |
89 |
< |
int useDipole; |
89 |
> |
int useCharges; |
90 |
> |
int useDipoles; |
91 |
|
int useReactionField; |
92 |
|
int useGB; |
93 |
|
int useEAM; |
94 |
+ |
int useMolecularCutoffs; |
95 |
|
|
96 |
|
bool useInitXSstate; |
97 |
|
double orthoTolerance; |
116 |
|
char mixingRule[100]; // the mixing rules for Lennard jones/van der walls |
117 |
|
BaseIntegrator *the_integrator; // the integrator of the simulation |
118 |
|
|
119 |
+ |
OOPSEMinimizer* the_minimizer; // the energy minimizer |
120 |
+ |
bool has_minimizer; |
121 |
+ |
|
122 |
|
char finalName[300]; // the name of the eor file to be written |
123 |
|
char sampleName[300]; // the name of the dump file to be written |
124 |
|
char statusName[300]; // the name of the stat file to be written |
125 |
|
|
126 |
|
int seed; //seed for random number generator |
127 |
+ |
|
128 |
+ |
|
129 |
+ |
vector<double> mfact; |
130 |
+ |
int ngroup; |
131 |
+ |
vector<int> groupList; |
132 |
+ |
vector<int> groupStart; |
133 |
+ |
|
134 |
|
// refreshes the sim if things get changed (load balanceing, volume |
135 |
|
// adjustment, etc.) |
136 |
|
|
150 |
|
int getNDF(); |
151 |
|
int getNDFraw(); |
152 |
|
int getNDFtranslational(); |
153 |
< |
|
153 |
> |
int getTotIntegrableObjects(); |
154 |
|
void setBox( double newBox[3] ); |
155 |
|
void setBoxM( double newBox[3][3] ); |
156 |
|
void getBoxM( double theBox[3][3] ); |
157 |
|
void scaleBox( double scale ); |
158 |
|
|
142 |
– |
void setRcut( double theRcut ); |
159 |
|
void setDefaultRcut( double theRcut ); |
144 |
– |
void setEcr( double theEcr ); |
160 |
|
void setDefaultEcr( double theEcr ); |
146 |
– |
void setEcr( double theEcr, double theEst ); |
161 |
|
void setDefaultEcr( double theEcr, double theEst ); |
162 |
|
void checkCutOffs( void ); |
163 |
|
|
174 |
|
|
175 |
|
void wrapVector( double thePos[3] ); |
176 |
|
|
163 |
– |
void matMul3(double a[3][3], double b[3][3], double out[3][3]); |
164 |
– |
void matVecMul3(double m[3][3], double inVec[3], double outVec[3]); |
165 |
– |
void invertMat3(double in[3][3], double out[3][3]); |
166 |
– |
void transposeMat3(double in[3][3], double out[3][3]); |
167 |
– |
void printMat3(double A[3][3]); |
168 |
– |
void printMat9(double A[9]); |
169 |
– |
double matDet3(double m[3][3]); |
170 |
– |
double matTrace3(double m[3][3]); |
171 |
– |
|
172 |
– |
void crossProduct3(double a[3],double b[3], double out[3]); |
173 |
– |
double dotProduct3(double a[3], double b[3]); |
174 |
– |
double length3(double a[3]); |
175 |
– |
|
177 |
|
SimState* getConfiguration( void ) { return myConfiguration; } |
178 |
|
|
179 |
|
void addProperty(GenericData* prop); |
180 |
|
GenericData* getProperty(const string& propName); |
181 |
< |
vector<GenericData*> getProperties(); |
181 |
> |
//vector<GenericData*>& getProperties() {return properties;} |
182 |
|
|
183 |
|
int getSeed(void) { return seed; } |
184 |
|
void setSeed(int theSeed) { seed = theSeed;} |
187 |
|
|
188 |
|
SimState* myConfiguration; |
189 |
|
|
190 |
< |
double origRcut, origEcr; |
190 |
< |
int boxIsInit, haveOrigRcut, haveOrigEcr; |
190 |
> |
int boxIsInit, haveRcut, haveEcr; |
191 |
|
|
192 |
– |
double oldEcr; |
193 |
– |
double oldRcut; |
194 |
– |
|
192 |
|
double rList, rCut; // variables for the neighborlist |
193 |
|
double ecr; // the electrostatic cutoff radius |
194 |
|
double est; // the electrostatic skin thickness |
197 |
|
double distXY; |
198 |
|
double distYZ; |
199 |
|
double distZX; |
203 |
– |
|
204 |
– |
|
200 |
|
|
201 |
|
void calcHmatInv( void ); |
202 |
|
void calcBoxL(); |
203 |
|
double calcMaxCutOff(); |
204 |
|
|
210 |
– |
|
205 |
|
// private function to initialize the fortran side of the simulation |
206 |
|
setFortranSim_TD setFsimulation; |
207 |
|
|
214 |
|
|
215 |
|
}; |
216 |
|
|
217 |
+ |
void getFortranGroupArray(SimInfo* info, vector<double>& mfact, int& ngroup, |
218 |
+ |
vector<int>& groupList, vector<int>& groupStart); |
219 |
|
|
224 |
– |
|
220 |
|
#endif |