10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-04 10:25:58 +02:00
quantum_package/plugins/dress_zmq/dressing_vector.irp.f

26 lines
594 B
Fortran
Raw Normal View History

2018-02-20 15:51:53 +01:00
BEGIN_PROVIDER [ double precision, dressing_column_h, (N_det,N_states) ]
&BEGIN_PROVIDER [ double precision, dressing_column_s, (N_det,N_states) ]
implicit none
BEGIN_DOC
2018-03-23 13:37:03 +01:00
! \Delta_{state-specific}. \Psi
END_DOC
2018-03-05 17:04:26 +01:00
integer :: i,ii,k,j, l
double precision :: f, tmp
double precision, external :: u_dot_v
2018-05-14 13:00:04 +02:00
logical, external :: detEq
2018-03-05 17:04:26 +01:00
dressing_column_h(:,:) = 0.d0
dressing_column_s(:,:) = 0.d0
do k=1,N_states
2018-03-05 17:04:26 +01:00
do j = 1, n_det
2018-03-23 13:37:03 +01:00
dressing_column_h(j,k) = delta_ij(k,j,1)
2018-05-14 13:00:04 +02:00
dressing_column_s(j,k) = delta_ij(k,j,2)
! print *, j, delta_ij(k,j,:)
enddo
enddo
END_PROVIDER