Keyword index¶
Every SCF and job option keyword in vibe-qc, with its default value. These
options live on the per-method option objects (RHFOptions, RKSOptions,
UHFOptions, UKSOptions, and their periodic counterparts
PeriodicRHFOptions and PeriodicKSOptions), which you pass to a run via
rhf_options=, rks_options=, ks_options=, and so on. The defaults below
are the values a freshly constructed options object carries; this page is
the flat lookup, and each section links the topic page with the physics.
Convergence and tolerances¶
Keyword |
Default |
Meaning |
|---|---|---|
|
|
Maximum SCF iterations. |
|
|
SCF energy-change convergence threshold (Hartree). |
|
|
Orbital-gradient (DIIS-error) convergence threshold. |
See scf_convergence.
SCF acceleration and damping¶
Keyword |
Default |
Meaning |
|---|---|---|
|
|
Extrapolation scheme; one of |
|
|
Enable DIIS extrapolation. |
|
|
Iteration at which DIIS begins. |
|
|
Number of stored DIIS vectors. |
|
|
DIIS-error at which EDIIS hands over to plain DIIS. |
|
|
Static density/Fock damping fraction. |
|
|
Adjust the damping factor automatically. |
|
|
Bounds for dynamic damping. |
|
|
CRYSTAL-style static Fock mixing (FMIXING). |
|
|
Virtual-orbital level shift (Hartree). |
See scf_convergence.
Second-order and Newton methods¶
Each is off (0.0) by default and turns on when the DIIS error drops below
the given threshold.
Keyword |
Default |
Meaning |
|---|---|---|
|
|
Switch to full-Hessian Newton below this DIIS error. |
|
|
Switch to second-order SCF (SOSCF). |
|
|
Switch to trust-region augmented-Hessian (TRAH). |
|
|
Iteration at which to trigger the quadratic fallback. |
Initial guess¶
Keyword |
Default |
Meaning |
|---|---|---|
|
|
Starting density; one of |
|
|
File ( |
See initial_guess.
Fock-build strategy¶
Keyword |
Default |
Meaning |
|---|---|---|
|
|
|
|
|
Basis size above which |
|
|
Use RI / density fitting for the Coulomb (J) build. |
|
|
Use chain-of-spheres (RIJCOSX) for the exchange (K) build. |
|
|
Schwarz integral-screening threshold. |
|
|
Build the Fock matrix incrementally between iterations. |
See scf_modes and density_fitting.
Basis, auxiliary, and ECP¶
Keyword |
Default |
Meaning |
|---|---|---|
|
|
Auxiliary (fitting) basis label; empty selects automatically. |
|
|
Effective-core-potential library name. |
|
|
Per-center ECP assignments. |
|
|
Overlap-eigenvalue cutoff for linear-dependence filtering. |
See basis_sets, ecp, linear_dependence.
DFT (RKS / UKS)¶
Keyword |
Default |
Meaning |
|---|---|---|
|
|
XC functional: a libxc name or a weighted-sum specification. |
|
(medium grid) |
XC quadrature grid; a |
See functionals.
XC grid (GridOptions)¶
Keyword |
Default |
Meaning |
|---|---|---|
|
|
Atomic partitioning scheme. |
|
|
Angular quadrature; |
|
|
Radial quadrature points. |
|
|
Product-grid angular points. |
|
|
Lebedev order (used when |
|
|
Becke partition smoothing order. |
Open-shell (UHF / UKS, and periodic)¶
Keyword |
Default |
Meaning |
|---|---|---|
|
|
Per-atom broken-symmetry spin seed (the ATOMSPIN analogue). |
|
|
Broken-symmetry hold mode for the spin pattern. |
|
|
Iterations to hold the spin pattern. |
|
|
The locked spin value. |
Periodic (PeriodicRHFOptions / PeriodicKSOptions)¶
The periodic option objects share all the SCF keywords above (note the
periodic scf_accelerator default is DIIS), and add:
Keyword |
Default |
Meaning |
|---|---|---|
|
|
Coulomb route: |
|
|
Fermi-Dirac smearing temperature (Hartree); |
|
|
Cycles over which to apply a warm-up level shift ( |
|
|
Use the periodic Becke partition for the XC grid. |
|
|
Image radius for the periodic Becke partition. |
|
( |
Real-space cutoffs for the lattice sums ( |
See periodic_methods, smearing, multi_k_scf.
Enumerations¶
The values each option enum accepts (the default is marked):
InitialGuess:AUTO(default),HCORE,SAD,SAP,PATOM,HUECKEL,MINAO,READ.SCFAccelerator:DIIS,EDIIS,EDIIS_DIIS(molecular default),ADIIS,KDIIS.SCFMode:AUTO(default),CONVENTIONAL,DIRECT.PeriodicJKMethod:AUTO(default),GDF,AICCM2026DEV_B,BIPOLE,GPW,GAPW,RSGDF,RIJCOSX,FFT_POISSON,CFMM,DIRECT.CoulombMethod:EWALD_3D,DIRECT_TRUNCATED,NEUTRALIZED_1D,SLAB_EWALD_2D.SpinlockMode:OFF(default), and the broken-symmetry hold modes.
See also¶
scf_convergence, scf_modes, initial_guess, smearing: the physics behind the convergence and Fock-build keywords.
output_files: the
run_job/run_periodic_jobentry points that consume these options.