4
1
mirror of https://github.com/pfloos/quack synced 2024-06-18 11:15:30 +02:00

option file for integrals

This commit is contained in:
Pierre-Francois Loos 2019-03-13 10:42:43 +01:00
parent 9f4819bd25
commit 2c5e48aa1a
2 changed files with 19 additions and 25 deletions

View File

@ -1,4 +1,4 @@
subroutine Compute2eInt(debug,iType,nShell, &
subroutine Compute2eInt(debug,chemist_notation,iType,nShell, &
ExpS,KG,DG,ExpG, &
CenterShell,TotAngMomShell,KShell,DShell,ExpShell, &
np2eInt,nSigp2eInt,nc2eInt,nSigc2eInt)
@ -12,6 +12,7 @@ subroutine Compute2eInt(debug,iType,nShell, &
! Input variables
logical,intent(in) :: debug
logical,intent(in) :: chemist_notation
integer,intent(in) :: iType,nShell
double precision,intent(in) :: ExpS
integer,intent(in) :: KG
@ -22,7 +23,6 @@ subroutine Compute2eInt(debug,iType,nShell, &
! Local variables
logical :: chemist_notation
integer :: KBra(2),KKet(2)
double precision :: CenterBra(2,3),CenterKet(2,3)
integer :: TotAngMomBra(2),TotAngMomKet(2)
@ -47,8 +47,6 @@ subroutine Compute2eInt(debug,iType,nShell, &
integer,intent(out) :: np2eInt,nSigp2eInt,nc2eInt,nSigc2eInt
chemist_notation = .true.
np2eInt = 0
nSigp2eInt = 0

View File

@ -4,8 +4,20 @@ program IntPak
include 'parameters.h'
logical :: debug
logical :: doOv,doKin,doNuc,doERI,doF12,doYuk,doErf
logical :: do3eInt(n3eInt),do4eInt(n4eInt)
logical :: chemist_notation
logical :: doOv
logical :: doKin
logical :: doNuc
logical :: doERI
logical :: doF12
logical :: doYuk
logical :: doErf
logical :: do3eInt(n3eInt)
logical :: do4eInt(n4eInt)
integer :: NAtoms,NBasis,iType
double precision :: ExpS
integer :: KG
@ -38,28 +50,12 @@ program IntPak
write(*,*) '********************************'
write(*,*)
! Debugger on?
! Read options for integral calculations
debug = .false.
! debug = .true.
call read_options(debug,chemist_notation,doOv,doKin,doNuc,doERI,doF12,doYuk,doErf,do3eInt,do4eInt)
! Which integrals do you want?
doOv = .true.
doKin = .true.
doNuc = .true.
doERI = .true.
doF12 = .false.
doYuk = .false.
doErf = .false.
do3eInt(1) = .false.
do3eInt(2) = .false.
do3eInt(3) = .false.
do4eInt(1) = .false.
do4eInt(2) = .false.
do4eInt(3) = .false.
!------------------------------------------------------------------------
! Read input information
@ -183,7 +179,7 @@ program IntPak
ExpG = (/ 0d0 /)
call cpu_time(start_2eInt(iType))
call Compute2eInt(debug,iType,nShell, &
call Compute2eInt(debug,chemist_notation,iType,nShell, &
ExpS,KG,DG,ExpG, &
CenterShell,TotAngMomShell,KShell,DShell,ExpShell, &
np2eInt(iType),nSigp2eInt(iType),nc2eInt(iType),nSigc2eInt(iType))