Skip to content

Commit 278b5d9

Browse files
authored
Dev/doc_correction (#26)
* minor doc corrections * minor doc corrections, again
1 parent f77af4a commit 278b5d9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/src/calculation.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ Cclib also allows to further analyse calculation ouputs.
44

55
# C squared population analysis (CSPA)
66
**CSPA** can be used to determine and interpret the electron density of a molecule. The contribution of the a-th atomic orbital to the i-th molecular orbital can be written in terms of the molecular orbital coefficients:
7+
78
$$\Phi_{ai} = \frac{c^2_{ai}}{\sum_k c^2_{ki}}$$
9+
810
```Julia
911
# Example calculation files can be found in the test folder of the main branch.
1012
julia> using Cclib
@@ -17,7 +19,9 @@ julia> aoresults, fragresults, fragcharges = cspa("./Trp_polar.fchk")
1719

1820
# Mulliken population analysis (MPA)
1921
MPA can be used to determine and interpret the electron density of a molecule. The contribution of the a-th atomic orbital to the i-th molecular orbital in this method is written in terms of the molecular orbital coefficients, c, and the overlap matrix, S:
22+
2023
$$\Phi_{ai} = \sum_b c_{ai} c_{bi} S_{ab}$$
24+
2125
```Julia
2226
julia> using Cclib
2327
julia> aoresults, fragresults, fragcharges = mpa("./Trp_polar.fchk")
@@ -80,6 +84,4 @@ julia> using Cclib
8084
julia> donations, bdonations, repulsions = cda("BH3CO-sp.log", "BH3.log", "CO.log")
8185
```
8286
Returns donations, bdonations (back donations), and repulsions attributes.
83-
These attributes are simply lists of 1-dimensional arrays corresponding to the restricted or alpha/beta molecular orbitals of the entire molecule.
84-
85-
<!-- # Bader’s QTAIM -->
87+
These attributes are simply lists of 1-dimensional arrays corresponding to the restricted or alpha/beta molecular orbitals of the entire molecule.

0 commit comments

Comments
 (0)