mirror of
https://gitlab.com/scemama/qp_plugins_scemama.git
synced 2024-11-09 07:33:41 +01:00
Compare commits
2 Commits
46aadac71c
...
568252c506
Author | SHA1 | Date | |
---|---|---|---|
568252c506 | |||
b7fcc7f9c3 |
@ -155,11 +155,20 @@ program export_trexio
|
|||||||
rc = trexio_write_ao_shell(f, ao_shell)
|
rc = trexio_write_ao_shell(f, ao_shell)
|
||||||
call check_success(rc)
|
call check_success(rc)
|
||||||
|
|
||||||
integer :: i
|
integer :: i, pow0(3), powA(3), j, k, l, nz
|
||||||
|
double precision :: normA, norm0, C_A(3), overlap_x, overlap_z, overlap_y, c
|
||||||
|
nz=100
|
||||||
|
|
||||||
|
C_A(1) = 0.d0
|
||||||
|
C_A(2) = 0.d0
|
||||||
|
C_A(3) = 0.d0
|
||||||
|
|
||||||
allocate(factor(ao_num))
|
allocate(factor(ao_num))
|
||||||
|
print *, ao_first_of_shell
|
||||||
if (ao_normalized) then
|
if (ao_normalized) then
|
||||||
do i=1,ao_num
|
do i=1,ao_num
|
||||||
factor(i) = ao_coef_normalization_factor(i) / shell_normalization_factor( ao_shell(i) )
|
l = ao_first_of_shell(ao_shell(i))
|
||||||
|
factor(i) = (ao_coef_normalized(i,1)+tiny(1.d0))/(ao_coef_normalized(l,1)+tiny(1.d0))
|
||||||
enddo
|
enddo
|
||||||
else
|
else
|
||||||
factor(:) = 1.d0
|
factor(:) = 1.d0
|
||||||
|
Loading…
Reference in New Issue
Block a user