예제 #1
0
 def __init__(self, nlfunc, weight, coefficients):
     Contribution.__init__(self, nlfunc, weight)
     self.coefficients = coefficients
     self.vt_sg = None
     self.vt_sG = None
     self.nt_sG = None
     self.D_asp = None
     self.Dresp_asp = None
예제 #2
0
 def __init__(self, nlfunc, weight, functional='GGA_X_B88', width=None, eps=0.05, damp=1e-10):
     Contribution.__init__(self, nlfunc, weight)
     self.functional = functional
     self.old_coeffs = None
     self.iter = 0
     self.damp = damp
     if width is not None:
         width = width / 27.21
     self.eps = eps / 27.21
     self.width = width
예제 #3
0
 def __init__(self, nlfunc, weight, functional='GGA_X_B88', width=None,
              eps=0.05, damp=1e-10):
     Contribution.__init__(self, nlfunc, weight)
     self.functional = functional
     self.old_coeffs = None
     self.iter = 0
     self.damp = damp
     if width is not None:
         width = width / 27.21
     self.eps = eps / 27.21
     self.width = width
예제 #4
0
 def __init__(self, nlfunc, weight, coefficients):
     Contribution.__init__(self, nlfunc, weight)
     d('In c_Response __init__', self)
     self.coefficients = coefficients
     self.vt_sg = None
     self.vt_sG = None
     self.nt_sG = None
     self.D_asp = None
     self.Dresp_asp = None
     self.Drespdist_asp = None
     self.just_read = False
     self.damp = 1e-10
 def __init__(self, nlfunc, weight, coefficients):
     Contribution.__init__(self, nlfunc, weight)
     d("In c_Response __init__", self)
     self.coefficients = coefficients
     self.vt_sg = None
     self.vt_sG = None
     self.nt_sG = None
     self.D_asp = None
     self.Dresp_asp = None
     self.Drespdist_asp = None
     self.just_read = False
     self.damp = 1e-10
예제 #6
0
 def __init__(self, nlfunc, weight, functional='GGA_X_B88', metallic=False):
     Contribution.__init__(self, nlfunc, weight)
     self.functional = functional
     self.old_coeffs = None
     self.iter = 0
     self.metallic = metallic
예제 #7
0
 def __init__(self, nlfunc, weight, functional = 'LDA'):
     Contribution.__init__(self, nlfunc, weight)
     self.functional = functional
예제 #8
0
 def __init__(self, nlfunc, weight, coefficients):
     Contribution.__init__(self, nlfunc, weight)
     self.coefficients = coefficients
예제 #9
0
 def __init__(self, nlfunc, weight, functional='LDA'):
     Contribution.__init__(self, nlfunc, weight)
     self.functional = functional
예제 #10
0
파일: c_response.py 프로젝트: qsnake/gpaw
 def __init__(self, nlfunc, weight, coefficients):
     Contribution.__init__(self, nlfunc, weight)
     self.coefficients = coefficients
예제 #11
0
 def __init__(self, nlfunc, weight, functional='GGA_X_B88'):
     Contribution.__init__(self, nlfunc, weight)
     self.functional = functional
     self.old_coeffs = None
     self.iter = 0