You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/parameters.yaml
+13-2Lines changed: 13 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -266,7 +266,7 @@ parameters:
266
266
* mix: mixed precision, starting from single precision and switching to double precision when the SCF residual becomes small enough
267
267
default_value: double
268
268
unit: ""
269
-
availability: Used only for LCAO basis set on CPU.
269
+
availability: Used only for LCAO basis set.
270
270
- name: timer_enable_nvtx
271
271
category: System variables
272
272
type: Boolean
@@ -2811,7 +2811,18 @@ parameters:
2811
2811
type: "Integer \\[Integer\\](optional)"
2812
2812
description: |
2813
2813
The first integer controls whether to output the charge density on real space grids:
2814
-
* 1: Output the charge density (in Bohr^-3) on real space grids into the density files in the folder OUT.{suffix} too, which can be read in NSCF calculation.
2814
+
- 1: Output the charge density (in Bohr^-3) on real space grids into the density files in the folder `OUT.${suffix}`. The files are named as:
2815
+
- nspin = 1: `chg.cube`;
2816
+
- nspin = 2: `chgs1.cube`, and `chgs2.cube`;
2817
+
- nspin = 4: `chgs1.cube`, `chgs2.cube`, `chgs3.cube`, and `chgs4.cube`;
2818
+
- When using the Meta-GGA functional, additional files containing the kinetic energy density are also output:
2819
+
- nspin = 1: `tau.cube`;
2820
+
- nspin = 2: `taus1.cube`, and `taus2.cube`;
2821
+
- nspin = 4: `taus1.cube`, `taus2.cube`, `taus3.cube`, and `taus4.cube`;
2822
+
- 2: On top of 1, also output the initial charge density files with a suffix name as '_ini', such as `taus1_ini.cube`, etc.
2823
+
- -1: Disable the charge density auto-back-up file `{suffix}-CHARGE-DENSITY.restart`, useful for large systems.
2824
+
2825
+
The second integer controls the precision of the charge density output. If not given, `3` is used as default. For restarting from this file and other high-precision calculations, `10` is recommended.
2815
2826
2816
2827
In molecular dynamics simulations, the output frequency is controlled by out_freq_ion.
Copy file name to clipboardExpand all lines: source/source_io/module_parameter/read_input_item_output.cpp
+13-2Lines changed: 13 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -71,8 +71,19 @@ void ReadInput::item_output()
71
71
", second parameter controls the precision, default is 3.";
72
72
item.category = "Output information";
73
73
item.type = R"(Integer \[Integer\](optional))";
74
-
item.description = R"(The first integer controls whether to output the charge density on real space grids:
75
-
* 1: Output the charge density (in Bohr^-3) on real space grids into the density files in the folder OUT.{suffix} too, which can be read in NSCF calculation.
74
+
item.description = R"(The first integer controls whether to output the charge density on real space grids:
75
+
- 1: Output the charge density (in Bohr^-3) on real space grids into the density files in the folder `OUT.${suffix}`. The files are named as:
76
+
- nspin = 1: `chg.cube`;
77
+
- nspin = 2: `chgs1.cube`, and `chgs2.cube`;
78
+
- nspin = 4: `chgs1.cube`, `chgs2.cube`, `chgs3.cube`, and `chgs4.cube`;
79
+
- When using the Meta-GGA functional, additional files containing the kinetic energy density are also output:
80
+
- nspin = 1: `tau.cube`;
81
+
- nspin = 2: `taus1.cube`, and `taus2.cube`;
82
+
- nspin = 4: `taus1.cube`, `taus2.cube`, `taus3.cube`, and `taus4.cube`;
83
+
- 2: On top of 1, also output the initial charge density files with a suffix name as '_ini', such as `taus1_ini.cube`, etc.
84
+
- -1: Disable the charge density auto-back-up file `{suffix}-CHARGE-DENSITY.restart`, useful for large systems.
85
+
86
+
The second integer controls the precision of the charge density output. If not given, `3` is used as default. For restarting from this file and other high-precision calculations, `10` is recommended.
76
87
77
88
In molecular dynamics simulations, the output frequency is controlled by out_freq_ion.
0 commit comments