9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-30 00:14:17 +02:00
qp2/scripts/functionals/do_not_touch_func/e_xc_new_func.irp.f

15 lines
443 B
FortranFixed
Raw Normal View History

2019-02-04 16:13:42 +01:00
BEGIN_PROVIDER[double precision, energy_x_new_functional, (N_states) ]
&BEGIN_PROVIDER[double precision, energy_c_new_functional, (N_states) ]
implicit none
BEGIN_DOC
! energy_x_new_functional = define here your functional
! energy_c_new_functional = define here your functional
END_DOC
energy_x_new_functional = 0.d0 ! replace by your new provider
energy_c_new_functional = 0.d0 ! replace by your new provider
END_PROVIDER