mirror of
https://github.com/pfloos/quack
synced 2025-01-03 18:16:03 +01:00
clean up format
This commit is contained in:
parent
9d2a6eee0b
commit
0f9846b4f2
@ -125,16 +125,16 @@ program QuAcK
|
||||
doACFDT,exchange_kernel,doXBS, &
|
||||
dophBSE,dophBSE2,doppBSE,dBSE,dTDA)
|
||||
|
||||
!---------------------------------------------------!
|
||||
!-----------------------------------------------!
|
||||
! Read input information !
|
||||
!---------------------------------------------------!
|
||||
!-----------------------------------------------!
|
||||
! nC = number of core orbitals !
|
||||
! nO = number of occupied orbitals !
|
||||
! nV = number of virtual orbitals (see below) !
|
||||
! nR = number of Rydberg orbitals !
|
||||
! nBas = number of basis functions in AOs !
|
||||
! nOrb = number of basis functions in MOs !
|
||||
!---------------------------------------------------!
|
||||
! nBas = number of basis functions !
|
||||
! nOrb = number of orbitals !
|
||||
!-----------------------------------------------!
|
||||
|
||||
call read_molecule(nNuc,nO,nC,nR)
|
||||
allocate(ZNuc(nNuc),rNuc(nNuc,ncart))
|
||||
|
@ -1,4 +1,4 @@
|
||||
subroutine read_basis_pyscf(nBas_AOs, nO, nV)
|
||||
subroutine read_basis_pyscf(nBas,nO,nV)
|
||||
|
||||
! Read basis set information from PySCF
|
||||
|
||||
@ -14,23 +14,23 @@ subroutine read_basis_pyscf(nBas_AOs, nO, nV)
|
||||
! Output variables
|
||||
|
||||
integer,intent(out) :: nV(nspin)
|
||||
integer,intent(out) :: nBas_AOs
|
||||
integer,intent(out) :: nBas
|
||||
|
||||
!------------------------------------------------------------------------
|
||||
! Primary basis set information
|
||||
!------------------------------------------------------------------------
|
||||
|
||||
open(unit=3,file='int/nBas.dat')
|
||||
read(3, *) nBas_AOs
|
||||
read(3, *) nBas
|
||||
close(unit=3)
|
||||
|
||||
! write(*,'(A38)') '--------------------------------------'
|
||||
! write(*,'(A38,1X,I16)') 'Number of basis functions (AOs)', nBas_AOs
|
||||
! write(*,'(A38,1X,I16)') 'Number of basis functions (AOs)', nBas
|
||||
! write(*,'(A38)') '--------------------------------------'
|
||||
! write(*,*)
|
||||
|
||||
! Number of virtual orbitals
|
||||
|
||||
nV(:) = nBas_AOs - nO(:)
|
||||
nV(:) = nBas - nO(:)
|
||||
|
||||
end subroutine
|
||||
|
Loading…
Reference in New Issue
Block a user