Skip to content

Commit

Permalink
Merge branch 'develop' into mostofi-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannipizzi authored Feb 27, 2024
2 parents 8480035 + d29b6b2 commit 33c3ebe
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install \
sudo apt-get -y install \
gfortran \
libblas-dev \
liblapack-dev \
Expand Down
17 changes: 14 additions & 3 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
# Welcome to Wannier90 documentation
# Welcome to the Wannier90 documentation

![Wannier90 logo](assets/wannier-logo.svg){ width=400 }

This is the home of the documenation of [Wannier90](https://wannier.org),
which a computer program for maximally-localised Wannier functions (MLWFs).
This is the home of the documentation of [Wannier90](https://wannier.org),
which is an open-source code for generating maximally localized Wannier
functions and using them to compute advanced electronic properties of materials
with high efficiency and accuracy.

Many electronic structure codes have an interface to Wannier90, and there are
several post-processing codes that use the output of Wannier90 for further
analysis and calculation.

For an overview of the main features of Wannier90, please visit the
[Wannier90 homepage](https://wannier.org/features/).

This documentation contains the following sections:

- [User guide](user_guide/introduction.md)
- [Tutorials](tutorials/preliminaries.md)
2 changes: 1 addition & 1 deletion src/readwrite.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2103,7 +2103,7 @@ subroutine w90_readwrite_chkpt_dist(dis_manifold, wannier_data, u_matrix, u_matr
ikl = 1
do ikg = 1, num_kpts
if (distk(ikg) == rank) then
m_matrix_local(:, :, :, ikl) = m_matrix(:, :, :, ikg)
m_matrix_local(:num_wann, :num_wann, :, ikl) = m_matrix(:, :, :, ikg)
ikl = ikl + 1
endif
enddo
Expand Down

0 comments on commit 33c3ebe

Please sign in to comment.