57 |
|
#include "primitives/Bend.hpp" |
58 |
|
namespace oopse { |
59 |
|
|
60 |
+ |
/* |
61 |
|
struct BendOrderStruct { |
62 |
|
Bend* bend; |
63 |
|
BendDataSet dataSet; |
74 |
|
bool TorsionSortFunctor(const TorsionOrderStruct& t1, const TorsionOrderStruct& t2) { |
75 |
|
return t1.dataSet.deltaV < t2.dataSet.deltaV; |
76 |
|
} |
77 |
< |
|
77 |
> |
*/ |
78 |
|
void ForceManager::calcForces(bool needPotential, bool needStress) { |
79 |
|
|
80 |
|
if (!info_->isFortranInitialized()) { |
89 |
|
|
90 |
|
postCalculation(); |
91 |
|
|
92 |
+ |
/* |
93 |
|
std::vector<BendOrderStruct> bendOrderStruct; |
94 |
|
for(std::map<Bend*, BendDataSet>::iterator i = bendDataSets.begin(); i != bendDataSets.end(); ++i) { |
95 |
|
BendOrderStruct tmp; |
108 |
|
|
109 |
|
std::sort(bendOrderStruct.begin(), bendOrderStruct.end(), std::ptr_fun(BendSortFunctor)); |
110 |
|
std::sort(torsionOrderStruct.begin(), torsionOrderStruct.end(), std::ptr_fun(TorsionSortFunctor)); |
109 |
– |
std::cout << "bend" << std::endl; |
111 |
|
for (std::vector<BendOrderStruct>::iterator k = bendOrderStruct.begin(); k != bendOrderStruct.end(); ++k) { |
112 |
|
Bend* bend = k->bend; |
113 |
< |
std::cout << "atom1=" <<bend->getAtomA()->getGlobalIndex() << ",atom2 = "<< bend->getAtomB()->getGlobalIndex() << ",atom3="<<bend->getAtomC()->getGlobalIndex() << " "; |
113 |
> |
std::cout << "Bend: atom1=" <<bend->getAtomA()->getGlobalIndex() << ",atom2 = "<< bend->getAtomB()->getGlobalIndex() << ",atom3="<<bend->getAtomC()->getGlobalIndex() << " "; |
114 |
|
std::cout << "deltaV=" << k->dataSet.deltaV << ",p_theta=" << k->dataSet.prev.angle <<",p_pot=" << k->dataSet.prev.potential<< ",c_theta=" << k->dataSet.curr.angle << ", c_pot = " << k->dataSet.curr.potential <<std::endl; |
115 |
|
} |
115 |
– |
std::cout << "torsio" << std::endl; |
116 |
|
for (std::vector<TorsionOrderStruct>::iterator l = torsionOrderStruct.begin(); l != torsionOrderStruct.end(); ++l) { |
117 |
|
Torsion* torsion = l->torsion; |
118 |
< |
std::cout << "atom1=" <<torsion->getAtomA()->getGlobalIndex() << ",atom2 = "<< torsion->getAtomB()->getGlobalIndex() << ",atom3="<<torsion->getAtomC()->getGlobalIndex() << ",atom4="<<torsion->getAtomD()->getGlobalIndex()<< " "; |
118 |
> |
std::cout << "Torsion: atom1=" <<torsion->getAtomA()->getGlobalIndex() << ",atom2 = "<< torsion->getAtomB()->getGlobalIndex() << ",atom3="<<torsion->getAtomC()->getGlobalIndex() << ",atom4="<<torsion->getAtomD()->getGlobalIndex()<< " "; |
119 |
|
std::cout << "deltaV=" << l->dataSet.deltaV << ",p_theta=" << l->dataSet.prev.angle <<",p_pot=" << l->dataSet.prev.potential<< ",c_theta=" << l->dataSet.curr.angle << ", c_pot = " << l->dataSet.curr.potential <<std::endl; |
120 |
|
} |
121 |
< |
|
121 |
> |
*/ |
122 |
|
} |
123 |
|
|
124 |
|
void ForceManager::preCalculation() { |
155 |
|
Molecule::BondIterator bondIter;; |
156 |
|
Molecule::BendIterator bendIter; |
157 |
|
Molecule::TorsionIterator torsionIter; |
158 |
< |
double bondPotential = 0.0; |
159 |
< |
double bendPotential = 0.0; |
160 |
< |
double torsionPotential = 0.0; |
158 |
> |
RealType bondPotential = 0.0; |
159 |
> |
RealType bendPotential = 0.0; |
160 |
> |
RealType torsionPotential = 0.0; |
161 |
|
|
162 |
|
//calculate short range interactions |
163 |
|
for (mol = info_->beginMolecule(mi); mol != NULL; mol = info_->nextMolecule(mi)) { |
172 |
|
bondPotential += bond->getPotential(); |
173 |
|
} |
174 |
|
|
175 |
< |
//int i =0; |
175 |
> |
|
176 |
|
for (bend = mol->beginBend(bendIter); bend != NULL; bend = mol->nextBend(bendIter)) { |
177 |
< |
//std::cout << i++ << "\t"; |
178 |
< |
double angle; |
177 |
> |
|
178 |
> |
RealType angle; |
179 |
|
bend->calcForce(angle); |
180 |
< |
double currBendPot = bend->getPotential(); |
180 |
> |
RealType currBendPot = bend->getPotential(); |
181 |
|
bendPotential += bend->getPotential(); |
182 |
|
std::map<Bend*, BendDataSet>::iterator i = bendDataSets.find(bend); |
183 |
|
if (i == bendDataSets.end()) { |
196 |
|
} |
197 |
|
|
198 |
|
for (torsion = mol->beginTorsion(torsionIter); torsion != NULL; torsion = mol->nextTorsion(torsionIter)) { |
199 |
< |
double angle; |
199 |
> |
RealType angle; |
200 |
|
torsion->calcForce(angle); |
201 |
< |
double currTorsionPot = torsion->getPotential(); |
201 |
> |
RealType currTorsionPot = torsion->getPotential(); |
202 |
|
torsionPotential += torsion->getPotential(); |
203 |
|
std::map<Torsion*, TorsionDataSet>::iterator i = torsionDataSets.find(torsion); |
204 |
|
if (i == torsionDataSets.end()) { |
218 |
|
|
219 |
|
} |
220 |
|
|
221 |
< |
double shortRangePotential = bondPotential + bendPotential + torsionPotential; |
221 |
> |
RealType shortRangePotential = bondPotential + bendPotential + torsionPotential; |
222 |
|
Snapshot* curSnapshot = info_->getSnapshotManager()->getCurrentSnapshot(); |
223 |
|
curSnapshot->statData[Stats::SHORT_RANGE_POTENTIAL] = shortRangePotential; |
224 |
|
curSnapshot->statData[Stats::BOND_POTENTIAL] = bondPotential; |
230 |
|
void ForceManager::calcLongRangeInteraction(bool needPotential, bool needStress) { |
231 |
|
Snapshot* curSnapshot; |
232 |
|
DataStorage* config; |
233 |
< |
double* frc; |
234 |
< |
double* pos; |
235 |
< |
double* trq; |
236 |
< |
double* A; |
237 |
< |
double* electroFrame; |
238 |
< |
double* rc; |
233 |
> |
RealType* frc; |
234 |
> |
RealType* pos; |
235 |
> |
RealType* trq; |
236 |
> |
RealType* A; |
237 |
> |
RealType* electroFrame; |
238 |
> |
RealType* rc; |
239 |
|
|
240 |
|
//get current snapshot from SimInfo |
241 |
|
curSnapshot = info_->getSnapshotManager()->getCurrentSnapshot(); |
272 |
|
} |
273 |
|
|
274 |
|
//initialize data before passing to fortran |
275 |
< |
double longRangePotential[LR_POT_TYPES]; |
276 |
< |
double lrPot = 0.0; |
275 |
> |
RealType longRangePotential[LR_POT_TYPES]; |
276 |
> |
RealType lrPot = 0.0; |
277 |
|
|
278 |
|
Mat3x3d tau; |
279 |
|
short int passedCalcPot = needPotential; |