# | Line 62 | Line 62 | SimInfo::SimInfo(){ | |
---|---|---|
62 | useReactionField = 0; | |
63 | useGB = 0; | |
64 | useEAM = 0; | |
65 | < | |
65 | > | useSolidThermInt = 0; |
66 | > | useLiquidThermInt = 0; |
67 | > | |
68 | haveCutoffGroups = false; | |
69 | ||
70 | excludes = Exclude::Instance(); | |
# | Line 444 | Line 446 | void SimInfo::refreshSim(){ | |
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 | |
# | Line 591 | Line 593 | void getFortranGroupArray(SimInfo* info, vector<double | |
593 | myMols = info->molecules; | |
594 | numMol = info->n_mol; | |
595 | for(int i = 0; i < numMol; i++){ | |
594 | – | numAtom = myMols[i].getNAtoms(); |
595 | – | myAtoms = myMols[i].getMyAtoms(); |
596 | – | |
597 | – | |
598 | – | for(int j = 0; j < numAtom; j++){ |
599 | – | |
600 | – | |
601 | – | #ifdef IS_MPI |
602 | – | atomIndex = myAtoms[j]->getGlobalIndex(); |
603 | – | #else |
604 | – | atomIndex = myAtoms[j]->getIndex(); |
605 | – | #endif |
606 | – | |
607 | – | if(myMols[i].belongToCutoffGroup(atomIndex)) |
608 | – | continue; |
609 | – | else{ |
610 | – | // this is a fraction of the cutoff group's mass, not the mass itself! |
611 | – | mfact.push_back(1.0); |
612 | – | groupList.push_back(myAtoms[j]->getIndex() + 1); |
613 | – | groupStart.push_back(curIndex++); |
614 | – | } |
615 | – | } |
616 | – | |
596 | numCutoffGroups = myMols[i].getNCutoffGroups(); | |
597 | for(myCutoffGroup =myMols[i].beginCutoffGroup(iterCutoff); myCutoffGroup != NULL; | |
598 | myCutoffGroup =myMols[i].nextCutoffGroup(iterCutoff)){ | |
# | Line 623 | Line 602 | void getFortranGroupArray(SimInfo* info, vector<double | |
602 | for(cutoffAtom = myCutoffGroup->beginAtom(iterAtom); cutoffAtom != NULL; | |
603 | cutoffAtom = myCutoffGroup->nextAtom(iterAtom)){ | |
604 | mfact.push_back(cutoffAtom->getMass()/totalMass); | |
605 | + | #ifdef IS_MPI |
606 | + | groupList.push_back(cutoffAtom->getGlobalIndex() + 1); |
607 | + | #else |
608 | groupList.push_back(cutoffAtom->getIndex() + 1); | |
609 | + | #endif |
610 | } | |
611 | ||
612 | groupStart.push_back(curIndex); | |
# | Line 632 | Line 615 | void getFortranGroupArray(SimInfo* info, vector<double | |
615 | }//end for(myCutoffGroup =myMols[i].beginCutoffGroup(iterCutoff)) | |
616 | ||
617 | }//end for(int i = 0; i < numMol; i++) | |
618 | < | |
618 | > | |
619 | > | |
620 | > | //The last cutoff group need more element to indicate the end of the cutoff |
621 | ngroup = groupStart.size(); | |
622 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |