@@ -276,7 +276,7 @@ configurations in the PBC DFT calculations:
276276In the following, we analyze each combination of these dimensions, and provide
277277practical guidance for setting up efficient integral schemes and configurations.
278278
279- * Pseudopotential + Semi-local XC + 3D Periodicity
279+ #### Pseudopotential + Semi-local XC + 3D Periodicity
280280
281281This is one of the most common scenarios in PBC DFT calculations. The
282282default settings of the KRKS and KUKS classes can directly handle this type of
@@ -290,7 +290,7 @@ mf = mf.multigrid_numint()
290290mf.run()
291291```
292292
293- * Pseudopotential + Hybrid functional + 3D Periodicity
293+ #### Pseudopotential + Hybrid functional + 3D Periodicity
294294
295295Gaussian-based PBC DFT is considered more affordable for hybrid functional
296296calculations than plane-wave DFT program. This feature makes hybrid functional
@@ -335,7 +335,7 @@ The order of applying `multigrid_numint()` and setting `mf.rsjk = ...`, does not
335335affect the final setup.
336336
337337
338- * Pseudopotential + Semi-local XC + Low-dimensional System (2D and 1D)
338+ #### Pseudopotential + Semi-local XC + Low-dimensional System (2D and 1D)
339339
340340The setup for 2D calculations is almost the same as that for the 3D calculations.
341341To perform a 2D calculation, we can simply set
@@ -371,15 +371,15 @@ that use a truncated Coulomb potential with `cell.dimension=2`.
371371Therefore, we will not discuss the integral configurations under the infinite
372372vacuum mode here.
373373
374- * Pseudopotential + Hybrid functional + Low-dimensional System (2D and 1D)
374+ #### Pseudopotential + Hybrid functional + Low-dimensional System (2D and 1D)
375375
376376If the truncated Coulomb potential with ` cell.dimension=2 ` is applied, the GDF
377377and RSJK algorithms can still be used for 2D calculations with hybrid
378378functionals. However, the RSDF scheme does not support the truncated Coulomb
379379potential. Settings for XC integration are the same as those for the semi-local
380380XC functional scenario mentioned above.
381381
382- * All-electron + Semi-local XC + 3D Periodicity
382+ #### All-electron + Semi-local XC + 3D Periodicity
383383
384384When all-electron basis sets are used, the default FFTDF algorithm becomes
385385inappropriate because of the extremely high PW energy cutoff. Even if HF
@@ -400,7 +400,7 @@ mf = cell.KRKS(xc='pbe', kpts=cell.make_kpts(kmesh)).density_fit()
400400mf.run()
401401```
402402
403- * All-electron + Hybrid functional + 3D Periodicity
403+ #### All-electron + Hybrid functional + 3D Periodicity
404404
405405The settings required for all-electron calculations with hybrid functionals are
406406the same as those for all-electron calculations with semi-local XC functionals.
@@ -419,7 +419,7 @@ mf = cell.KRKS(xc='pbe0', kpts=cell.make_kpts(kmesh)).density_fit()
419419mf.run()
420420```
421421
422- * All-electron + Low-dimensional Systems
422+ #### All-electron + Low-dimensional Systems
423423
424424The setup for all-electron low-dimensional systems is similar to that for 3D
425425systems. For Coulomb integrals, one should use GDF or RSJK, regardless of
0 commit comments