35 |
|
* |
36 |
|
* [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005). |
37 |
|
* [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006). |
38 |
< |
* [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008). |
38 |
> |
* [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 234107 (2008). |
39 |
|
* [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010). |
40 |
|
* [5] Vardeman, Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011). |
41 |
|
*/ |
51 |
|
FluctuatingChargeNVT::FluctuatingChargeNVT(SimInfo* info) : |
52 |
|
FluctuatingChargePropagator(info), chiTolerance_ (1e-6), |
53 |
|
maxIterNum_(4), thermo(info), |
54 |
< |
currentSnapshot_(info->getSnapshotManager()->getCurrentSnapshot()) { |
54 |
> |
snap(info->getSnapshotManager()->getCurrentSnapshot()) { |
55 |
|
} |
56 |
|
|
57 |
|
void FluctuatingChargeNVT::initialize() { |
68 |
|
} |
69 |
|
|
70 |
|
if (!info_->getSimParams()->getUseIntialExtendedSystemState()) { |
71 |
< |
currentSnapshot_->setChiElectronic(0.0); |
72 |
< |
currentSnapshot_->setIntegralOfChiElectronicDt(0.0); |
71 |
> |
snap->setElectronicThermostat(make_pair(0.0, 0.0)); |
72 |
|
} |
73 |
|
|
74 |
|
if (!fqParams_->haveTargetTemp()) { |
108 |
|
Atom* atom; |
109 |
|
RealType cvel, cpos, cfrc, cmass; |
110 |
|
|
111 |
< |
RealType chi = currentSnapshot_->getChiElectronic(); |
112 |
< |
RealType integralOfChidt = currentSnapshot_->getIntegralOfChiElectronicDt(); |
111 |
> |
pair<RealType, RealType> thermostat = snap->getElectronicThermostat(); |
112 |
> |
RealType chi = thermostat.first; |
113 |
> |
RealType integralOfChidt = thermostat.second; |
114 |
|
RealType instTemp = thermo.getElectronicTemperature(); |
115 |
|
|
116 |
|
for (mol = info_->beginMolecule(i); mol != NULL; |
123 |
|
cfrc = atom->getFlucQFrc(); |
124 |
|
cmass = atom->getChargeMass(); |
125 |
|
|
126 |
+ |
cerr << cpos << "\t" << cvel << "\t" << cfrc << "\t" << instTemp << "\t" <<chi << "\t" << integralOfChidt << "\n"; |
127 |
|
// velocity half step |
128 |
|
cvel += dt2_ * cfrc / cmass - dt2_*chi*cvel; |
129 |
|
// position whole step |
138 |
|
(tauThermostat_ * tauThermostat_); |
139 |
|
|
140 |
|
integralOfChidt += chi * dt2_; |
141 |
< |
currentSnapshot_->setChiElectronic(chi); |
141 |
< |
currentSnapshot_->setIntegralOfChiElectronicDt(integralOfChidt); |
142 |
< |
|
141 |
> |
snap->setElectronicThermostat(make_pair(chi, integralOfChidt)); |
142 |
|
} |
143 |
|
|
144 |
|
void FluctuatingChargeNVT::updateSizes() { |
152 |
|
Molecule* mol; |
153 |
|
Atom* atom; |
154 |
|
RealType instTemp; |
155 |
< |
RealType chi = currentSnapshot_->getChiElectronic(); |
155 |
> |
pair<RealType, RealType> thermostat = snap->getElectronicThermostat(); |
156 |
> |
RealType chi = thermostat.first; |
157 |
|
RealType oldChi = chi; |
158 |
|
RealType prevChi; |
159 |
< |
RealType integralOfChidt = currentSnapshot_->getIntegralOfChiElectronicDt(); |
159 |
> |
RealType integralOfChidt = thermostat.second; |
160 |
|
int index; |
161 |
|
RealType cfrc, cvel, cmass; |
162 |
|
|
200 |
|
break; |
201 |
|
} |
202 |
|
integralOfChidt += dt2_ * chi; |
203 |
< |
currentSnapshot_->setChiElectronic(chi); |
204 |
< |
currentSnapshot_->setIntegralOfChiElectronicDt(integralOfChidt); |
203 |
> |
snap->setElectronicThermostat(make_pair(chi, integralOfChidt)); |
204 |
|
} |
205 |
|
|
206 |
|
void FluctuatingChargeNVT::resetPropagator() { |
207 |
|
if (!hasFlucQ_) return; |
208 |
< |
currentSnapshot_->setChiElectronic(0.0); |
210 |
< |
currentSnapshot_->setIntegralOfChiElectronicDt(0.0); |
208 |
> |
snap->setElectronicThermostat(make_pair(0.0, 0.0)); |
209 |
|
} |
210 |
|
|
211 |
|
RealType FluctuatingChargeNVT::calcConservedQuantity() { |
212 |
|
if (!hasFlucQ_) return 0.0; |
213 |
< |
RealType chi = currentSnapshot_->getChiElectronic(); |
214 |
< |
RealType integralOfChidt = currentSnapshot_->getIntegralOfChiElectronicDt(); |
213 |
> |
pair<RealType, RealType> thermostat = snap->getElectronicThermostat(); |
214 |
> |
RealType chi = thermostat.first; |
215 |
> |
RealType integralOfChidt = thermostat.second; |
216 |
|
RealType fkBT = info_->getNFluctuatingCharges() * |
217 |
|
PhysicalConstants::kB *targetTemp_; |
218 |
|
|