9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-10-06 16:15:57 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
9717223a4d Fixed beta_rs 2019-06-17 09:44:01 +02:00
5cb411d364 Add energy components 2019-06-17 09:39:05 +02:00
2 changed files with 2 additions and 1 deletions

View File

@ -95,6 +95,6 @@ end
double precision function beta_rs(rs) double precision function beta_rs(rs)
implicit none implicit none
double precision, intent(in) ::rs double precision, intent(in) ::rs
beta_rs(rs) = 0.066725d0 * (1.d0 + 0.1d0 * rs)/(1.d0 + 0.1778d0 * rs) beta_rs = 0.066725d0 * (1.d0 + 0.1d0 * rs)/(1.d0 + 0.1778d0 * rs)
end end

View File

@ -24,6 +24,7 @@ subroutine routine
implicit none implicit none
integer :: i,k integer :: i,k
integer :: degree integer :: degree
call print_energy_components
do i = 1, N_det do i = 1, N_det
print *, 'Determinant ', i print *, 'Determinant ', i
call debug_det(psi_det(1,1,i),N_int) call debug_det(psi_det(1,1,i),N_int)