mirror of
https://github.com/pfloos/quack
synced 2024-11-03 20:53:53 +01:00
AO <-> MO modifs
This commit is contained in:
parent
94cc75309e
commit
39d58d9eb5
35
src/AOtoMO/MOtoAO_transform_GHF.f90
Normal file
35
src/AOtoMO/MOtoAO_transform_GHF.f90
Normal file
@ -0,0 +1,35 @@
|
||||
subroutine MOtoAO_transform_GHF(nBas2,nBas,S,Ca,Cb,B,A)
|
||||
|
||||
! Perform MO to AO transformation of a matrix A for a given metric S
|
||||
! and coefficients c
|
||||
|
||||
implicit none
|
||||
|
||||
! Input variables
|
||||
|
||||
integer,intent(in) :: nBas2
|
||||
integer,intent(in) :: nBas
|
||||
double precision,intent(in) :: S(nBas,nBas)
|
||||
double precision,intent(in) :: Ca(nBas,nBas2)
|
||||
double precision,intent(in) :: Cb(nBas,nBas2)
|
||||
double precision,intent(in) :: B(nBas2,nBas2)
|
||||
|
||||
! Local variables
|
||||
|
||||
double precision,allocatable :: Sc(:,:)
|
||||
|
||||
! Output variables
|
||||
|
||||
double precision,intent(inout):: A(nBas,nBas)
|
||||
|
||||
! Memory allocation
|
||||
|
||||
allocate(Sc(nBas,nBas2))
|
||||
|
||||
Sc = matmul(S,Ca)
|
||||
A = matmul(Sc,matmul(B,transpose(Sc)))
|
||||
|
||||
Sc = matmul(S,Cb)
|
||||
A = A + matmul(Sc,matmul(B,transpose(Sc)))
|
||||
|
||||
end subroutine
|
Loading…
Reference in New Issue
Block a user