9.4. Property File¶
One of the files that ORCA produces, during a calculation, is the property file. The name of the file is basename.property.txt
, where basename
is the basename of the input file.
The property file has mainly two usages in ORCA. The first usage is to work as basis for the Compound scripting language. Compound reads all its information concerning properties through the property file and not through parsing of the ORCA output. The second usage of the property file is to make it easier for other programs, or potential GUIs, to create interfaces with ORCA.
The advantage of the property file compared to the normal ORCA output is that it’s syntax is well defined and so it is easier to parse it. It can also be converted to JSON format as shown below.
Writing to the property file is enabled by default for most calculations.
It can be disabled via !NoPropFile
or toggled on/off in the %output
block:
%output
PropFile false # default: true
end
Caution
Since the whole file is read and re-written multiple times for each single point calculation,
optimizations of systems with a few thousand atoms can incur a few milliseconds of stacking I/O overhead,
per optimization cycle (i.e., a few seconds per cycle after several hundred steps).
Thus, it is recommended to disable the property file for such calculations
and this is done by default for GOAT
, MD-L-Opt
, MM
, or GFN-FF
chosen in the simple input.
9.4.1. TXT Format¶
After any ORCA calculation a property file is created with the extension .property.txt
. The file is a text file and one can read it and edit it with any available text editor. Below we will analyze the syntax of the file.
The file always starts with the following three lines:
*************************************************
******************* ORCA 6.1.x ******************
*************************************************
where, obviously the version of ORCA changes
(it is also stored in Calculation_Status -> version
).
Then, the file consists of a list of properties. Each property starts with the symbol $
followed by the name of the property and ends with the symbol $
followed by End
.
For example:
$SCF_Nuc_Gradient
&GeometryIndex 1
&NAtoms [&Type "Integer"] 2
&gradNorm [&Type "Double"] 7.6940943132805237e-02
&grad [&Type "ArrayOfDoubles", &Dim (6,1)]
0
0 6.7009699964043727e-10
1 -1.3755030800675890e-10
2 5.4405462640094826e-02
3 -6.7009699282161039e-10
4 1.3755031156980307e-10
5 -5.4405462640095381e-02
&Method [&Type "String"] "SCF"
&Level [&Type "String"] "Relaxed density"
&Mult [&Type "Integer"] 1
&State [&Type "Integer"] 0
&Irrep [&Type "Integer"] 0
$End
Each property consists of components. Each component starts with the symbol &
and has no ending symbol.
For example:
&gradNorm [&Type "Double"] 7.6940943132805237e-02
The first component in every property is GeometryIndex
,
which shows the geometry to which the current property belongs.
For example:
&GeometryIndex 1
Note that geometry indices start from 1.
The remaining components have the following syntax:
First the start of component symbol
&
.Then follows the name of the component.
Then a bracket opens with various bracket information about the component. For details on the syntax of the bracket information please check Bracket Information.
After the bracket there are different options.
If the type is String
then a string is expected starting with quotation marks.
For example:
&Method [&Type "String"] "SCF"
If the type is Double
or Integer
then a number of the appropriate type is expected.
For example:
&NAtoms [&Type "Integer"] 2 "Number of atoms"
As in the example above, a component description or comment in quotation marks may be optionally present after the value in the same line as the component name.
Note that for Array
components, the comment actually comes before the data.
Finally, if the type is a kind of Array
then, after the optional comment,
an array is written starting from the next line.
Arrays are written in blocks of up to 8 whitespace-sparated columns.
Each block starts with a line with column indices (starting from 0).
The second line in a block is reserved but currently ignored.
The next lines start with the row index and continue with the data for the respective row/columns.
For example:
&dipoleTotal [&Type "ArrayOfDoubles", &Dim (3,1)] "Total"
0
0 -5.1716015643064861e-01
1 5.1774970936823518e-02
2 7.8324050140722279e-01
Note that Complex
scalars are printed as two consecutive values for the real and imaginary part (before the optional comment),
whereas for ArrayOfComplex
the real part of the whole array is printed first,
followed by the imaginary part.
9.4.1.1. Bracket Information¶
Bracket information is a list of entries separated with ‘,’.
The first and most important bracket entry is the Type
,
which can be one of the following:
Double
Integer
Boolean
Complex
String
ArrayOfDoubles
ArrayOfIntegers
ArrayOfBooleans
ArrayOfComplex
Coordinates
For example:
&NAtoms [&Type "Integer"] 2
Then, in case the Type
is a kind of array, the bracket must contain the dimensions of the array, using the Dim
entry. Note that all arrays are 2-dimensional!
For example:
&ATNO [&Type "ArrayOfIntegers", &Dim (2,1)]
Optionally, Units
may also be given, if the value is not in a.u. For example:
&dipoleMagnitude [&Type "Double", &Units "Debye"] 9.4000050960598935e-01
9.4.2. JSON Format¶
The property file can be also produced in a JSON format. Internally this happens through transformation of the txt
format to JSON format. There are two ways to create a JSON property file.
The first way is through the normal ORCA input using the JSONPropFile
keyword.
%Output
JSONPropFile True
End
this will create a basename.property.txt
and in addition a basename.property.json
file.
The second way is through the orca_2json
command.
For this, one first has to run a normal ORCA input, that will create a basename.property.txt
file,
and then convert it to basename.property.json
using the command:
orca_2json basename -property
The file is structured as follows:
{
"<GlobalPropertyName>": {
"<ComponentName>": <value>,
<More components>
},
<More global properties>
"Geometries": [
{
"Geometry": {
"Coordinates": {
"Cartesians": [
[
"<Symbol>",
<X>,
<Y>,
<Z>
],
<More atoms>
],
"Type": "Cartesians",
"Units": "a.u."
},
"NAtoms": <value>,
<More components>
},
"<PropertyName>": {
"<ComponentName>": <value>,
<More components>
},
<More properties for this geometry>
},
<More geometries>
]
}
The “global”, i.e. geometry-independent properties are:
Calculation_Status
, Calculation_Info
, and Calculation_Timings
.
Most component data types are directly converted to the corresponding JSON types.
All Array
components are stored as two-dimensional using nested lists (even if one dimension is of length 1). Complex
and ArrayOfComplex
values are stored as separate real and imaginary parts:
"ComplexComponentName": {
"re": <real part>,
"im": <imaginary part>
},
"ComplexArrayComponentName": {
"re": [
[<r11>, <r12>, <...>],
[<r21>, <r22>, <...>],
<...>
],
"im": [
[<i11>, <i12>, <...>],
[<i21>, <i22>, <...>],
<...>
]
}
9.4.3. List of Available Properties¶
Property[1] |
M[2] |
Component |
T[3] |
O[4] |
L[5] |
Description |
Units |
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
||||
|
I |
Y |
N |
||||
|
I |
Y |
N |
||||
|
AD |
N |
N |
Reference energy for each state |
|||
|
AD |
N |
N |
Total correlation energy for each state |
|||
|
S |
N |
N |
||||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
D |
N |
N |
Final GS or SA energy |
|
|
I |
N |
N |
||||
|
I |
N |
N |
Number of active electrons |
|||
|
I |
N |
N |
Number of active orbitals |
|||
|
I |
N |
N |
||||
|
S |
N |
N |
||||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
D |
N |
N |
Final GS or SA energy |
|
|
I |
N |
N |
||||
|
I |
N |
N |
Number of active electrons |
|||
|
I |
N |
N |
Number of active orbitals |
|||
|
I |
N |
N |
||||
|
S |
N |
N |
||||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
D |
N |
N |
Final GS or SA energy |
|
|
I |
N |
N |
||||
|
I |
N |
N |
Number of active electrons |
|||
|
I |
N |
N |
Number of active orbitals |
|||
|
I |
N |
N |
||||
|
S |
N |
N |
||||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
D |
N |
N |
Final GS or SA energy |
|
|
I |
N |
N |
||||
|
I |
N |
N |
Number of active electrons |
|||
|
I |
N |
N |
Number of active orbitals |
|||
|
I |
N |
N |
||||
|
S |
N |
N |
||||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
N |
|
D |
N |
N |
||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
Y |
|
D |
N |
N |
Ground state energy |
|
|
B |
N |
N |
Do the higher multiplicity too? |
|||
|
S |
N |
N |
CIS mode: CIS, RPA, TDA, TD-DFT, sTDA, sTD-DFT |
|||
|
I |
N |
N |
(D) Correction algorithm |
|||
|
S |
N |
N |
||||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
I |
N |
N |
||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
N |
|
D |
N |
N |
||
|
N |
|
I |
N |
N |
||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
D |
N |
N |
No Van der Waals correction |
|||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
Y |
N |
||||
|
N |
|
D |
N |
N |
The High Spin Energy |
|
|
D |
N |
N |
The Broken Symmetry Energy |
|||
|
D |
N |
N |
The High Spin Spin |
|||
|
D |
N |
N |
The Expectation value of S**2 for the High Spin case |
|||
|
D |
N |
N |
The Expectation value of S**2 for the Broken symmetry case |
|||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
a.u |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
N |
|
D |
N |
N |
||
|
N |
|
B |
N |
N |
Extrapolation using only one method |
|
|
B |
N |
N |
Extrapolation using two different methods (same small basis Set) |
|||
|
B |
N |
N |
Extrapolation using two different methods (use three basis Sets for the cheap method) |
|||
|
B |
N |
N |
Extrapolate energy gradients |
|||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
Y |
N |
The SCF Gradients |
|||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
Y |
N |
||||
|
D |
N |
N |
||||
|
AI |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
I |
N |
N |
How many energies we are going to use (e.g. two-point scheme). |
|||
|
S |
N |
Y |
||||
|
N |
|
D |
N |
N |
||
|
N |
|
AD |
N |
N |
The Hessian |
|
|
AD |
N |
N |
The modes of vibrations |
|||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
N |
|
I |
N |
N |
||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
N |
|
D |
N |
N |
Final single point energy |
|
|
B |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
Reference Energy |
|||
|
AD |
N |
N |
Total Correlation Energy |
|||
|
AD |
N |
N |
Alpha-Alpha Pairs Correlation Energy (No (T)) |
|||
|
AD |
N |
N |
Beta-Beta Pairs Correlation Energy (No (T)) |
|||
|
AD |
N |
N |
Alpha-Beta Pairs Correlation Energy (No (T)) |
|||
|
AD |
Y |
N |
Singlet pairs energy of double amplitudes (No (T)) |
|||
|
AD |
Y |
N |
Triplet pairs energy of double amplitudes (No (T)) |
|||
|
AD |
Y |
N |
Singlet pairs energy of quadratic single amplitudes (No (T)) |
|||
|
AD |
Y |
N |
Triplet pairs energy of quadratic single amplitudes (No (T)) |
|||
|
AD |
N |
N |
Triples Correction Energy |
|||
|
S |
N |
N |
||||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
I |
N |
N |
||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
AD |
N |
N |
Reference energy for each state |
|
|
AD |
N |
N |
MP2 correlation energy for each state |
|||
|
S |
N |
N |
||||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
I |
N |
N |
||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
AI |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
AI |
N |
N |
||||
|
D |
N |
N |
Total integrated alpha density |
|||
|
D |
N |
N |
Total integrated beta density |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
AI |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Total number of atoms |
|
|
I |
N |
N |
The number of bond orders larger than threshold |
|||
|
D |
N |
N |
The threshold for printing |
|||
|
AI |
Y |
N |
The indices and atomic numbers of the bonding atoms |
|||
|
AD |
Y |
N |
The bond orders |
|||
|
AI |
N |
N |
Atomic number of the elements |
|||
|
AD |
N |
N |
Mulliken gross atomic population |
|||
|
AD |
N |
N |
Total nuclear charge |
|||
|
AD |
N |
N |
Mulliken gross atomic charge |
|||
|
AD |
N |
N |
Mayer’s total valence |
|||
|
AD |
N |
N |
Mayer’s bonded valence |
|||
|
AD |
N |
N |
Mayer’s free valence |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
AI |
N |
N |
||||
|
D |
N |
N |
||||
|
I |
N |
N |
||||
|
B |
N |
N |
||||
|
D |
N |
N |
Total integrated alpha density |
|||
|
D |
N |
N |
Total integrated beta density |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
Y |
N |
||||
|
AD |
Y |
N |
||||
|
AD |
Y |
N |
||||
|
AD |
Y |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
AI |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
N |
|
D |
N |
N |
||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
State energies in Hartree |
|||
|
AI |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
S |
N |
N |
||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
S |
N |
N |
||
|
AD |
N |
N |
Total energy of each state |
|||
|
AI |
Y |
N |
Multiplicity of each state |
|||
|
AI |
Y |
N |
Irreducible representation of each state |
|||
|
S |
Y |
N |
Relativistic correction (SOC and/or SSC) |
|||
|
I |
Y |
N |
Number of multiplicity blocks |
|||
|
AI |
Y |
N |
Number of roots in each block |
|||
|
I |
Y |
N |
Total number of roots |
|||
|
AI |
Y |
N |
Block index of each state |
|||
|
AI |
Y |
N |
Root index within the block |
|||
|
I |
Y |
N |
Index of the followed root |
|||
|
AD |
Y |
N |
Average multiplicity of each SO-/SS-coupled state |
|||
|
Y |
|
I |
N |
N |
||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
D |
N |
N |
||
|
AD |
N |
N |
a.u |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic istotropic polarizabilities |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Nuclear contribution. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
Total. Order: XX, YY, ZZ, XY, XZ, YZ |
|||
|
AD |
N |
N |
The diagonalized tensor |
a.u. |
||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic quadrupoles (NAtoms * XX, YY, ZZ, XY, XZ, YZ) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of active nuclei |
|
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
D |
N |
Y |
Atomic mass |
|||
|
D |
N |
Y |
Spin of the nuclei |
|||
|
D |
N |
Y |
Prefactor PFAC=gegNbe*bN (in MHz) |
|||
|
AD |
N |
Y |
Raw tensor |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
D |
N |
Y |
||||
|
Y |
|
I |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
Y |
Index of the nuclei |
|||
|
I |
N |
Y |
Atomic number of the nuclei |
|||
|
AD |
N |
Y |
Diamagnetic contribution |
|||
|
AD |
N |
Y |
Paramagnetic contribution |
|||
|
AD |
N |
Y |
Total tensor |
|||
|
AD |
N |
Y |
Eigenvectors |
|||
|
AD |
N |
Y |
Eigenvalues |
|||
|
D |
N |
Y |
||||
|
D |
N |
Y |
||||
|
Y |
|
AD |
N |
N |
||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
Number of nuclei pairs to calculate |
|
|
I |
N |
N |
number of nuclear pairs to calculate DSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate PSO |
|||
|
I |
N |
N |
number of nuclear pairs to calculate FC |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD |
|||
|
I |
N |
N |
number of nuclear pairs to calculate SD/FC |
|||
|
AI |
N |
N |
Pairs Info: Col1->Index of A. Col2->Atom. Num. of A. Col3->Index of B. Col4->Atom. Num. of B. |
|||
|
AD |
N |
N |
The distances of each pair |
|||
|
AD |
N |
N |
The Spin-Spin coupling constant for each pair |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
N |
|
D |
N |
N |
||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
I |
N |
N |
||
|
I |
N |
N |
Type of relativistic treatment in QDPT. 0->Unknow, 1->None, 2->SOC, 3->SSC, 4->SOC/SSC |
|||
|
I |
N |
N |
Type of density (electron/spin …). 0->Unknow, 1->Electronic, 2->Spin, 3->Trans/Electronic, 4->Tran/Spin |
|||
|
I |
N |
N |
Type of derivative (w.r.t. to what perturbation). 0->Unknown, 1->No Derivative, 2->Electric/Dipole, 3->Electric/Quad, 4->Magnetic/Dipole, 5->Magnetic/Quad |
|||
|
I |
N |
N |
// Source of density: relaxed, unrelaxed, … 0->Unknown, 1->Linearized, 2->Unrelaxed, 3->Relaxed |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
Possible values: Unknown, Length, Velocity |
|||
|
S |
N |
N |
||||
|
B |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
||||
|
AI |
N |
N |
The initial and Final states. Col1: Initial State Col2: Initial Irrep Col3: Final State Col4: Final Irrep |
|||
|
AD |
N |
N |
Col1: Multiplicity of the initial state Col2: Multiplicity of the final state |
|||
|
D |
N |
N |
||||
|
Y |
|
D |
N |
N |
||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
I |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
I |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
cm^-1 |
|||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
B |
N |
N |
||||
|
N |
|
D |
N |
N |
||
|
AD |
Y |
N |
||||
|
N |
|
S |
N |
N |
||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
Y |
|
D |
N |
N |
Ground State Reference Energy |
|
|
D |
N |
N |
Ground State Correlation Energy |
|||
|
D |
N |
N |
Ground State Total MDCI Energy |
|||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
D |
N |
N |
a.u. |
|
|
AD |
N |
N |
Electronic contribution |
|||
|
AD |
N |
N |
Nuclear contribution |
|||
|
AD |
N |
N |
Total |
|||
|
B |
N |
N |
||||
|
AD |
Y |
N |
Atomic dipoles (NAtoms * X,Y,Z) |
|||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
Y |
|
AD |
N |
N |
||
|
D |
N |
N |
The free electron g-value contribution |
|||
|
D |
N |
N |
The reduced mass correction |
|||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
D |
N |
N |
||||
|
AD |
N |
N |
||||
|
S |
N |
N |
||||
|
S |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
N |
|
I |
N |
N |
The number of fragments |
|
|
D |
N |
N |
Sum of non dispersive correlation strong pairs |
|||
|
D |
N |
N |
Sum of non dispersive correlation weak pairs |
|||
|
AD |
N |
N |
Electrostatics reference |
|||
|
AD |
N |
N |
Exchange reference |
|||
|
AD |
N |
N |
Strong pair dispersion contribution |
|||
|
AD |
N |
N |
Weak pair dispersion contribution |
|||
|
AD |
N |
N |
Interaction reference |
|||
|
AD |
N |
N |
Interaction correlation |
|||
|
AD |
N |
N |
Interaction total |
|||
|
N |
|
I |
N |
N |
||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
AD |
N |
N |
Occupation of natural orbitals |
|||
|
AD |
N |
N |
Occupation of spin natural orbitals |
|||
|
N |
|
D |
Y |
N |
||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
N |
|
D |
Y |
N |
||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
D |
Y |
N |
||||
|
N |
|
S |
N |
N |
||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
D |
N |
N |
||||
|
S |
N |
N |
||||
|
D |
N |
N |
||||
|
I |
N |
N |
||||
|
D |
N |
N |
||||
|
N |
|
I |
N |
N |
||
|
I |
N |
N |
||||
|
I |
N |
N |
||||
|
CC |
N |
N |
Bohr |
|||
|
AI |
N |
N |
||||
|
AI |
Y |
N |
Non-zero for cECPs |
|||
|
AI |
Y |
N |
Non-zero for ghost atoms |
|||
|
AI |
Y |
N |
Fragment ID |