コード例 #1
0
 def nuclear_gradient(self, other, C):
     return self.norm*other.norm*\
            array(grad_nuc_att(self.origin,self.powers,self.exp,
                         other.origin,other.powers,other.exp,
                         C))
コード例 #2
0
ファイル: PGBF.py プロジェクト: globulion/pyq-mod
 def nuclear_gradient(self,other,C):
     return self.norm*other.norm*\
            array(grad_nuc_att(self.origin,self.powers,self.exp,
                         other.origin,other.powers,other.exp,
                         C))
コード例 #3
0
ファイル: PGBF.py プロジェクト: certik/pyquante
 def nuclear_gradient(self,other,C):
     return self._normalization*other._normalization*\
            array(grad_nuc_att(self._origin,self._powers,self._exponent,
                         other._origin,other._powers,other._exponent,
                         C))