コード例 #1
0
ファイル: PGBF.py プロジェクト: globulion/pyq-mod
 def nuclear(self,other,C):
     "THO eq. 2.17 and 3.1"
     return nuclear_attraction(self.origin,self.norm,
                               self.powers,self.exp,
                               other.origin,other.norm,
                               other.powers,other.exp,
                               C)
コード例 #2
0
ファイル: PGBF.py プロジェクト: certik/pyquante
 def nuclear(self,other,C):
     "THO eq. 2.17 and 3.1"
     return nuclear_attraction(self._origin,self._normalization,
                               self._powers,self._exponent,
                               other._origin,other._normalization,
                               other._powers,other._exponent,
                               C)
コード例 #3
0
 def nuclear(self, other, C):
     "THO eq. 2.17 and 3.1"
     return nuclear_attraction(self.origin, self.norm, self.powers,
                               self.exp, other.origin, other.norm,
                               other.powers, other.exp, C)