10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-22 13:12:23 +02:00
QuantumPackage/plugins/local/tc_progs/print_tc_var.irp.f

25 lines
467 B
Fortran
Raw Permalink Normal View History

2023-05-01 09:15:58 +02:00
program print_tc_var
BEGIN_DOC
! TODO : Put the documentation of the program here
END_DOC
implicit none
2024-05-01 20:25:01 +02:00
print *, ' TC VAR is available only for HF REF WF'
print *, ' DO NOT FORGET TO RUN A CISD CALCULATION BEF'
2023-07-02 21:49:25 +02:00
2023-05-01 09:15:58 +02: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-05-01 09:15:58 +02:00
read_wf = .True.
touch read_wf
2024-05-01 20:25:01 +02:00
call write_tc_gs_var_HF()
2023-05-01 09:15:58 +02:00
end