Ejemplo n.º 1
0
Archivo: hf.py Proyecto: pedersor/pyscf
def init_guess_by_chkfile(cell, chkfile_name, project=None, kpt=None):
    '''Read the HF results from checkpoint file, then project it to the
    basis defined by ``cell``

    Returns:
        Density matrix, (nao,nao) ndarray
    '''
    from pyscf.pbc.scf import uhf
    dm = uhf.init_guess_by_chkfile(cell, chkfile_name, project, kpt)
    return dm[0] + dm[1]
Ejemplo n.º 2
0
Archivo: hf.py Proyecto: sunqm/pyscf
def init_guess_by_chkfile(cell, chkfile_name, project=None, kpt=None):
    '''Read the HF results from checkpoint file, then project it to the
    basis defined by ``cell``

    Returns:
        Density matrix, (nao,nao) ndarray
    '''
    from pyscf.pbc.scf import uhf
    dm = uhf.init_guess_by_chkfile(cell, chkfile_name, project, kpt)
    return dm[0] + dm[1]
Ejemplo n.º 3
0
Archivo: rohf.py Proyecto: pyscf/pyscf
 def init_guess_by_chkfile(self, chk=None, project=True, kpt=None):
     if chk is None: chk = self.chkfile
     if kpt is None: kpt = self.kpt
     return pbcuhf.init_guess_by_chkfile(self.cell, chk, project, kpt)
Ejemplo n.º 4
0
 def init_guess_by_chkfile(self, chk=None, project=True, kpt=None):
     if chk is None: chk = self.chkfile
     if kpt is None: kpt = self.kpt
     return pbcuhf.init_guess_by_chkfile(self.cell, chk, project, kpt)