2014-07-29 14:23:33 +02:00
|
|
|
BEGIN_SHELL [ /usr/bin/python ]
|
|
|
|
from ezfio_with_default import EZFIO_Provider
|
|
|
|
T = EZFIO_Provider()
|
|
|
|
T.set_type ( "double precision" )
|
|
|
|
T.set_name ( "thresh_SCF" )
|
|
|
|
T.set_doc ( "Threshold on the convergence of the Hartree Fock energy" )
|
|
|
|
T.set_ezfio_dir ( "Hartree_Fock" )
|
|
|
|
T.set_ezfio_name( "thresh_SCF" )
|
|
|
|
T.set_output ( "output_Hartree_Fock" )
|
|
|
|
print T
|
2014-04-23 22:10:36 +02:00
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
T = EZFIO_Provider()
|
|
|
|
T.set_type ( "integer" )
|
|
|
|
T.set_name ( "n_it_scf_max" )
|
|
|
|
T.set_doc ( "Maximum number of SCF iterations" )
|
|
|
|
T.set_ezfio_dir ( "Hartree_Fock" )
|
|
|
|
T.set_ezfio_name( "n_it_scf_max" )
|
|
|
|
T.set_output ( "output_Hartree_Fock" )
|
|
|
|
print T
|
2014-04-23 22:10:36 +02:00
|
|
|
|
2015-03-20 11:21:26 +01:00
|
|
|
T = EZFIO_Provider()
|
|
|
|
T.set_type ( "character*(32)" )
|
|
|
|
T.set_name ( "mo_guess_type" )
|
|
|
|
T.set_doc ( "Initial MO guess. Can be [ Huckel | HCore ]" )
|
|
|
|
T.set_ezfio_dir ( "Hartree_Fock" )
|
|
|
|
T.set_ezfio_name( "guess" )
|
|
|
|
T.set_output ( "output_Hartree_Fock" )
|
|
|
|
print T
|
|
|
|
|
2014-04-23 22:10:36 +02:00
|
|
|
|
2014-07-29 14:23:33 +02:00
|
|
|
END_SHELL
|
2014-04-23 22:10:36 +02:00
|
|
|
|
|
|
|
|
2014-04-24 12:31:15 +02:00
|
|
|
|
|
|
|
|