42 |
|
thermalTime = 0.0; |
43 |
|
currentTime = 0.0; |
44 |
|
rCut = 0.0; |
45 |
< |
ecr = 0.0; |
46 |
< |
est = 0.0; |
45 |
> |
rSw = 0.0; |
46 |
|
|
47 |
|
haveRcut = 0; |
48 |
< |
haveEcr = 0; |
48 |
> |
haveRsw = 0; |
49 |
|
boxIsInit = 0; |
50 |
|
|
51 |
|
resetTime = 1e99; |
62 |
|
useReactionField = 0; |
63 |
|
useGB = 0; |
64 |
|
useEAM = 0; |
65 |
< |
useMolecularCutoffs = 0; |
65 |
> |
useSolidThermInt = 0; |
66 |
> |
useLiquidThermInt = 0; |
67 |
> |
|
68 |
> |
haveCutoffGroups = false; |
69 |
|
|
70 |
|
excludes = Exclude::Instance(); |
71 |
|
|
446 |
|
excl = excludes->getFortranArray(); |
447 |
|
|
448 |
|
#ifdef IS_MPI |
449 |
< |
n_global = mpiSim->getTotAtoms(); |
449 |
> |
n_global = mpiSim->getNAtomsGlobal(); |
450 |
|
#else |
451 |
|
n_global = n_atoms; |
452 |
|
#endif |
453 |
< |
|
453 |
> |
|
454 |
|
isError = 0; |
455 |
< |
|
456 |
< |
getFortranGroupArray(this, mfact, ngroup, groupList, groupStart); |
457 |
< |
|
458 |
< |
setFsimulation( &fInfo, &n_global, &n_atoms, identArray, &n_exclude, excl, |
459 |
< |
&nGlobalExcludes, globalExcludes, molMembershipArray, |
460 |
< |
&mfact[0], &ngroup, &groupList[0], &groupStart[0], &isError ); |
461 |
< |
|
462 |
< |
if( isError ){ |
463 |
< |
|
455 |
> |
|
456 |
> |
getFortranGroupArrays(this, FglobalGroupMembership, mfact); |
457 |
> |
//it may not be a good idea to pass the address of first element in vector |
458 |
> |
//since c++ standard does not require vector to be stored continuously in meomory |
459 |
> |
//Most of the compilers will organize the memory of vector continuously |
460 |
> |
setFsimulation( &fInfo, &n_global, &n_atoms, identArray, &n_exclude, excl, |
461 |
> |
&nGlobalExcludes, globalExcludes, molMembershipArray, |
462 |
> |
&mfact[0], &ngroup, &FglobalGroupMembership[0], &isError); |
463 |
> |
|
464 |
> |
if( isError ){ |
465 |
> |
|
466 |
|
sprintf( painCave.errMsg, |
467 |
< |
"There was an error setting the simulation information in fortran.\n" ); |
467 |
> |
"There was an error setting the simulation information in fortran.\n" ); |
468 |
|
painCave.isFatal = 1; |
469 |
|
simError(); |
470 |
|
} |
471 |
< |
|
471 |
> |
|
472 |
|
#ifdef IS_MPI |
473 |
|
sprintf( checkPointMsg, |
474 |
|
"succesfully sent the simulation information to fortran.\n"); |
475 |
|
MPIcheckPoint(); |
476 |
|
#endif // is_mpi |
477 |
< |
|
477 |
> |
|
478 |
|
this->ndf = this->getNDF(); |
479 |
|
this->ndfRaw = this->getNDFraw(); |
480 |
|
this->ndfTrans = this->getNDFtranslational(); |
481 |
|
} |
482 |
|
|
483 |
|
void SimInfo::setDefaultRcut( double theRcut ){ |
484 |
< |
|
484 |
> |
|
485 |
|
haveRcut = 1; |
486 |
|
rCut = theRcut; |
487 |
< |
|
488 |
< |
( rCut > ecr )? rList = rCut + 1.0: rList = ecr + 1.0; |
489 |
< |
|
486 |
< |
notifyFortranCutOffs( &rCut, &rList, &ecr, &est ); |
487 |
> |
rList = rCut + 1.0; |
488 |
> |
|
489 |
> |
notifyFortranCutOffs( &rCut, &rSw, &rList ); |
490 |
|
} |
491 |
|
|
492 |
< |
void SimInfo::setDefaultEcr( double theEcr ){ |
492 |
> |
void SimInfo::setDefaultRcut( double theRcut, double theRsw ){ |
493 |
|
|
494 |
< |
haveEcr = 1; |
495 |
< |
ecr = theEcr; |
493 |
< |
|
494 |
< |
( rCut > ecr )? rList = rCut + 1.0: rList = ecr + 1.0; |
495 |
< |
|
496 |
< |
notifyFortranCutOffs( &rCut, &rList, &ecr, &est ); |
494 |
> |
rSw = theRsw; |
495 |
> |
setDefaultRcut( theRcut ); |
496 |
|
} |
497 |
|
|
499 |
– |
void SimInfo::setDefaultEcr( double theEcr, double theEst ){ |
498 |
|
|
501 |
– |
est = theEst; |
502 |
– |
setDefaultEcr( theEcr ); |
503 |
– |
} |
504 |
– |
|
505 |
– |
|
499 |
|
void SimInfo::checkCutOffs( void ){ |
500 |
|
|
501 |
|
if( boxIsInit ){ |
504 |
|
|
505 |
|
if( rCut > maxCutoff ){ |
506 |
|
sprintf( painCave.errMsg, |
507 |
< |
"LJrcut is too large for the current periodic box.\n" |
508 |
< |
"\tCurrent Value of LJrcut = %G at time %G\n " |
507 |
> |
"cutoffRadius is too large for the current periodic box.\n" |
508 |
> |
"\tCurrent Value of cutoffRadius = %G at time %G\n " |
509 |
|
"\tThis is larger than half of at least one of the\n" |
510 |
|
"\tperiodic box vectors. Right now, the Box matrix is:\n" |
511 |
|
"\n" |
518 |
|
Hmat[2][0], Hmat[2][1], Hmat[2][2]); |
519 |
|
painCave.isFatal = 1; |
520 |
|
simError(); |
521 |
< |
} |
529 |
< |
|
530 |
< |
if( haveEcr ){ |
531 |
< |
if( ecr > maxCutoff ){ |
532 |
< |
sprintf( painCave.errMsg, |
533 |
< |
"electrostaticCutoffRadius is too large for the current\n" |
534 |
< |
"\tperiodic box.\n\n" |
535 |
< |
"\tCurrent Value of ECR = %G at time %G\n " |
536 |
< |
"\tThis is larger than half of at least one of the\n" |
537 |
< |
"\tperiodic box vectors. Right now, the Box matrix is:\n" |
538 |
< |
"\n" |
539 |
< |
"\t[ %G %G %G ]\n" |
540 |
< |
"\t[ %G %G %G ]\n" |
541 |
< |
"\t[ %G %G %G ]\n", |
542 |
< |
ecr, currentTime, |
543 |
< |
Hmat[0][0], Hmat[0][1], Hmat[0][2], |
544 |
< |
Hmat[1][0], Hmat[1][1], Hmat[1][2], |
545 |
< |
Hmat[2][0], Hmat[2][1], Hmat[2][2]); |
546 |
< |
painCave.isFatal = 1; |
547 |
< |
simError(); |
548 |
< |
} |
549 |
< |
} |
521 |
> |
} |
522 |
|
} else { |
523 |
|
// initialize this stuff before using it, OK? |
524 |
|
sprintf( painCave.errMsg, |
567 |
|
} |
568 |
|
|
569 |
|
|
570 |
< |
void getFortranGroupArray(SimInfo* info, vector<double>& mfact, int& ngroup, |
571 |
< |
vector<int>& groupList, vector<int>& groupStart){ |
572 |
< |
Molecule* mol; |
570 |
> |
void SimInfo::getFortranGroupArrays(SimInfo* info, |
571 |
> |
vector<int>& FglobalGroupMembership, |
572 |
> |
vector<double>& mfact){ |
573 |
> |
|
574 |
> |
Molecule* myMols; |
575 |
> |
Atom** myAtoms; |
576 |
|
int numAtom; |
577 |
< |
int curIndex; |
578 |
< |
|
577 |
> |
double mtot; |
578 |
> |
int numMol; |
579 |
> |
int numCutoffGroups; |
580 |
> |
CutoffGroup* myCutoffGroup; |
581 |
> |
vector<CutoffGroup*>::iterator iterCutoff; |
582 |
> |
Atom* cutoffAtom; |
583 |
> |
vector<Atom*>::iterator iterAtom; |
584 |
> |
int atomIndex; |
585 |
> |
double totalMass; |
586 |
> |
|
587 |
|
mfact.clear(); |
588 |
< |
groupList.clear(); |
589 |
< |
groupStart.clear(); |
588 |
> |
FglobalGroupMembership.clear(); |
589 |
> |
|
590 |
|
|
591 |
< |
//Be careful, fortran array begin at 1 |
609 |
< |
curIndex = 1; |
610 |
< |
|
611 |
< |
if(info->useMolecularCutoffs){ |
612 |
< |
//if using molecular cutoff |
613 |
< |
ngroup = info->n_mol; |
614 |
< |
|
615 |
< |
for(int i = 0; i < ngroup; i ++){ |
616 |
< |
mol = &(info->molecules[i]); |
617 |
< |
numAtom = mol->getNAtoms(); |
618 |
< |
|
619 |
< |
for(int j=0; j < numAtom; j++){ |
591 |
> |
// Fix the silly fortran indexing problem |
592 |
|
#ifdef IS_MPI |
593 |
< |
groupList.push_back((info->atoms[i])->getGlobalIndex() + 1); |
593 |
> |
numAtom = mpiSim->getNAtomsGlobal(); |
594 |
|
#else |
595 |
< |
groupList.push_back((info->atoms[i])->getIndex() + 1); |
595 |
> |
numAtom = n_atoms; |
596 |
|
#endif |
597 |
< |
}//for(int j=0; j < numAtom; j++) |
598 |
< |
|
599 |
< |
groupStart.push_back(curIndex); |
600 |
< |
curIndex += numAtom; |
597 |
> |
for (int i = 0; i < numAtom; i++) |
598 |
> |
FglobalGroupMembership.push_back(globalGroupMembership[i] + 1); |
599 |
> |
|
600 |
> |
myMols = info->molecules; |
601 |
> |
numMol = info->n_mol; |
602 |
> |
for(int i = 0; i < numMol; i++){ |
603 |
> |
numCutoffGroups = myMols[i].getNCutoffGroups(); |
604 |
> |
for(myCutoffGroup =myMols[i].beginCutoffGroup(iterCutoff); |
605 |
> |
myCutoffGroup != NULL; |
606 |
> |
myCutoffGroup =myMols[i].nextCutoffGroup(iterCutoff)){ |
607 |
> |
|
608 |
> |
totalMass = myCutoffGroup->getMass(); |
609 |
|
|
610 |
< |
}//end for(int i =0 ; i < ngroup; i++) |
610 |
> |
for(cutoffAtom = myCutoffGroup->beginAtom(iterAtom); |
611 |
> |
cutoffAtom != NULL; |
612 |
> |
cutoffAtom = myCutoffGroup->nextAtom(iterAtom)){ |
613 |
> |
mfact.push_back(cutoffAtom->getMass()/totalMass); |
614 |
> |
} |
615 |
> |
} |
616 |
|
} |
632 |
– |
else{ |
633 |
– |
//using atomic cutoff, every single atom is just a group |
634 |
– |
ngroup = info->n_atoms; |
635 |
– |
for(int i =0 ; i < ngroup; i++){ |
636 |
– |
groupStart.push_back(curIndex++); |
617 |
|
|
638 |
– |
#ifdef IS_MPI |
639 |
– |
groupList.push_back((info->atoms[i])->getGlobalIndex() + 1); |
640 |
– |
#else |
641 |
– |
groupList.push_back((info->atoms[i])->getIndex() + 1); |
642 |
– |
#endif |
643 |
– |
|
644 |
– |
}//end for(int i =0 ; i < ngroup; i++) |
645 |
– |
|
646 |
– |
}//end if (info->useMolecularCutoffs) |
647 |
– |
|
618 |
|
} |