OUTER_SCF
parameters controlling the outer SCF loop [Edit on GitHub]
Subsections
Keywords
Keyword descriptions
- SECTION_PARAMETERS: logical = F 
- Lone keyword: - T- Usage: &OUTER_SCF ON - controls the activation of the outer SCF loop [Edit on GitHub] 
- BISECT_TRUST_COUNT: integer = 10 
- Usage: BISECT_TRUST_COUNT 5 - Maximum number of times the same point will be used in bisection, a small number guards against the effect of wrongly converged states. [Edit on GitHub] 
- DIIS_BUFFER_LENGTH: integer = 3 
- Usage: DIIS_BUFFER_LENGTH 5 - Maximum number of DIIS vectors used [Edit on GitHub] 
- EPS_SCF: real = 1.00000000E-005 
- Usage: EPS_SCF 1.0E-6 - Mentions: ⭐Constrained DFT - The target gradient of the outer SCF variables. Notice that the EPS_SCF of the inner loop also determines the value that can be reached in the outer loop, typically EPS_SCF of the outer loop must be smaller than or equal to EPS_SCF of the inner loop. [Edit on GitHub] 
- EXTRAPOLATION_ORDER: integer = 3 
- Usage: EXTRAPOLATION_ORDER 5 - Number of past states used in the extrapolation of the variables during e.g. MD [Edit on GitHub] 
- MAX_SCF: integer = 50 
- Usage: MAX_SCF 20 - The maximum number of outer loops [Edit on GitHub] 
- OPTIMIZER: enum = NONE 
- Usage: OPTIMIZER SD - Valid values: - SDTakes steps in the direction of the gradient, multiplied by step_size
- DIISUses a Direct Inversion in the Iterative Subspace method
- NONEDo nothing, useful only with the none type
- BISECTBisection of the gradient, useful for difficult one dimensional cases
- BROYDENBroyden’s method. Variant defined in BROYDEN_TYPE.
- NEWTONNewton’s method. Only compatible with CDFT constraints.
- SECANTSecant method. Only for one dimensional cases. See Broyden for multidimensional cases.
- NEWTON_LSNewton’s method with backtracking line search to find the optimal step size. Only compatible with CDFT constraints. Starts from the regular Newton solution and successively reduces the step size until the L2 norm of the CDFT gradient decreases or MAX_LS steps is reached. Potentially very expensive because each iteration performs a full SCF calculation.
 - Mentions: ⭐Constrained DFT - Method used to bring the outer loop to a stationary point [Edit on GitHub] 
- STEP_SIZE: real = 5.00000000E-001 
- Usage: STEP_SIZE -1.0 - The initial step_size used in the optimizer (currently steepest descent). Note that in cases where a sadle point is sought for (constrained DFT), this can be negative. For Newton and Broyden optimizers, use a value less/higher than the default 1.0 (in absolute value, the sign is not significant) to active an under/overrelaxed optimizer. [Edit on GitHub] 
- TYPE: enum = NONE 
- Usage: TYPE DDAPC_CONSTRAINT - Valid values: - DDAPC_CONSTRAINTEnforce a constraint on the DDAPC, requires the corresponding section
- S2_CONSTRAINTEnforce a constraint on the S2, requires the corresponding section
- BASIS_CENTER_OPTOptimize positions of basis functions, if atom types FLOATING_BASIS_CENTER are defined
- CDFT_CONSTRAINTEnforce a constraint on a generic CDFT weight population. Requires the corresponding section QS&CDFT which determines the type of weight used.
- NONEDo nothing in the outer loop, useful for resetting the inner loop,
 - Specifies which kind of outer SCF should be employed [Edit on GitHub]