Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFC: bandstructure with correct connectivity around degeneracies #145

Merged
merged 2 commits into from
Dec 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
matrix:
version:
- '1.4'
- '1.5'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ProgressMeter = "1.2"
Requires = "1.0"
SpecialFunctions = "0.10, 1.0"
StaticArrays = "0.12.3, 0.13"
julia = "1.4"
julia = "1.5"

[extras]
ArnoldiMethod = "ec485272-7323-5ecc-a04f-4719b315124d"
Expand Down
6 changes: 3 additions & 3 deletions src/KPM.jl
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ resolution`, rounded to the closest integer.
Same as above with KPM momenta `μ` as input. Equivalent to `densityKPM(μ; kw...)` except
that imaginary parts are dropped.

# See also:
# See also
`momentaKPM`, `densityKPM`, `averageKPM`
"""
function dosKPM(h; resolution = 2, kets = randomkets(1), kw...)
Expand Down Expand Up @@ -263,7 +263,7 @@ for `dosKPM`, all imaginary parts in `ρ_A` are preserved), where the number of

Same as above with the KPM momenta as input (see `momentaKPM`).

# See also:
# See also
`dosKPM`, `momentaKPM`, `averageKPM`
"""
densityKPM(h, A; resolution = 2, kw...) =
Expand Down Expand Up @@ -295,7 +295,7 @@ energy `E_k`, kBT` is the temperature in energy units and `Ef` the Fermi energy.

Same as above with the KPM momenta as input (see `momentaKPM`).

# See also:
# See also
`dosKPM`, `momentaKPM`, `averageKPM`
"""
averageKPM(h, A; kBT = 0, Ef = 0, kw...) = averageKPM(momentaKPM(h, A; kw...); kBT = kBT, Ef = Ef)
Expand Down
2 changes: 1 addition & 1 deletion src/Quantica.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export sublat, bravais, lattice, dims, supercell, unitcell,
ket, randomkets,
hamiltonian, parametric, bloch, bloch!, similarmatrix,
flatten, wrap, transform!, combine,
spectrum, bandstructure, diagonalizer, cuboid, isometric,
spectrum, bandstructure, diagonalizer, cuboid, isometric, splitbands,
bands, vertices,
energies, states, degeneracy,
momentaKPM, dosKPM, averageKPM, densityKPM, bandrangeKPM,
Expand Down
Loading