• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revisãoddbda32381cd2578098756bc1e32141e85c985a3 (tree)
Hora2011-11-09 23:38:06
AutorMikiya Fujii <mikiya.fujii@gmai...>
CommiterMikiya Fujii

Mensagem de Log

Some private method in Atom.h is renamed.

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

Mudança Sumário

Diff

--- a/src/base/atoms/Atom.h
+++ b/src/base/atoms/Atom.h
@@ -206,12 +206,12 @@ private:
206206 string errorMessageGetNddoHspBadTheory;
207207 string errorMessageGetNddoHppBadTheory;
208208 int GetEffectivePrincipalQuantumNumber(ShellType shellType); // Table 1.4 in J. A. Pople book
209- double GetJss(); // Part of Eq. (13) in [BZ_1979]
210- double GetJsp(); // Part of Eq. (13) in [BZ_1979]
211- double GetJsd(); // Part of Eq. (13) in [BZ_1979]
212- double GetJpp(); // Part of Eq. (13) in [BZ_1979]
213- double GetJpd(); // Part of Eq. (13) in [BZ_1979]
214- double GetJdd(); // Part of Eq. (13) in [BZ_1979]
209+ double GetZindoJss(); // Part of Eq. (13) in [BZ_1979]
210+ double GetZindoJsp(); // Part of Eq. (13) in [BZ_1979]
211+ double GetZindoJsd(); // Part of Eq. (13) in [BZ_1979]
212+ double GetZindoJpp(); // Part of Eq. (13) in [BZ_1979]
213+ double GetZindoJpd(); // Part of Eq. (13) in [BZ_1979]
214+ double GetZindoJdd(); // Part of Eq. (13) in [BZ_1979]
215215 double GetCndo2CoreIntegral(OrbitalType orbital, double gamma, bool isGuess);
216216 double GetIndoCoreIntegral(OrbitalType orbital, double gamma, bool isGuess);
217217 double GetZindoCoreIntegral(OrbitalType orbital); // Eq. (13) in [BZ_1979]
@@ -535,35 +535,35 @@ double Atom::GetOrbitalExponent(ShellType shellType, OrbitalType orbitalType, Th
535535
536536
537537 // Part of Eq. (13) in [BZ_1979]
538-double Atom::GetJss(){
538+double Atom::GetZindoJss(){
539539 return this->zindoF0ss;
540540 }
541541
542542 // Part of Eq. (13) in [BZ_1979]
543-double Atom::GetJsp(){
543+double Atom::GetZindoJsp(){
544544 // F0ss = F0sp
545545 return this->zindoF0ss - this->zindoG1sp/6.0;
546546 }
547547
548548 // Part of Eq. (13) in [BZ_1979]
549-double Atom::GetJsd(){
549+double Atom::GetZindoJsd(){
550550 return this->zindoF0sd - this->zindoG2sd/10.0;
551551 }
552552
553553 // Part of Eq. (13) in [BZ_1979]
554-double Atom::GetJpp(){
554+double Atom::GetZindoJpp(){
555555 // F0pp = F0ss
556556 return this->zindoF0ss - 2.0*this->zindoF2pp/25.0;
557557 }
558558
559559 // Part of Eq. (13) in [BZ_1979]
560-double Atom::GetJpd(){
560+double Atom::GetZindoJpd(){
561561 // F0pd = F0sd
562562 return this->zindoF0sd - this->zindoG1pd/15.0 - 3.0*this->zindoG3pd/70.0;
563563 }
564564
565565 // Part of Eq. (13) in [BZ_1979]
566-double Atom::GetJdd(){
566+double Atom::GetZindoJdd(){
567567 return this->zindoF0dd - 2.0*(this->zindoF2dd + this->zindoF4dd)/63.0;
568568 }
569569
@@ -632,21 +632,21 @@ double Atom::GetZindoCoreIntegral(OrbitalType orbital){
632632
633633 if(orbital == s){
634634 value = -1.0*this->zindoIonPotS
635- - this->GetJss()*(double)(this->zindoL-1)
636- - this->GetJsp()*(double)this->zindoM
637- - this->GetJsd()*(double)this->zindoN;
635+ - this->GetZindoJss()*(double)(this->zindoL-1)
636+ - this->GetZindoJsp()*(double)this->zindoM
637+ - this->GetZindoJsd()*(double)this->zindoN;
638638 }
639639 else if(orbital == px || orbital == py || orbital == pz){
640640 value = -1.0*this->zindoIonPotP
641- - this->GetJpp()*(double)(this->zindoM-1)
642- - this->GetJsp()*(double)this->zindoL
643- - this->GetJpd()*(double)this->zindoN;
641+ - this->GetZindoJpp()*(double)(this->zindoM-1)
642+ - this->GetZindoJsp()*(double)this->zindoL
643+ - this->GetZindoJpd()*(double)this->zindoN;
644644 }
645645 else if(orbital == dxy || orbital == dyz || orbital == dzz || orbital == dzx || orbital == dxxyy ){
646646 value = -1.0*this->zindoIonPotD
647- - this->GetJdd()*(double)(this->zindoN-1)
648- - this->GetJsd()*(double)this->zindoL
649- - this->GetJpd()*(double)this->zindoM;
647+ - this->GetZindoJdd()*(double)(this->zindoN-1)
648+ - this->GetZindoJsd()*(double)this->zindoL
649+ - this->GetZindoJpd()*(double)this->zindoM;
650650 }
651651 else{
652652 stringstream ss;