10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-18 19:25:35 +02:00
QuantumPackage/src/tc_bi_ortho/print_tc_spin_dens.irp.f

27 lines
521 B
Fortran
Raw Normal View History

2023-07-02 21:49:25 +02:00
! ---
2023-02-24 21:38:09 +01:00
program test_spin_dens
2023-07-02 21:49:25 +02:00
2023-02-24 21:38:09 +01:00
BEGIN_DOC
2023-07-02 21:49:25 +02:00
! TODO : Reads psi_det in the EZFIO folder and prints out the left- and right-eigenvectors together with the energy. Saves the left-right wave functions at the end.
2023-02-24 21:38:09 +01:00
END_DOC
2023-07-02 21:49:25 +02:00
implicit none
2023-02-24 21:38:09 +01:00
print *, 'Hello world'
2023-07-02 21:49:25 +02:00
2023-02-24 21:38:09 +01:00
my_grid_becke = .True.
2023-07-02 21:49:25 +02:00
PROVIDE tc_grid1_a tc_grid1_r
my_n_pt_r_grid = tc_grid1_r
my_n_pt_a_grid = tc_grid1_a
touch my_grid_becke my_n_pt_r_grid my_n_pt_a_grid
2023-02-24 21:38:09 +01:00
read_wf = .True.
touch read_wf
2023-07-02 21:49:25 +02:00
call tc_print_mulliken_sd()
!call test
2023-02-24 21:38:09 +01:00
end