howto:cdft
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
howto:cdft [2018/11/01 08:45] – [Using the CDFT module] nholmber | howto:cdft [2024/01/03 13:20] (current) – oschuett | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Constrained DFT ====== | + | This page has been moved to: https://manual.cp2k.org/trunk/methods/dft/ |
- | + | ||
- | This tutorial demonstrates how to perform constrained DFT (CDFT) simulations with CP2K. No previous experience with CDFT simulations is required to complete this tutorial. However, a good understanding of running DFT simulations with CP2K/QS is recommended before proceeding. | + | |
- | + | ||
- | This tutorial is divided as follows. First, a brief overview of the underlying theory behind CDFT will be presented. Typical applications where CDFT simulations have been used will also be highlighted. The CDFT implementation in CP2K will then be described in detail in the next section with the aid of realistic example calculations. The last part of this tutorial covers how to calculate properties involving multiple CDFT states. | + | |
- | + | ||
- | <note important> | + | |
- | + | ||
- | CP2K version 5.1 or higher is needed to perform CDFT simulations. | + | |
- | + | ||
- | </ | + | |
- | + | ||
- | ---- | + | |
- | ===== CDFT in summary ===== | + | |
- | + | ||
- | CDFT is a tool for constructing charge and/or spin localized states. Such localized states are needed in a number of applications. These include for example the following | + | |
- | * studying charge transfer phenomena and calculating electronic couplings (e.g. using the Marcus theory approach) | + | |
- | * correcting spurious charge delocalization due to self-interaction error | + | |
- | * parametrizing model Hamiltonians (e.g. the Heisenberg spin Hamiltonian) | + | |
- | + | ||
- | A more exhaustive list of potential applications | + | |
- | + | ||
- | The charge and spin localized states are created by enforcing electron and spin density localization within atom centered regions of space. The relevant theory has been derived by Wu and Van Voorhis in a series of key papers: [[doi> | + | |
- | + | ||
- | In this tutorial, only the main results needed | + | |
- | + | ||
- | \begin{equation} | + | |
- | E_\mathrm{CDFT}[\rho, | + | |
- | \end{equation} | + | |
- | + | ||
- | where $\vec\lambda = [\lambda_1, \lambda_2, \cdots]^T$ are the constraint Lagrangian multipliers (" | + | |
- | + | ||
- | \begin{equation} | + | |
- | w^i(\mathbf{r}) = \frac{\sum_{j \in \mathcal{C}}c_jP_j(\mathbf{r})}{\sum_{j \in \mathcal{N}}P_j(\mathbf{r})} | + | |
- | \end{equation} | + | |
- | + | ||
- | where $c_j$ are atomic coefficients which determine how each atom is included in the constraint (more on this later), $P_j$ is the so-called cell function which determines the volume occupied by atom $j$ according to some population analysis method, and $\mathcal{N}$ is the set of all atoms in a system. Currently, only the Becke partitioning scheme is fully supported in CP2K, which will be elaborated in the following section. Different types of constraints can be constructed by modifying the weight function according to the following conventions | + | |
- | * charge density constraint ($\rho^\uparrow + \rho^\downarrow$): $w^\uparrow = w^\downarrow = w$ | + | |
- | * magnetization density constraint ($\rho^\uparrow - \rho^\downarrow$): $w^\uparrow = -w^\downarrow = w$ | + | |
- | * spin specific constraint ($\rho^{\uparrow/\downarrow}$): | + | |
- | + | ||
- | When CDFT is used in a molecular dynamics or a geometry optimization simulation, additional force terms arising from the constraints are calculated | + | |
- | + | ||
- | \begin{equation} | + | |
- | \mathbf{F}_{c, | + | |
- | \end{equation} | + | |
- | + | ||
- | The CDFT energy expression, $E_\mathrm{CDFT}$, | + | |
- | + | ||
- | + | ||
- | {{howto: | + | |
- | **Figure 1.** Schematic of the CDFT SCF procedure. The constraint Lagrangians $\vec\lambda$ are first optimized in the outer CDFT loop, their values are subsequently fixed, and the electron density corresponding to these fixed values is solved like in traditional CP2K DFT simulations. The control is then returned to the outer CDFT loop where convergence of the constraints is checked. This iteration process is repeated until convergence is achieved or until the number of maximum CDFT SCF steps is reached. The structure of the CDFT loop will be further described below. | + | |
- | + | ||
- | By definition, all constraints are satisfied when | + | |
- | + | ||
- | \begin{equation} | + | |
- | \vec c(\vec\lambda) = \left[ \sum_{i = \uparrow, \downarrow} \int w_1^i(\mathbf{r})\rho^i(\mathbf{r})d\mathbf{r} - N_1, \cdots \right]^T = \vec 0 | + | |
- | \end{equation} | + | |
- | + | ||
- | The constraint Lagrangian multipliers $\vec\lambda$ can therefore be optimized by minimizing the constraint error expression $\max |\vec c(\vec\lambda)|$ until the largest element decreases below a threshold $\varepsilon$. Root-finding algorithms are used to optimize $\lambda$. For Newton and quasi-Newton class optimizers, a new guess for $\vec\lambda$ at step $n$ is generated according to the following iteration formula | + | |
- | + | ||
- | \begin{equation} | + | |
- | \vec\lambda_n = \vec\lambda_{n-1} - \alpha \mathbf{J}_n^{-1}\vec c(\vec\lambda_{n-1}) | + | |
- | \end{equation} | + | |
- | + | ||
- | where $\alpha \in (0, 1]$ is the step size and $\mathbf{J}^{-1}$ is the inverse Jacobian matrix. The step size $\alpha$ can be fixed or its value can be optimized with backtracking line search, where the value of $\lambda$ is successively reduced if it decreases the constraint error function. The Jacobian matrix is approximated with finite differences, | + | |
- | + | ||
- | \begin{equation} | + | |
- | \mathbf{J}_{ij} = \frac{\partial \vec c_i(\vec\lambda)}{\partial \lambda_j} \approx \frac{\vec c_i(\vec\lambda+\vec\delta_j)-\vec c_i(\vec\lambda)}{\left|\vec\delta_j\right|} | + | |
- | \end{equation} | + | |
- | + | ||
- | where $\vec\delta_j$ is a small perturbation of the $j$th component of $\vec\lambda$. | + | |
- | + | ||
- | ---- | + | |
- | ===== Using the CDFT module ===== | + | |
- | + | ||
- | The input section [[inp> | + | |
- | + | ||
- | ==== Defining CDFT SCF parameters | + | |
- | + | ||
- | Settings for the CDFT SCF loop are controlled by the input section [[inp> | + | |
- | + | ||
- | <note important> | + | |
- | + | ||
- | < | + | |
- | &QS | + | |
- | ... | + | |
- | & | + | |
- | ... | + | |
- | &END BECKE_CONSTRAINT | + | |
- | ! CDFT loop settings | + | |
- | &CDFT | + | |
- | TYPE_OF_CONSTRAINT BECKE | + | |
- | & | + | |
- | TYPE BECKE_CONSTRAINT | + | |
- | EXTRAPOLATION_ORDER 2 | + | |
- | MAX_SCF 10 | + | |
- | ! Convergence threshold | + | |
- | EPS_SCF 1.0E-3 | + | |
- | ! Optimizer selection: now Newton' | + | |
- | OPTIMIZER NEWTON_LS | + | |
- | ! Optimizer step size | + | |
- | STEP_SIZE -1.0 | + | |
- | ! Note that the section CDFT_OPT exists in CP2K version >= 6.1 | + | |
- | ! Remove section for CP2K version 5.1 (keywords are unchanged) | + | |
- | & | + | |
- | ! Line search settings | + | |
- | MAX_LS 5 | + | |
- | CONTINUE_LS | + | |
- | FACTOR_LS 0.5 | + | |
- | ! Finite difference settings for calculation of Jacobian matrix | + | |
- | JACOBIAN_STEP 1.0E-2 | + | |
- | JACOBIAN_FREQ 1 1 | + | |
- | JACOBIAN_TYPE FD1 | + | |
- | JACOBIAN_RESTART FALSE | + | |
- | &END CDFT_OPT | + | |
- | &END OUTER_SCF | + | |
- | &END CDFT | + | |
- | &END QS | + | |
- | </ | + | |
- | + | ||
- | The structure of this input section is quite straightforward. The keyword [[inp> | + | |
- | + | ||
- | Above, for instance, the Jacobian is explicitly calculated every CDFT SCF iteration and MD step by perturbing each constraint Lagragian using a first order forward difference stencil with a step size of $10^{-2}$. The Newton step size is optimized with backtracking line search using the update formula $\alpha_n = 0.5*\alpha_{n-1}$ for a maximum of 5 steps as long as the CDFT constraint error decreases. | + | |
- | + | ||
- | ==== Defining constraints ===== | + | |
- | + | ||
- | As explained in the previous section, the CDFT module in CP2K currently only supports using a Becke population based constraint, which is controlled through the section [[inp> | + | |
- | + | ||
- | {{ howto: | + | |
- | **Figure 2.** Comparison of the Voronoi (lines) and Becke partitioning (contours) schemes. At left, the Becke partitioning is performed without atomic size information. At right, the size of the red atom is 30 % larger than the black atoms, and the contours of the red atom extend farther than without atomic size adjustments. | + | |
- | + | ||
- | The Voronoi and, by extension, the Becke partitioning | + | |
- | + | ||
- | The algorithmic implementation of the Becke density partitioning method has been detailed [[doi> | + | |
- | + | ||
- | The actual constraints are defined in the section [[inp> | + | |
- | + | ||
- | {{ howto: | + | |
- | **Figure 3.** Using a fragment based Becke constraint. The system is first divided into two fragments with atomic positions fixed in the same configuration as in the full system. The electron and spin densities of the fragment systems are then saved to cube files and subsequently used as input files for the CDFT calculation, | + | |
- | + | ||
- | An example of a Becke constraint input section is given below. This choice of parameters should be reasonable for most systems, ignoring the atomic radii and constraint definitions which are system dependent. Decreasing the partitioning cutoff might be useful for solvated system MD simulations, | + | |
- | + | ||
- | <code cp2k> | + | |
- | &QS | + | |
- | ... | + | |
- | & | + | |
- | ! Take atomic radii into account? | + | |
- | ADJUST_SIZE | + | |
- | ATOMIC_RADII | + | |
- | ! Compute Becke charges? | + | |
- | ATOMIC_CHARGES | + | |
- | ! Constraint strength and target values | + | |
- | ! Give one value per constraint | + | |
- | STRENGTH | + | |
- | TARGET | + | |
- | ! Cutoff scheme | + | |
- | CUTOFF_TYPE | + | |
- | ELEMENT_CUTOFF | + | |
- | ! Perform Becke partitioning only within the space | + | |
- | ! spanned by constraint atom centered spherical Gaussians | + | |
- | ! (reduces cost for solvated systems) | + | |
- | CAVITY_CONFINE | + | |
- | CAVITY_SHAPE | + | |
- | EPS_CAVITY | + | |
- | IN_MEMORY | + | |
- | SHOULD_SKIP | + | |
- | ! Constraint definitions, | + | |
- | & | + | |
- | ATOMS 1 | + | |
- | COEFF 1 | + | |
- | CONSTRAINT_TYPE CHARGE | + | |
- | &END ATOM_GROUP | + | |
- | ! No constraint applied but calculate charges | + | |
- | & | + | |
- | ATOMS 2 | + | |
- | &END DUMMY_ATOMS | + | |
- | ! Print information about CDFT calculation | + | |
- | & | + | |
- | &EACH | + | |
- | QS_SCF 1 | + | |
- | &END EACH | + | |
- | COMMON_ITERATION_LEVELS 2 | + | |
- | ADD_LAST NUMERIC | + | |
- | FILENAME ./${NAME} | + | |
- | &END PROGRAM_RUN_INFO | + | |
- | &END BECKE_CONSTRAINT | + | |
- | &END QS | + | |
- | </ | + | |
- | + | ||
- | ==== Selected examples | + | |
- | === Zn dimer cation === | + | |
- | + | ||
- | In this example, we will perform two CDFT simulations for the Zn dimer cation $\mathrm{Zn}_2^+$. As the distance $R$ between the two atoms is increased, the excess charge in the system should localize onto one of the Zn atoms forming $\mathrm{Zn}^+ + \mathrm{Zn}$. With standard GGA and hybrid functionals, | + | |
- | + | ||
- | You can download the input files from {{: | + | |
- | + | ||
- | * Check the calculated partial charges in the standard DFT output file | + | |
- | * Study the script file to understand how it works | + | |
- | * Study the generated output files from the CDFT simulations | + | |
- | + | ||
- | Assuming the CDFT simulations have finished, the following files were generated | + | |
- | * *.out | + | |
- | * This is the standard CP2K output file and now also contains all the output from the CDFT SCF iterations. Each iteration step starts a new DFT energy optimization using new values of the constraint Lagrangian multipliers $\vec{\lambda}$, | + | |
- | * An example output from the end of one the CDFT simulations is provided below. | + | |
- | * Information about the CDFT SCF iteration process and the constraints and their convergence is printed alongside the usual CP2K SCF iteration information. | + | |
- | * With CDFT optimizers that support backtracking line search, the density optimization process at each CDFT SCF step is restarted from the optimized constraint strength and density obtained previously during line search. Consequently, | + | |
- | * *-LineSearch.out | + | |
- | * The progress of the optimization of the Newton step size $\alpha$ using backtracking line search is reported in this file. Observe that the step size is halved on each iteration if the CDFT constraint error (" | + | |
- | * *.cdftLog | + | |
- | * CDFT parameters (atomic radii, constraint definitions and cutoffs) and Becke partial charges are printed in these files. | + | |
- | * *-JacobianInfo.out | + | |
- | * The output from the calculation of the Jacobian matrix $\mathbf{J}$ is reported in this file. | + | |
- | * *.inverseJacobian | + | |
- | * This is a restart file for the inverse Jacobian matrix. | + | |
- | + | ||
- | Using the above list, study the generated output files to understand how the CDFT SCF loop is integrated with the standard CP2K DFT SCF process. | + | |
- | + | ||
- | < | + | |
- | SCF WAVEFUNCTION OPTIMIZATION | + | |
- | + | ||
- | ----------------------------------- OT --------------------------------------- | + | |
- | Minimizer | + | |
- | in the iterative subspace | + | |
- | | + | |
- | safer DIIS on | + | |
- | Preconditioner : FULL_ALL | + | |
- | Precond_solver : DEFAULT | + | |
- | stepsize | + | |
- | ortho_irac | + | |
- | max_irac | + | |
- | eps_irac_switch: | + | |
- | on_the_fly_loc | + | |
- | ----------------------------------- OT --------------------------------------- | + | |
- | + | ||
- | Step | + | |
- | ------------------------------------------------------------------------------ | + | |
- | qs_ot_get_orbitals_ref | + | |
- | qs_ot_ref_poly | + | |
- | qs_ot_get_orbitals_ref | + | |
- | qs_ot_ref_poly | + | |
- | 1 OT DIIS | + | |
- | + | ||
- | *** SCF run converged in 1 steps *** | + | |
- | + | ||
- | + | ||
- | Electronic density on regular grids: | + | |
- | Core density on regular grids: | + | |
- | Total charge density on r-space grids: | + | |
- | Total charge density g-space grids: | + | |
- | + | ||
- | Overlap energy of the core charge distribution: | + | |
- | Self energy of the core charge distribution: | + | |
- | Core Hamiltonian energy: | + | |
- | Hartree energy: | + | |
- | Exchange-correlation energy: | + | |
- | Dispersion energy: | + | |
- | + | ||
- | Total energy: | + | |
- | + | ||
- | outer SCF iter = 1 RMS gradient = | + | |
- | outer SCF loop converged in 1 iterations or 1 steps | + | |
- | + | ||
- | + | ||
- | CDFT SCF iter = 5 RMS gradient = | + | |
- | CDFT SCF loop converged in 5 iterations or 37 steps | + | |
- | + | ||
- | + | ||
- | --------------------- Becke constraint information --------------------- | + | |
- | Atomic group : 1 | + | |
- | Type of constraint | + | |
- | Target value of constraint | + | |
- | Current value of constraint : 11.000126158558 | + | |
- | Deviation from target | + | |
- | Strength of constraint | + | |
- | ------------------------------------------------------------------------ | + | |
- | </ | + | |
- | + | ||
- | === Charge transfer energy in water dimer === | + | |
- | + | ||
- | In this example, we will calculate the charge transfer energy, $-\Delta E_\mathrm{CT}$, | + | |
- | + | ||
- | \begin{equation} | + | |
- | -\Delta E_\mathrm{CT} = E_\mathrm{CDFT}-E_\mathrm{DFT} | + | |
- | \end{equation} | + | |
- | + | ||
- | where $E_\mathrm{DFT}$ is the DFT total energy of the system, and $E_\mathrm{CDFT}$ is the CDFT energy of the system when charge transfer between the two molecules is prevented. | + | |
- | + | ||
- | We will calculate the charge transfer energy with four different constraints: | + | |
- | + | ||
- | After the calculations have finished, answer the following questions | + | |
- | - Compare the partial charges of unconstrained PBE water as predicted by the Becke population analysis method with and without atomic size adjustments (Hint: the CDFT calculations were restarted from the DFT wavefunction) | + | |
- | - How much charge is transferred between the two water molecules according to the different constraint methods? Note that net charges for fragment based constraints are not reported with respect to the core charge, but they can be recovered by post-processing the reported absolute populations. Instead, each atomic charge is referenced to the number of electrons per atom in the system where the isolated densities are superimposed. | + | |
- | - Compare the calculated charge transfer energies to the [[doi> | + | |
- | + | ||
- | + | ||
- | ---- | + | |
- | ===== Using the mixed CDFT module ===== | + | |
- | + | ||
- | Additional properties can be calculated from the interactions between CDFT states. In CP2K, these types of simulations are called mixed CDFT simulations because the module leverages the [[inp> | + | |
- | * Calculating charge transfer kinetics parameters | + | |
- | * Performing configuration interaction calculations within the basis of CDFT states | + | |
- | + | ||
- | In this part of the tutorial, the theoretical basis for mixed CDFT will first be established. The quantities accessible through such simulations will also be introduced. The structure of a mixed CDFT input file will then be discussed. The tutorial is concluded with a walk through of an example calculation. | + | |
- | + | ||
- | ==== Theoretical basis ==== | + | |
- | + | ||
- | The theoretical concepts related to mixed CDFT calculations are best introduced through an example. Consider the following one electron transfer processs < | + | |
- | + | ||
- | \begin{equation} | + | |
- | k_\mathrm{ab}=\frac{2\pi}{\hbar}\frac{\left< | + | |
- | \end{equation} | + | |
- | + | ||
- | where $\Delta A$ is the reaction free energy, $\xi$ is the solvent reorganization energy, and $\left|\mathbf{H}_\mathrm{ab}\right|$ is the electronic coupling. The first two quantities can be obtained from free energy simulations as discussed e.g. in [[doi> | + | |
- | + | ||
- | \begin{equation} | + | |
- | \mathbf{H}_\mathrm{ab} = \left< | + | |
- | \end{equation} | + | |
- | + | ||
- | where $\mathcal{H}$ is the many-electron Hamiltonian operator. The usefulness of the electronic coupling quantity is not limited to the Marcus rate equation, but it also a central quantity in other charge transfer theories as well as in CDFT based [[doi> | + | |
- | + | ||
- | The true, interacting many-electron wavefunctions or the Hamiltonian are not available in CDFT simulations. The electronic coupling is instead approximated using the CDFT surrogates | + | |
- | + | ||
- | \begin{equation} | + | |
- | \mathbf{H}_\mathrm{AB} \approx \left< | + | |
- | \mathbf{H}_\mathrm{BA} \approx \left< | + | |
- | \end{equation} | + | |
- | + | ||
- | where $\Phi$ are the CDFT Kohn-Sham determinants, | + | |
- | + | ||
- | \begin{equation} | + | |
- | \mathbf{W}_c^\mathrm{AB} = \left< | + | |
- | \end{equation} | + | |
- | + | ||
- | + | ||
- | In the above expressions, | + | |
- | + | ||
- | \begin{equation} | + | |
- | \mathbf{H' | + | |
- | \end{equation} | + | |
- | + | ||
- | and setting $\mathbf{H' | + | |
- | + | ||
- | The resulting matrix $\mathbf{H' | + | |
- | * Rotate CDFT states to eigenstates of the weight matrix $\mathbf{W}$. This is the default behavior for systems with only one constraint that is identically defined across all CDFT states, not applicable otherwise. | + | |
- | * Löwdin' | + | |
- | * The so-called wavefunction overlap method where the ground state Kohn-Sham solution is represented as the linear combination of CDFT states, see keyword [[inp> | + | |
- | + | ||
- | ==== Structure of input file ==== | + | |
- | + | ||
- | Mixed CDFT calculations are activated through the [[inp> | + | |
- | + | ||
- | The CDFT states are included as their own [[inp> | + | |
- | + | ||
- | < | + | |
- | & | + | |
- | METHOD MIXED | + | |
- | & | + | |
- | MIXING_TYPE MIXED_CDFT | + | |
- | NGROUPS | + | |
- | & | + | |
- | ! Calculate mixed CDFT properties every COUPLING step | + | |
- | COUPLING | + | |
- | ! Settings determining how forces are mixed | + | |
- | FORCE_STATES 1 2 | + | |
- | LAMBDA | + | |
- | ! Orthogonalize CDFT states using Lowdin' | + | |
- | ! in addition to standard method | + | |
- | LOWDIN | + | |
- | ! Configuration interaction? | + | |
- | CI FALSE | + | |
- | ! Turn on printing | + | |
- | & | + | |
- | & | + | |
- | &END | + | |
- | &END PRINT | + | |
- | &END MIXED_CDFT | + | |
- | &END MIXED | + | |
- | @include subsys.inc | + | |
- | &END FORCE_EVAL | + | |
- | # Zn+ Zn | + | |
- | & | + | |
- | @SET WFN_FILE | + | |
- | @SET RESTART | + | |
- | @SET NAME | + | |
- | @SET BECKE_TARGET | + | |
- | @SET BECKE_STR | + | |
- | METHOD QS | + | |
- | @include ${DFT_FILE} | + | |
- | &END FORCE_EVAL | + | |
- | # Zn Zn+ | + | |
- | & | + | |
- | @SET WFN_FILE | + | |
- | @SET RESTART | + | |
- | @SET NAME | + | |
- | @SET BECKE_TARGET | + | |
- | @SET BECKE_STR | + | |
- | METHOD QS | + | |
- | @include ${DFT_FILE} | + | |
- | &END FORCE_EVAL | + | |
- | </ | + | |
- | + | ||
- | In the above example input file, a common file '' | + | |
- | + | ||
- | The keyword [[inp> | + | |
- | + | ||
- | ==== Example: Electronic coupling of Zn cation dimer ==== | + | |
- | + | ||
- | In this example, we will calculate the electronic coupling for the reaction $\mathrm{Zn}^+ +\mathrm{Zn} \rightleftharpoons \mathrm{Zn}+ \mathrm{Zn}^+$. The initial and final states of this reaction were already converged with CDFT in a [[howto: | + | |
- | + | ||
- | The converged CDFT states are used as input for the mixed CDFT calculation. The calculation does not take long to run as a result. The mixed CDFT input file uses template files to keep the input tidy, as was discussed in the previous section. Find and study the corresponding section in the '' | + | |
- | + | ||
- | A number of files are generated by the mixed CDFT calculation. The main output from the calculation can be found in the file '' | + | |
- | + | ||
- | < | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | CDFT state and subsequently copied to other states | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | + | ||
- | ------------------------- CDFT coupling information -------------------------- | + | |
- | Information at step (fs): | + | |
- | + | ||
- | ############################################ | + | |
- | ###### CDFT states I = 1 and J = 2 ###### | + | |
- | ############################################ | + | |
- | Atomic group: | + | |
- | Strength of constraint I: | + | |
- | Strength of constraint J: -0.378315361740 | + | |
- | Final value of constraint I: | + | |
- | Final value of constraint J: | + | |
- | + | ||
- | Overlap between states I and J: | + | |
- | Charge transfer energy (J-I) (Hartree): | + | |
- | + | ||
- | Diabatic electronic coupling (rotation, mHartree): | + | |
- | Diabatic electronic coupling (Lowdin, mHartree): | + | |
- | ------------------------------------------------------------------------------ | + | |
- | NO FORCE_EVAL section calculated the dipole | + | |
- | + | ||
- | | + | |
- | </ | + | |
- | + | ||
- | Other files created during the execution are related to the individual CDFT states. The '' | + |
howto/cdft.1541061955.txt.gz · Last modified: 2020/08/21 10:15 (external edit)