Esempio n. 1
0
File: hf.py Progetto: 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]
Esempio n. 2
0
File: hf.py Progetto: 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]
Esempio n. 3
0
File: rohf.py Progetto: 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)
Esempio 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)