1
0
mirror of https://github.com/TREX-CoE/irpjast.git synced 2024-12-22 20:36:08 +01:00

Use flattened array

This commit is contained in:
Panadestein 2020-12-04 13:59:10 +01:00
parent bcef333c60
commit 66db010d0e
6 changed files with 2421 additions and 52 deletions

View File

@ -3,10 +3,12 @@ BEGIN_PROVIDER [double precision, factor_een]
BEGIN_DOC
! Electron-electron nucleus contribution to Jastrow factor
END_DOC
integer :: i, j, alpha, p, k, l, lmax
integer :: i, j, alpha, p, k, l, lmax, cidx
double precision :: x, y, z, t, c_inv, u, a, b, a2, b2, c, t0
PROVIDE cord_vect
factor_een = 0.0d0
cidx = 0
do alpha = 1, nnuc
do j = 1, nelec
@ -44,7 +46,12 @@ BEGIN_PROVIDER [double precision, factor_een]
endif
do l = iand(p - k, 1), lmax, 2
! factor_een = factor_een + cord_vect(l, k, p, alpha) * (y + z) * t
factor_een = factor_een + cord_vect(l + k + p + alpha) * (y + z) * t
! cidx = l + (ncord + 1) * k + (ncord + 1) * (ncord + 1) * p + &
! (ncord + 1) * (ncord + 1) * ncord * alpha
! here I try to use the flattened version of the array
cidx = l + 6 * k + 6 * 6 * p + 6 * 6 * 5 * alpha
print *, cidx
factor_een = factor_een + cord_vect(cidx) * (y + z) * t
t = t * c_inv
y = y * a2
z = z * b2

BIN
jastrow

Binary file not shown.

View File

@ -3,6 +3,18 @@ BEGIN_PROVIDER [ double precision, jastrow_full ]
BEGIN_DOC
! Complete jastrow factor
END_DOC
! integer :: i, j, k, l
! do l = 1, nnuc
! do k = 1, ncord
! do j = 0, ncord
! do i = 0, ncord
! write(*, *) cord_vect_0(i, j, k, l)
! end do
! end do
! end do
! end do
print *, factor_ee
print *, factor_en

View File

@ -74,13 +74,13 @@ END_PROVIDER
! FREE seed
! END_PROVIDER
!
! BEGIN_PROVIDER [double precision, cord_vect, (0:ncord,0:ncord,ncord,nnuc)]
! implicit none
! BEGIN_DOC
! ! Vector of the `c' coefficients
! END_DOC
! PROVIDE seed
! call random_number(cord_vect)
! cord_vect = cord_vect*.1d-4
! FREE seed
! END_PROVIDER
BEGIN_PROVIDER [double precision, cord_vect_0, (0:ncord,0:ncord,ncord,nnuc)]
implicit none
BEGIN_DOC
! Vector of the `c' coefficients
END_DOC
PROVIDE seed
call random_number(cord_vect_0)
cord_vect_0 = cord_vect_0 * .1d-4
FREE seed
END_PROVIDER

File diff suppressed because it is too large Load Diff

1800
tt Normal file

File diff suppressed because it is too large Load Diff