# | Line 9 | Line 9 | |
---|---|---|
9 | #include "parse_me.h" | |
10 | #include "Integrator.hpp" | |
11 | #include "simError.h" | |
12 | + | #include "RigidBody.hpp" |
13 | //#include "ConjugateMinimizer.hpp" | |
14 | #include "OOPSEMinimizer.hpp" | |
15 | ||
# | Line 165 | Line 166 | void SimSetup::makeMolecules(void){ | |
166 | ||
167 | ||
168 | void SimSetup::makeMolecules(void){ | |
169 | < | int k; |
170 | < | int i, j, exI, exJ, tempEx, stampID, atomOffset, excludeOffset; |
169 | > | int i, j, k; |
170 | > | int exI, exJ, exK, exL, slI, slJ; |
171 | > | int tempI, tempJ, tempK, tempL; |
172 | > | int molI; |
173 | > | int stampID, atomOffset, rbOffset; |
174 | molInit molInfo; | |
175 | DirectionalAtom* dAtom; | |
176 | + | RigidBody* myRB; |
177 | + | StuntDouble* mySD; |
178 | LinkedAssign* extras; | |
179 | LinkedAssign* current_extra; | |
180 | AtomStamp* currentAtom; | |
181 | BondStamp* currentBond; | |
182 | BendStamp* currentBend; | |
183 | TorsionStamp* currentTorsion; | |
184 | + | RigidBodyStamp* currentRigidBody; |
185 | ||
186 | bond_pair* theBonds; | |
187 | bend_set* theBends; | |
188 | torsion_set* theTorsions; | |
189 | ||
190 | + | set<int> skipList; |
191 | + | |
192 | + | double phi, theta, psi; |
193 | + | char* molName; |
194 | + | char rbName[100]; |
195 | + | |
196 | //init the forceField paramters | |
197 | ||
198 | the_ff->readParams(); | |
199 | ||
187 | – | |
200 | // init the atoms | |
201 | ||
202 | < | double phi, theta, psi; |
191 | < | double sux, suy, suz; |
192 | < | double Axx, Axy, Axz, Ayx, Ayy, Ayz, Azx, Azy, Azz; |
193 | < | double ux, uy, uz, u, uSqr; |
202 | > | int nMembers, nNew, rb1, rb2; |
203 | ||
204 | for (k = 0; k < nInfo; k++){ | |
205 | the_ff->setSimInfo(&(info[k])); | |
206 | ||
207 | atomOffset = 0; | |
208 | < | excludeOffset = 0; |
208 | > | |
209 | for (i = 0; i < info[k].n_mol; i++){ | |
210 | stampID = info[k].molecules[i].getStampID(); | |
211 | + | molName = comp_stamps[stampID]->getID(); |
212 | ||
213 | molInfo.nAtoms = comp_stamps[stampID]->getNAtoms(); | |
214 | molInfo.nBonds = comp_stamps[stampID]->getNBonds(); | |
215 | molInfo.nBends = comp_stamps[stampID]->getNBends(); | |
216 | molInfo.nTorsions = comp_stamps[stampID]->getNTorsions(); | |
217 | < | molInfo.nExcludes = molInfo.nBonds + molInfo.nBends + molInfo.nTorsions; |
218 | < | |
217 | > | molInfo.nRigidBodies = comp_stamps[stampID]->getNRigidBodies(); |
218 | > | |
219 | molInfo.myAtoms = &(info[k].atoms[atomOffset]); | |
210 | – | molInfo.myExcludes = &(info[k].excludes[excludeOffset]); |
211 | – | molInfo.myBonds = new Bond * [molInfo.nBonds]; |
212 | – | molInfo.myBends = new Bend * [molInfo.nBends]; |
213 | – | molInfo.myTorsions = new Torsion * [molInfo.nTorsions]; |
220 | ||
221 | + | if (molInfo.nBonds > 0) |
222 | + | molInfo.myBonds = new (Bond *) [molInfo.nBonds]; |
223 | + | else |
224 | + | molInfo.myBonds = NULL; |
225 | + | |
226 | + | if (molInfo.nBends > 0) |
227 | + | molInfo.myBends = new (Bend *) [molInfo.nBends]; |
228 | + | else |
229 | + | molInfo.myBends = NULL; |
230 | + | |
231 | + | if (molInfo.nTorsions > 0) |
232 | + | molInfo.myTorsions = new (Torsion *) [molInfo.nTorsions]; |
233 | + | else |
234 | + | molInfo.myTorsions = NULL; |
235 | + | |
236 | theBonds = new bond_pair[molInfo.nBonds]; | |
237 | theBends = new bend_set[molInfo.nBends]; | |
238 | theTorsions = new torsion_set[molInfo.nTorsions]; | |
239 | < | |
239 | > | |
240 | // make the Atoms | |
241 | ||
242 | for (j = 0; j < molInfo.nAtoms; j++){ | |
243 | currentAtom = comp_stamps[stampID]->getAtom(j); | |
244 | + | |
245 | if (currentAtom->haveOrientation()){ | |
246 | dAtom = new DirectionalAtom((j + atomOffset), | |
247 | info[k].getConfiguration()); | |
# | Line 233 | Line 255 | void SimSetup::makeMolecules(void){ | |
255 | phi = currentAtom->getEulerPhi() * M_PI / 180.0; | |
256 | theta = currentAtom->getEulerTheta() * M_PI / 180.0; | |
257 | psi = currentAtom->getEulerPsi()* M_PI / 180.0; | |
236 | – | |
237 | – | Axx = (cos(phi) * cos(psi)) - (sin(phi) * cos(theta) * sin(psi)); |
238 | – | Axy = (sin(phi) * cos(psi)) + (cos(phi) * cos(theta) * sin(psi)); |
239 | – | Axz = sin(theta) * sin(psi); |
240 | – | |
241 | – | Ayx = -(cos(phi) * sin(psi)) - (sin(phi) * cos(theta) * cos(psi)); |
242 | – | Ayy = -(sin(phi) * sin(psi)) + (cos(phi) * cos(theta) * cos(psi)); |
243 | – | Ayz = sin(theta) * cos(psi); |
244 | – | |
245 | – | Azx = sin(phi) * sin(theta); |
246 | – | Azy = -cos(phi) * sin(theta); |
247 | – | Azz = cos(theta); |
258 | ||
259 | < | sux = 0.0; |
260 | < | suy = 0.0; |
251 | < | suz = 1.0; |
252 | < | |
253 | < | ux = (Axx * sux) + (Ayx * suy) + (Azx * suz); |
254 | < | uy = (Axy * sux) + (Ayy * suy) + (Azy * suz); |
255 | < | uz = (Axz * sux) + (Ayz * suy) + (Azz * suz); |
256 | < | |
257 | < | uSqr = (ux * ux) + (uy * uy) + (uz * uz); |
258 | < | |
259 | < | u = sqrt(uSqr); |
260 | < | ux = ux / u; |
261 | < | uy = uy / u; |
262 | < | uz = uz / u; |
263 | < | |
264 | < | dAtom->setSUx(ux); |
265 | < | dAtom->setSUy(uy); |
266 | < | dAtom->setSUz(uz); |
259 | > | dAtom->setUnitFrameFromEuler(phi, theta, psi); |
260 | > | |
261 | } | |
262 | else{ | |
263 | < | molInfo.myAtoms[j] = new GeneralAtom((j + atomOffset), |
264 | < | info[k].getConfiguration()); |
263 | > | |
264 | > | molInfo.myAtoms[j] = new Atom((j + atomOffset), info[k].getConfiguration()); |
265 | } | |
266 | + | |
267 | molInfo.myAtoms[j]->setType(currentAtom->getType()); | |
268 | ||
269 | #ifdef IS_MPI | |
270 | ||
271 | < | molInfo.myAtoms[j]->setGlobalIndex(globalIndex[j + atomOffset]); |
271 | > | molInfo.myAtoms[j]->setGlobalIndex(globalAtomIndex[j + atomOffset]); |
272 | ||
273 | #endif // is_mpi | |
274 | } | |
# | Line 284 | Line 279 | void SimSetup::makeMolecules(void){ | |
279 | theBonds[j].a = currentBond->getA() + atomOffset; | |
280 | theBonds[j].b = currentBond->getB() + atomOffset; | |
281 | ||
282 | < | exI = theBonds[j].a; |
283 | < | exJ = theBonds[j].b; |
284 | < | |
290 | < | // exclude_I must always be the smaller of the pair |
291 | < | if (exI > exJ){ |
292 | < | tempEx = exI; |
293 | < | exI = exJ; |
294 | < | exJ = tempEx; |
295 | < | } |
282 | > | tempI = theBonds[j].a; |
283 | > | tempJ = theBonds[j].b; |
284 | > | |
285 | #ifdef IS_MPI | |
286 | < | tempEx = exI; |
287 | < | exI = info[k].atoms[tempEx]->getGlobalIndex() + 1; |
288 | < | tempEx = exJ; |
289 | < | exJ = info[k].atoms[tempEx]->getGlobalIndex() + 1; |
286 | > | exI = info[k].atoms[tempI]->getGlobalIndex() + 1; |
287 | > | exJ = info[k].atoms[tempJ]->getGlobalIndex() + 1; |
288 | > | #else |
289 | > | exI = tempI + 1; |
290 | > | exJ = tempJ + 1; |
291 | > | #endif |
292 | ||
293 | < | info[k].excludes[j + excludeOffset]->setPair(exI, exJ); |
303 | < | #else // isn't MPI |
304 | < | |
305 | < | info[k].excludes[j + excludeOffset]->setPair((exI + 1), (exJ + 1)); |
306 | < | #endif //is_mpi |
293 | > | info[k].excludes->addPair(exI, exJ); |
294 | } | |
308 | – | excludeOffset += molInfo.nBonds; |
295 | ||
296 | //make the bends | |
297 | for (j = 0; j < molInfo.nBends; j++){ | |
# | Line 355 | Line 341 | void SimSetup::makeMolecules(void){ | |
341 | } | |
342 | } | |
343 | ||
344 | < | if (!theBends[j].isGhost){ |
345 | < | exI = theBends[j].a; |
346 | < | exJ = theBends[j].c; |
347 | < | } |
348 | < | else{ |
363 | < | exI = theBends[j].a; |
364 | < | exJ = theBends[j].b; |
365 | < | } |
366 | < | |
367 | < | // exclude_I must always be the smaller of the pair |
368 | < | if (exI > exJ){ |
369 | < | tempEx = exI; |
370 | < | exI = exJ; |
371 | < | exJ = tempEx; |
372 | < | } |
344 | > | if (theBends[j].isGhost) { |
345 | > | |
346 | > | tempI = theBends[j].a; |
347 | > | tempJ = theBends[j].b; |
348 | > | |
349 | #ifdef IS_MPI | |
350 | < | tempEx = exI; |
351 | < | exI = info[k].atoms[tempEx]->getGlobalIndex() + 1; |
352 | < | tempEx = exJ; |
353 | < | exJ = info[k].atoms[tempEx]->getGlobalIndex() + 1; |
350 | > | exI = info[k].atoms[tempI]->getGlobalIndex() + 1; |
351 | > | exJ = info[k].atoms[tempJ]->getGlobalIndex() + 1; |
352 | > | #else |
353 | > | exI = tempI + 1; |
354 | > | exJ = tempJ + 1; |
355 | > | #endif |
356 | > | info[k].excludes->addPair(exI, exJ); |
357 | ||
358 | < | info[k].excludes[j + excludeOffset]->setPair(exI, exJ); |
359 | < | #else // isn't MPI |
360 | < | info[k].excludes[j + excludeOffset]->setPair((exI + 1), (exJ + 1)); |
361 | < | #endif //is_mpi |
358 | > | } else { |
359 | > | |
360 | > | tempI = theBends[j].a; |
361 | > | tempJ = theBends[j].b; |
362 | > | tempK = theBends[j].c; |
363 | > | |
364 | > | #ifdef IS_MPI |
365 | > | exI = info[k].atoms[tempI]->getGlobalIndex() + 1; |
366 | > | exJ = info[k].atoms[tempJ]->getGlobalIndex() + 1; |
367 | > | exK = info[k].atoms[tempK]->getGlobalIndex() + 1; |
368 | > | #else |
369 | > | exI = tempI + 1; |
370 | > | exJ = tempJ + 1; |
371 | > | exK = tempK + 1; |
372 | > | #endif |
373 | > | |
374 | > | info[k].excludes->addPair(exI, exK); |
375 | > | info[k].excludes->addPair(exI, exJ); |
376 | > | info[k].excludes->addPair(exJ, exK); |
377 | > | } |
378 | } | |
384 | – | excludeOffset += molInfo.nBends; |
379 | ||
380 | for (j = 0; j < molInfo.nTorsions; j++){ | |
381 | currentTorsion = comp_stamps[stampID]->getTorsion(j); | |
# | Line 390 | Line 384 | void SimSetup::makeMolecules(void){ | |
384 | theTorsions[j].c = currentTorsion->getC() + atomOffset; | |
385 | theTorsions[j].d = currentTorsion->getD() + atomOffset; | |
386 | ||
387 | < | exI = theTorsions[j].a; |
388 | < | exJ = theTorsions[j].d; |
387 | > | tempI = theTorsions[j].a; |
388 | > | tempJ = theTorsions[j].b; |
389 | > | tempK = theTorsions[j].c; |
390 | > | tempL = theTorsions[j].d; |
391 | ||
396 | – | // exclude_I must always be the smaller of the pair |
397 | – | if (exI > exJ){ |
398 | – | tempEx = exI; |
399 | – | exI = exJ; |
400 | – | exJ = tempEx; |
401 | – | } |
392 | #ifdef IS_MPI | |
393 | < | tempEx = exI; |
394 | < | exI = info[k].atoms[tempEx]->getGlobalIndex() + 1; |
395 | < | tempEx = exJ; |
396 | < | exJ = info[k].atoms[tempEx]->getGlobalIndex() + 1; |
397 | < | |
398 | < | info[k].excludes[j + excludeOffset]->setPair(exI, exJ); |
399 | < | #else // isn't MPI |
400 | < | info[k].excludes[j + excludeOffset]->setPair((exI + 1), (exJ + 1)); |
401 | < | #endif //is_mpi |
393 | > | exI = info[k].atoms[tempI]->getGlobalIndex() + 1; |
394 | > | exJ = info[k].atoms[tempJ]->getGlobalIndex() + 1; |
395 | > | exK = info[k].atoms[tempK]->getGlobalIndex() + 1; |
396 | > | exL = info[k].atoms[tempL]->getGlobalIndex() + 1; |
397 | > | #else |
398 | > | exI = tempI + 1; |
399 | > | exJ = tempJ + 1; |
400 | > | exK = tempK + 1; |
401 | > | exL = tempL + 1; |
402 | > | #endif |
403 | > | |
404 | > | info[k].excludes->addPair(exI, exJ); |
405 | > | info[k].excludes->addPair(exI, exK); |
406 | > | info[k].excludes->addPair(exI, exL); |
407 | > | info[k].excludes->addPair(exJ, exK); |
408 | > | info[k].excludes->addPair(exJ, exL); |
409 | > | info[k].excludes->addPair(exK, exL); |
410 | } | |
413 | – | excludeOffset += molInfo.nTorsions; |
411 | ||
412 | + | for (j = 0; j < molInfo.nRigidBodies; j++){ |
413 | ||
414 | < | // send the arrays off to the forceField for init. |
414 | > | currentRigidBody = comp_stamps[stampID]->getRigidBody(j); |
415 | > | nMembers = currentRigidBody->getNMembers(); |
416 | > | |
417 | > | // Create the Rigid Body: |
418 | > | |
419 | > | myRB = new RigidBody(); |
420 | > | |
421 | > | sprintf(rbName,"%s_RB_%s", molName, j); |
422 | > | myRB->setType(rbName); |
423 | > | |
424 | > | for (rb1 = 0; rb1 < nMembers; rb1++) { |
425 | > | |
426 | > | // molI is atom numbering inside this molecule |
427 | > | molI = currentRigidBody->getMember(rb1); |
428 | > | |
429 | > | // tempI is atom numbering on local processor |
430 | > | tempI = molI + atomOffset; |
431 | > | |
432 | > | // currentAtom is the AtomStamp (which we need for |
433 | > | // rigid body reference positions) |
434 | > | currentAtom = comp_stamps[stampID]->getAtom(molI); |
435 | > | |
436 | > | // When we add to the rigid body, add the atom itself and |
437 | > | // the stamp info: |
438 | > | |
439 | > | myRB->addAtom(info[k].atoms[tempI], currentAtom); |
440 | > | |
441 | > | // Add this atom to the Skip List for the integrators |
442 | > | #ifdef IS_MPI |
443 | > | slI = info[k].atoms[tempI]->getGlobalIndex(); |
444 | > | #else |
445 | > | slI = tempI; |
446 | > | #endif |
447 | > | skipList.insert(slI); |
448 | > | |
449 | > | } |
450 | > | |
451 | > | for(rb1 = 0; rb1 < nMembers - 1; rb1++) { |
452 | > | for(rb2 = rb1+1; rb2 < nMembers; rb2++) { |
453 | > | |
454 | > | tempI = currentRigidBody->getMember(rb1); |
455 | > | tempJ = currentRigidBody->getMember(rb2); |
456 | > | |
457 | > | // Some explanation is required here. |
458 | > | // Fortran indexing starts at 1, while c indexing starts at 0 |
459 | > | // Also, in parallel computations, the GlobalIndex is |
460 | > | // used for the exclude list: |
461 | > | |
462 | > | #ifdef IS_MPI |
463 | > | exI = info[k].atoms[tempI]->getGlobalIndex() + 1; |
464 | > | exJ = info[k].atoms[tempJ]->getGlobalIndex() + 1; |
465 | > | #else |
466 | > | exI = tempI + 1; |
467 | > | exJ = tempJ + 1; |
468 | > | #endif |
469 | > | |
470 | > | info[k].excludes->addPair(exI, exJ); |
471 | > | |
472 | > | } |
473 | > | } |
474 | > | |
475 | > | molInfo.myRigidBodies.push_back(myRB); |
476 | > | info[k].rigidBodies.push_back(myRB); |
477 | > | } |
478 | > | |
479 | > | |
480 | > | // After this is all set up, scan through the atoms to |
481 | > | // see if they can be added to the integrableObjects: |
482 | > | |
483 | > | for (j = 0; j < molInfo.nAtoms; j++){ |
484 | > | |
485 | > | #ifdef IS_MPI |
486 | > | slJ = molInfo.myAtoms[j]->getGlobalIndex(); |
487 | > | #else |
488 | > | slJ = j+atomOffset; |
489 | > | #endif |
490 | > | |
491 | > | // if they aren't on the skip list, then they can be integrated |
492 | ||
493 | + | if (skipList.find(slJ) == skipList.end()) { |
494 | + | mySD = (StuntDouble *) molInfo.myAtoms[j]; |
495 | + | info[k].integrableObjects.push_back(mySD); |
496 | + | molInfo.myIntegrableObjects.push_back(mySD); |
497 | + | } |
498 | + | } |
499 | + | |
500 | + | // all rigid bodies are integrated: |
501 | + | |
502 | + | for (j = 0; j < molInfo.nRigidBodies; j++) { |
503 | + | mySD = (StuntDouble *) molInfo.myRigidBodies[j]; |
504 | + | info[k].integrableObjects.push_back(mySD); |
505 | + | molInfo.myIntegrableObjects.push_back(mySD); |
506 | + | } |
507 | + | |
508 | + | |
509 | + | // send the arrays off to the forceField for init. |
510 | + | |
511 | the_ff->initializeAtoms(molInfo.nAtoms, molInfo.myAtoms); | |
512 | the_ff->initializeBonds(molInfo.nBonds, molInfo.myBonds, theBonds); | |
513 | the_ff->initializeBends(molInfo.nBends, molInfo.myBends, theBends); | |
514 | the_ff->initializeTorsions(molInfo.nTorsions, molInfo.myTorsions, | |
515 | theTorsions); | |
516 | ||
424 | – | |
517 | info[k].molecules[i].initialize(molInfo); | |
518 | ||
519 | ||
# | Line 429 | Line 521 | void SimSetup::makeMolecules(void){ | |
521 | delete[] theBonds; | |
522 | delete[] theBends; | |
523 | delete[] theTorsions; | |
524 | < | } |
524 | > | } |
525 | } | |
526 | ||
527 | #ifdef IS_MPI | |
# | Line 439 | Line 531 | void SimSetup::makeMolecules(void){ | |
531 | ||
532 | // clean up the forcefield | |
533 | ||
534 | < | the_ff->calcRcut(); |
534 | > | if (!globals->haveLJrcut()){ |
535 | > | |
536 | > | the_ff->calcRcut(); |
537 | > | |
538 | > | } else { |
539 | > | |
540 | > | the_ff->setRcut( globals->getLJrcut() ); |
541 | > | } |
542 | > | |
543 | the_ff->cleanMe(); | |
544 | } | |
545 | ||
# | Line 1221 | Line 1321 | void SimSetup::calcSysValues(void){ | |
1321 | tot_bonds = 0; | |
1322 | tot_bends = 0; | |
1323 | tot_torsions = 0; | |
1324 | + | tot_rigid = 0; |
1325 | for (i = 0; i < n_components; i++){ | |
1326 | tot_atoms += components_nmol[i] * comp_stamps[i]->getNAtoms(); | |
1327 | tot_bonds += components_nmol[i] * comp_stamps[i]->getNBonds(); | |
1328 | tot_bends += components_nmol[i] * comp_stamps[i]->getNBends(); | |
1329 | tot_torsions += components_nmol[i] * comp_stamps[i]->getNTorsions(); | |
1330 | + | tot_rigid += components_nmol[i] * comp_stamps[i]->getNRigidBodies(); |
1331 | } | |
1332 | < | |
1332 | > | |
1333 | tot_SRI = tot_bonds + tot_bends + tot_torsions; | |
1334 | molMembershipArray = new int[tot_atoms]; | |
1335 | ||
# | Line 1249 | Line 1351 | void SimSetup::mpiMolDivide(void){ | |
1351 | int i, j, k; | |
1352 | int localMol, allMol; | |
1353 | int local_atoms, local_bonds, local_bends, local_torsions, local_SRI; | |
1354 | + | int local_rigid; |
1355 | + | vector<int> globalAtomIndex; |
1356 | + | vector<int> globalMolIndex; |
1357 | ||
1358 | mpiSim = new mpiSimulation(info); | |
1359 | ||
1360 | < | globalIndex = mpiSim->divideLabor(); |
1360 | > | mpiSim->divideLabor(); |
1361 | > | globalAtomIndex = mpiSim->getGlobalAtomIndex(); |
1362 | > | globalMolIndex = mpiSim->getGlobalMolIndex(); |
1363 | ||
1364 | // set up the local variables | |
1365 | ||
# | Line 1265 | Line 1372 | void SimSetup::mpiMolDivide(void){ | |
1372 | local_bonds = 0; | |
1373 | local_bends = 0; | |
1374 | local_torsions = 0; | |
1375 | < | globalAtomIndex = 0; |
1375 | > | local_rigid = 0; |
1376 | > | globalAtomCounter = 0; |
1377 | ||
1270 | – | |
1378 | for (i = 0; i < n_components; i++){ | |
1379 | for (j = 0; j < components_nmol[i]; j++){ | |
1380 | if (mol2proc[allMol] == worldRank){ | |
# | Line 1275 | Line 1382 | void SimSetup::mpiMolDivide(void){ | |
1382 | local_bonds += comp_stamps[i]->getNBonds(); | |
1383 | local_bends += comp_stamps[i]->getNBends(); | |
1384 | local_torsions += comp_stamps[i]->getNTorsions(); | |
1385 | + | local_rigid += comp_stamps[i]->getNRigidBodies(); |
1386 | localMol++; | |
1387 | } | |
1388 | for (k = 0; k < comp_stamps[i]->getNAtoms(); k++){ | |
1389 | < | info[0].molMembershipArray[globalAtomIndex] = allMol; |
1390 | < | globalAtomIndex++; |
1389 | > | info[0].molMembershipArray[globalAtomCounter] = allMol; |
1390 | > | globalAtomCounter++; |
1391 | } | |
1392 | ||
1393 | allMol++; | |
# | Line 1288 | Line 1396 | void SimSetup::mpiMolDivide(void){ | |
1396 | local_SRI = local_bonds + local_bends + local_torsions; | |
1397 | ||
1398 | info[0].n_atoms = mpiSim->getMyNlocal(); | |
1399 | + | |
1400 | ||
1401 | if (local_atoms != info[0].n_atoms){ | |
1402 | sprintf(painCave.errMsg, | |
# | Line 1320 | Line 1429 | void SimSetup::makeSysArrays(void){ | |
1429 | ||
1430 | Atom** the_atoms; | |
1431 | Molecule* the_molecules; | |
1323 | – | Exclude** the_excludes; |
1432 | ||
1325 | – | |
1433 | for (l = 0; l < nInfo; l++){ | |
1434 | // create the atom and short range interaction arrays | |
1435 | ||
# | Line 1348 | Line 1455 | void SimSetup::makeSysArrays(void){ | |
1455 | #else // is_mpi | |
1456 | ||
1457 | molIndex = 0; | |
1458 | < | globalAtomIndex = 0; |
1458 | > | globalAtomCounter = 0; |
1459 | for (i = 0; i < n_components; i++){ | |
1460 | for (j = 0; j < components_nmol[i]; j++){ | |
1461 | the_molecules[molIndex].setStampID(i); | |
1462 | the_molecules[molIndex].setMyIndex(molIndex); | |
1463 | the_molecules[molIndex].setGlobalIndex(molIndex); | |
1464 | for (k = 0; k < comp_stamps[i]->getNAtoms(); k++){ | |
1465 | < | info[l].molMembershipArray[globalAtomIndex] = molIndex; |
1466 | < | globalAtomIndex++; |
1465 | > | info[l].molMembershipArray[globalAtomCounter] = molIndex; |
1466 | > | globalAtomCounter++; |
1467 | } | |
1468 | molIndex++; | |
1469 | } | |
# | Line 1365 | Line 1472 | void SimSetup::makeSysArrays(void){ | |
1472 | ||
1473 | #endif // is_mpi | |
1474 | ||
1475 | < | |
1476 | < | if (info[l].n_SRI){ |
1477 | < | Exclude::createArray(info[l].n_SRI); |
1371 | < | the_excludes = new Exclude * [info[l].n_SRI]; |
1372 | < | for (int ex = 0; ex < info[l].n_SRI; ex++){ |
1373 | < | the_excludes[ex] = new Exclude(ex); |
1374 | < | } |
1375 | < | info[l].globalExcludes = new int; |
1376 | < | info[l].n_exclude = info[l].n_SRI; |
1377 | < | } |
1378 | < | else{ |
1379 | < | Exclude::createArray(1); |
1380 | < | the_excludes = new Exclude * ; |
1381 | < | the_excludes[0] = new Exclude(0); |
1382 | < | the_excludes[0]->setPair(0, 0); |
1383 | < | info[l].globalExcludes = new int; |
1384 | < | info[l].globalExcludes[0] = 0; |
1385 | < | info[l].n_exclude = 0; |
1386 | < | } |
1387 | < | |
1475 | > | info[l].globalExcludes = new int; |
1476 | > | info[l].globalExcludes[0] = 0; |
1477 | > | |
1478 | // set the arrays into the SimInfo object | |
1479 | ||
1480 | info[l].atoms = the_atoms; | |
1481 | info[l].molecules = the_molecules; | |
1482 | info[l].nGlobalExcludes = 0; | |
1393 | – | info[l].excludes = the_excludes; |
1483 | ||
1484 | the_ff->setSimInfo(info); | |
1485 | } | |
# | Line 1682 | Line 1771 | void SimSetup::setupZConstraint(SimInfo& theInfo){ | |
1771 | theInfo.addProperty(zconsFixtime); | |
1772 | } | |
1773 | ||
1774 | + | //set zconsUsingSMD |
1775 | + | IntData* zconsUsingSMD = new IntData(); |
1776 | + | zconsUsingSMD->setID(ZCONSUSINGSMD_ID); |
1777 | ||
1778 | + | if (globals->haveZConsUsingSMD()){ |
1779 | + | zconsUsingSMD->setData(globals->getZconsUsingSMD()); |
1780 | + | theInfo.addProperty(zconsUsingSMD); |
1781 | + | } |
1782 | + | |
1783 | //Determine the name of ouput file and add it into SimInfo's property list | |
1784 | //Be careful, do not use inFileName, since it is a pointer which | |
1785 | //point to a string at master node, and slave nodes do not contain that string | |
# | Line 1712 | Line 1809 | void SimSetup::setupZConstraint(SimInfo& theInfo){ | |
1809 | tempParaItem.zPos = zconStamp[i]->getZpos(); | |
1810 | tempParaItem.zconsIndex = zconStamp[i]->getMolIndex(); | |
1811 | tempParaItem.kRatio = zconStamp[i]->getKratio(); | |
1812 | < | |
1812 | > | tempParaItem.havingCantVel = zconStamp[i]->haveCantVel(); |
1813 | > | tempParaItem.cantVel = zconStamp[i]->getCantVel(); |
1814 | zconsParaData->addItem(tempParaItem); | |
1815 | } | |
1816 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |