示例#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)