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
5. For additional pseudopotential options and to view the basic benchmark test results of these pseudopotentials in ABACUS, please refer to the [Benchmarks website](https://kirk0830.github.io/ABACUS-Pseudopot-Nao-Square/pseudopotential/pseudopotential.html)
102
103
103
104
### NUMERICAL_ORBITAL
104
105
@@ -110,6 +111,9 @@ information that comes below.
110
111
‘Si_gga_8au_60Ry_2s2p1d.orb’ is name of the numerical orbital file. Again here the path is not specified, which means that this file is located in the work directory.
111
112
112
113
Numerical atomic orbitals may be downloaded from the [official website](http://abacus.ustc.edu.cn/pseudo/list.htm).
114
+
Recommendation for Pseudopotential and Orbital Sets
115
+
For general usage requirements, the APNSv1.0 pseudopotential and orbital set is recommended. You can access it via [AIS square website](https://www.aissquare.com/datasets/detail?pageType=datasets&name=ABACUS-APNS-PPORBs-v1%253Apre-release&id=326)
116
+
113
117
### LATTICE_CONSTANT
114
118
115
119
The lattice constant of the system in unit of Bohr.
@@ -248,7 +252,7 @@ information that comes below.
248
252
Several other parameters could be defined after the atom position using key words :
249
253
250
254
- `m` or NO key word: three numbers, which take value in 0 or 1, control how the atom move in geometry relaxation calculations. In example below, the numbers `0 0 0` following the coordinates of the first atom means this atom are *not allowed* to move in all three directions, and the numbers `1 1 1` following the coordinates of the second atom means this atom *can* move in all three directions.
251
-
- `v` or `vel` or `velocity`: set the three components of initial velocity of atoms in geometry relaxation calculations(e. g. `v 1.0 1.0 1.0`).
255
+
- `v` or `vel` or `velocity`: set the three components of initial velocity of atoms, used only for restarting MD calculations(e.g., `v 1.0 1.0 1.0`).
252
256
- `mag` or `magmom` : set the start magnetization for each atom. In colinear case only one number should be given. In non-colinear case one have two choice:either set one number for the norm of magnetization here and specify two polar angle later(e. g. see below), or set three number for the xyz commponent of magnetization here (e. g. `mag 0.0 0.0 1.0`). Note that if this parameter is set, the initial magnetic moment setting in the second line will be overrided.
253
257
- `angle1`: in non-colinear case, specify the angle between z-axis and real spin, in angle measure instead of radian measure
254
258
- `angle2`: in non-colinear case, specify angle between x-axis and real spin in projection in xy-plane , in angle measure instead of radian measure
@@ -305,4 +309,35 @@ information that comes below.
305
309
0.0 0.0 0.0 m 0 0 0 mag 1 1 1
306
310
0.5 0.5 0.5 m 1 1 1 mag 1 1 1
307
311
```
308
-
However, this autoset will not be vaild once `STRU` specalize a finite magnetic for any single atom.
312
+
However, this autoset will not be vaild once `STRU` specalize a finite magnetic for any single atom.
313
+
314
+
- `lambda`: Lagrange multiplier vector for spin constraint method. Can specify one value (z-component) or three values for x, y, z components (e.g., `lambda 0.5` or `lambda 0.1 0.2 0.3`). Values are in eV and will be converted to Rydberg internally. Used with spin-constrained DFT (enable with `sc_mag_switch` in INPUT file).
315
+
316
+
- `sc`: set the spin constraint target magnetization for each atom. Can specify one value (z-component) or three values for x, y, z components (e.g., `sc 1.0` or `sc 0.5 0.5 1.0`). Used with spin-constrained DFT (enable with `sc_mag_switch` in INPUT file).
317
+
318
+
### Important Notes for ATOMIC_POSITIONS
319
+
320
+
1. **Coordinate System Selection**: Choose the appropriate coordinate system based on your needs:
321
+
- Use `Direct` for fractional coordinates (most common for periodic systems)
322
+
- Use `Cartesian_angstrom` when working with molecular structures or experimental data
323
+
- Use centered coordinate systems (`Cartesian_angstrom_center_xy/xz/yz/xyz`) for surface or slab calculations where you want to center the structure
324
+
325
+
2. **Magnetization Settings**:
326
+
- For collinear calculations (`nspin=2`), only specify one magnetization value per atom
327
+
- For non-collinear calculations (`nspin=4`), you can specify:
- If no magnetization is specified for any atom, ABACUS will automatically set default values (1.0 for nspin=2, or (1,1,1) for nspin=4)
331
+
332
+
3. **Movement Constraints**:
333
+
- Use `m 1 1 1` to allow the atom to move freely in all directions during relaxation
334
+
- Use `m 0 0 0` to fix the atom completely
335
+
- Use `m 1 0 1` to allow movement only in x and z directions (useful for constraining surface atoms)
336
+
337
+
4. **Keyword Order**: The optional keywords (m, v, mag, angle1, angle2, lambda, sc) can appear in any order after the atomic coordinates, but each keyword should only appear once per atom.
338
+
339
+
5. **Common Mistakes to Avoid**:
340
+
- Don't mix Direct and Cartesian coordinates in the same STRU file
341
+
- Ensure the number of atoms specified matches the actual number of coordinate lines provided
342
+
- When using vector magnetization (`mag x y z`), don't also specify angles for the same atom
343
+
- Remember that angles are in degrees, not radians
Copy file name to clipboardExpand all lines: docs/quick_start/input.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ O #Name of element
95
95
96
96
> **Note:** users may choose a different name for their structure file using the keyword `stru_file`. The order of the pseudopotential file list and the numerical orbital list (if LCAO is applied) MUST be consistent with that of the atomic type given in `ATOMIC_POSITIONS`.
97
97
98
-
For a more detailed description of STRU file, please consult [here](../advanced/input_files/stru.md).
98
+
> **Important:** When specifying atomic positions, you can use various coordinate systems (Direct, Cartesian, Cartesian_angstrom, etc.) and add optional properties like magnetization, velocity, and movement constraints. See the [detailed STRU documentation](../advanced/input_files/stru.md) for all available options and best practices.
0 commit comments