1
0
mirror of https://github.com/TREX-CoE/irpjast.git synced 2024-07-03 09:56:11 +02:00
irpjast/jastrow_provider.irp.f

16 lines
265 B
FortranFixed
Raw Normal View History

2020-11-26 16:12:33 +01:00
BEGIN_PROVIDER [ double precision, jastrow_full ]
implicit none
BEGIN_DOC
! Complete jastrow factor
END_DOC
2020-12-08 13:08:23 +01:00
integer :: i, j
2020-12-04 01:05:07 +01:00
2020-11-26 16:12:33 +01:00
print *, factor_ee
print *, factor_en
print *, factor_een
2020-12-08 18:56:36 +01:00
2020-11-26 16:12:33 +01:00
jastrow_full = dexp(factor_ee + factor_en + factor_een)
END_PROVIDER