mirror of
https://gitlab.com/scemama/qp_plugins_scemama.git
synced 2024-11-07 22:53:42 +01:00
9 lines
165 B
FortranFixed
9 lines
165 B
FortranFixed
|
subroutine save_energy(E)
|
||
|
implicit none
|
||
|
BEGIN_DOC
|
||
|
! Saves the energy in |EZFIO|.
|
||
|
END_DOC
|
||
|
double precision, intent(in) :: E
|
||
|
call ezfio_set_cc_energy(E)
|
||
|
end
|