• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révision8c6e17922fb382e7ebce3b7c538f13d82af63df2 (tree)
l'heure2014-01-08 17:51:20
AuteurKatsuhiko Nishimra <ktns.87@gmai...>
CommiterKatsuhiko Nishimra

Message de Log

Swap DoDamp and DoDIIS #32869

DoDamp skews DIIS error vectors

git-svn-id: https://svn.sourceforge.jp/svnroot/molds/trunk@1623 1136aad2-a195-0410-b898-f5ea1d11b9d8

Change Summary

Modification

--- a/src/cndo/Cndo2.cpp
+++ b/src/cndo/Cndo2.cpp
@@ -610,11 +610,6 @@ void Cndo2::DoSCF(bool requiresGuess){
610610 }
611611 else{
612612 if(!isGuess){
613- this->DoDamp(rmsDensity,
614- hasAppliedDamping,
615- this->orbitalElectronPopulation,
616- oldOrbitalElectronPopulation,
617- *this->molecule);
618613 this->DoDIIS(this->orbitalElectronPopulation,
619614 oldOrbitalElectronPopulation,
620615 diisStoredDensityMatrix,
@@ -627,6 +622,11 @@ void Cndo2::DoSCF(bool requiresGuess){
627622 Parameters::GetInstance()->GetDiisNumErrorVectSCF(),
628623 *this->molecule,
629624 iterationStep);
625+ this->DoDamp(rmsDensity,
626+ hasAppliedDamping,
627+ this->orbitalElectronPopulation,
628+ oldOrbitalElectronPopulation,
629+ *this->molecule);
630630 }
631631 }
632632