ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/integrators/NPTf.cpp
Revision: 1867
Committed: Tue Dec 7 23:08:14 2004 UTC (19 years, 6 months ago) by tim
File size: 7425 byte(s)
Log Message:
NPT in progress

File Contents

# Content
1 #include "brains/SimInfo.hpp"
2 #include "brains/Thermo.hpp"
3 #include "integrators/IntegratorCreator.hpp"
4 #include "integrators/NPTf.hpp"
5 #include "primitives/Molecule.hpp"
6 #include "utils/OOPSEConstant.hpp"
7 #include "utils/simError.h"
8
9 namespace oopse {
10
11 static IntegratorBuilder<NPTf>* NPTfCreator = new IntegratorBuilder<NPTf>("NPTf");
12
13 // Basic non-isotropic thermostating and barostating via the Melchionna
14 // modification of the Hoover algorithm:
15 //
16 // Melchionna, S., Ciccotti, G., and Holian, B. L., 1993,
17 // Molec. Phys., 78, 533.
18 //
19 // and
20 //
21 // Hoover, W. G., 1986, Phys. Rev. A, 34, 2499.
22
23 void NPTf::evolveEtaA() {
24
25 int i, j;
26
27 for(i = 0; i < 3; i ++){
28 for(j = 0; j < 3; j++){
29 if( i == j) {
30 eta(i, j) += dt2 * instaVol * (press(i, j) - targetPressure/OOPSEConstant::pressureConvert) / (NkBT*tb2);
31 } else {
32 eta(i, j) += dt2 * instaVol * press(i, j) / (NkBT*tb2);
33 }
34 }
35 }
36
37 for(i = 0; i < 3; i++) {
38 for (j = 0; j < 3; j++) {
39 oldEta(i, j) = eta(i, j);
40 }
41 }
42
43 }
44
45 void NPTf::evolveEtaB() {
46
47 int i;
48 int j;
49
50 for(i = 0; i < 3; i++) {
51 for (j = 0; j < 3; j++) {
52 prevEta(i, j) = eta(i, j);
53 }
54 }
55
56 for(i = 0; i < 3; i ++){
57 for(j = 0; j < 3; j++){
58 if( i == j) {
59 eta(i, j) = oldEta(i, j) + dt2 * instaVol *
60 (press(i, j) - targetPressure/OOPSEConstant::pressureConvert) / (NkBT*tb2);
61 } else {
62 eta(i, j) = oldEta(i, j) + dt2 * instaVol * press(i, j) / (NkBT*tb2);
63 }
64 }
65 }
66
67
68 }
69
70 void NPTf::calcVelScale(){
71
72 for (int i = 0; i < 3; i++ ) {
73 for (int j = 0; j < 3; j++ ) {
74 vScale(i, j) = eta(i, j);
75
76 if (i == j) {
77 vScale(i, j) += chi;
78 }
79 }
80 }
81 }
82
83 void NPTf::getVelScaleA(Vector3d& sc, const Vector3d& vel){
84 sc = vScale * vel;
85 }
86
87 void NPTf::getVelScaleB(Vector3d& sc, int index ) {
88 sc = vScale * oldVel[index];
89 }
90
91 void NPTf::getPosScale(const Vector3d& pos, const Vector3d& COM, int index, Vector3d& sc) {
92
93 /**@todo */
94 Vector3d rj = (oldPos[index] + pos)/2.0 -COM;
95 sc = eta * rj;
96 }
97
98 void NPTf::scaleSimBox(){
99
100 int i;
101 int j;
102 int k;
103 Mat3x3d scaleMat;
104 double eta2ij;
105 double bigScale, smallScale, offDiagMax;
106 Mat3x3d hm;
107 Mat3x3d hmnew;
108
109
110
111 // Scale the box after all the positions have been moved:
112
113 // Use a taylor expansion for eta products: Hmat = Hmat . exp(dt * etaMat)
114 // Hmat = Hmat . ( Ident + dt * etaMat + dt^2 * etaMat*etaMat / 2)
115
116 bigScale = 1.0;
117 smallScale = 1.0;
118 offDiagMax = 0.0;
119
120 for(i=0; i<3; i++){
121 for(j=0; j<3; j++){
122
123 // Calculate the matrix Product of the eta array (we only need
124 // the ij element right now):
125
126 eta2ij = 0.0;
127 for(k=0; k<3; k++){
128 eta2ij += eta(i, k) * eta(k, j);
129 }
130
131 scaleMat(i, j) = 0.0;
132 // identity matrix (see above):
133 if (i == j) scaleMat(i, j) = 1.0;
134 // Taylor expansion for the exponential truncated at second order:
135 scaleMat(i, j) += dt*eta(i, j) + 0.5*dt*dt*eta2ij;
136
137
138 if (i != j)
139 if (fabs(scaleMat(i, j)) > offDiagMax)
140 offDiagMax = fabs(scaleMat(i, j));
141 }
142
143 if (scaleMat(i, i) > bigScale) bigScale = scaleMat(i, i);
144 if (scaleMat(i, i) < smallScale) smallScale = scaleMat(i, i);
145 }
146
147 if ((bigScale > 1.01) || (smallScale < 0.99)) {
148 sprintf( painCave.errMsg,
149 "NPTf error: Attempting a Box scaling of more than 1 percent.\n"
150 " Check your tauBarostat, as it is probably too small!\n\n"
151 " scaleMat = [%lf\t%lf\t%lf]\n"
152 " [%lf\t%lf\t%lf]\n"
153 " [%lf\t%lf\t%lf]\n"
154 " eta = [%lf\t%lf\t%lf]\n"
155 " [%lf\t%lf\t%lf]\n"
156 " [%lf\t%lf\t%lf]\n",
157 scaleMat(0, 0),scaleMat(0, 1),scaleMat(0, 2),
158 scaleMat(1, 0),scaleMat(1, 1),scaleMat(1, 2),
159 scaleMat(2, 0),scaleMat(2, 1),scaleMat(2, 2),
160 eta(0, 0),eta(0, 1),eta(0, 2),
161 eta(1, 0),eta(1, 1),eta(1, 2),
162 eta(2, 0),eta(2, 1),eta(2, 2));
163 painCave.isFatal = 1;
164 simError();
165 } else if (offDiagMax > 0.01) {
166 sprintf( painCave.errMsg,
167 "NPTf error: Attempting an off-diagonal Box scaling of more than 1 percent.\n"
168 " Check your tauBarostat, as it is probably too small!\n\n"
169 " scaleMat = [%lf\t%lf\t%lf]\n"
170 " [%lf\t%lf\t%lf]\n"
171 " [%lf\t%lf\t%lf]\n"
172 " eta = [%lf\t%lf\t%lf]\n"
173 " [%lf\t%lf\t%lf]\n"
174 " [%lf\t%lf\t%lf]\n",
175 scaleMat(0, 0),scaleMat(0, 1),scaleMat(0, 2),
176 scaleMat(1, 0),scaleMat(1, 1),scaleMat(1, 2),
177 scaleMat(2, 0),scaleMat(2, 1),scaleMat(2, 2),
178 eta(0, 0),eta(0, 1),eta(0, 2),
179 eta(1, 0),eta(1, 1),eta(1, 2),
180 eta(2, 0),eta(2, 1),eta(2, 2));
181 painCave.isFatal = 1;
182 simError();
183 } else {
184
185 Mat3x3d hmat = currentSnapshot_->getHmat();
186 hmat = hmat *scaleMat;
187 currentSnapshot_->setHmat(hmat);
188
189 }
190 }
191
192 bool NPTf::etaConverged() {
193 int i;
194 double diffEta, sumEta;
195
196 sumEta = 0;
197 for(i = 0; i < 3; i++) {
198 sumEta += pow(prevEta(i, i) - eta(i, i), 2);
199 }
200
201 diffEta = sqrt( sumEta / 3.0 );
202
203 return ( diffEta <= etaTolerance );
204 }
205
206 double NPTf::calcConservedQuantity(){
207
208 chi= currentSnapshot_->getChi();
209 integralOfChidt = currentSnapshot_->getIntegralOfChiDt();
210 loadEta();
211
212 // We need NkBT a lot, so just set it here: This is the RAW number
213 // of integrableObjects, so no subtraction or addition of constraints or
214 // orientational degrees of freedom:
215 NkBT = info_->getNGlobalIntegrableObjects()*OOPSEConstant::kB *targetTemp;
216
217 // fkBT is used because the thermostat operates on more degrees of freedom
218 // than the barostat (when there are particles with orientational degrees
219 // of freedom).
220 fkBT = info_->getNdf()*OOPSEConstant::kB *targetTemp;
221
222 double conservedQuantity;
223 double totalEnergy;
224 double thermostat_kinetic;
225 double thermostat_potential;
226 double barostat_kinetic;
227 double barostat_potential;
228 double trEta;
229
230 totalEnergy = thermo.getTotalE();
231
232 thermostat_kinetic = fkBT * tt2 * chi * chi /(2.0 * OOPSEConstant::energyConvert);
233
234 thermostat_potential = fkBT* integralOfChidt / OOPSEConstant::energyConvert;
235
236 SquareMatrix<double, 3> tmp = eta.transpose() * eta;
237 trEta = tmp.trace();
238
239 barostat_kinetic = NkBT * tb2 * trEta /(2.0 * OOPSEConstant::energyConvert);
240
241 barostat_potential = (targetPressure * thermo.getVolume() / OOPSEConstant::pressureConvert) /OOPSEConstant::energyConvert;
242
243 conservedQuantity = totalEnergy + thermostat_kinetic + thermostat_potential +
244 barostat_kinetic + barostat_potential;
245
246 return conservedQuantity;
247
248 }
249
250 void NPTf::loadEta() {
251 eta= currentSnapshot_->getEta();
252
253 if (!eta.isDiagonal()) {
254 sprintf( painCave.errMsg,
255 "NPTi error: the diagonal elements of are eta matrix is not same or etaMat is not a diagonal matrix");
256 painCave.isFatal = 1;
257 simError();
258 }
259 }
260
261 void NPTf::saveEta() {
262 currentSnapshot_->setEta(eta);
263 }
264
265 }