Skip to content
New issue

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

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

Already on GitHub? # to your account

Partially solves #229 #235

Merged
merged 1 commit into from
Jan 30, 2019
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ thedoc:
$(MAKE) -C $(ROOTDIR)/doc/tutorial

dist:
@(cd $(ROOTDIR) && $(TAR) -cz --transform='s,^\./,wannier90-2.1.0/,' -f wannier90-2.1.0.tar.gz \
@(cd $(ROOTDIR) && $(TAR) -cz --transform='s,^\./,wannier90-3.0/,' -f wannier90-3.0.tar.gz \
./src/*.?90 \
./src/postw90/*.?90 \
./autodoc/README.txt \
Expand Down
4 changes: 2 additions & 2 deletions doc/tutorial/tutorial.tex
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@

\title{\wannier: Tutorial}

\author{Version 2.1.0}
\author{Version 3.0}

\date{13th January 2017}
\date{28th February 2019}
%\date{\today}

%%% THIS SHOULD BE THE LAST PACKAGE TO BE LOADED!
Expand Down
16 changes: 13 additions & 3 deletions doc/user_guide/overview.tex
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
%!TEX root=./user_guide.tex
\chapter*{Introduction}
\section*{Getting Help}
The latest version of \wannier\ and documentation can always
The latest release of \wannier\ and documentation can always
be found at \url{http://www.wannier.org}.

The development version may be cloned/downloaded from the
official repository of the \wannier\ code on GitHub
(see \url{https://github.com/wannier-developers/wannier90}).

There is a \wannier\ mailing list for discussing issues in the
development, theory, coding and algorithms pertinent to MLWF.
You can register for this mailing list by following the links at
\url{http://www.wannier.org/forum.html}
\url{http://www.wannier.org/forum.html}.
Alternatively, for technical issues about the \wannier\ code,
check the official repository of \wannier\ on GitHub
where you may raise issues or ask questions about about its
functionalities.

Finally, many frequently asked questions are answered in
Appendix~\ref{chap:faq}.
Appendix~\ref{chap:faq}. An expanded FAQ session may be
found on the Wiki page of the GitHub repository at
\url{https://github.com/wannier-developers/wannier90/wiki/FAQ}.

\section*{Citation}
We ask that you acknowledge the use of \wannier\ in any publications
Expand Down
4 changes: 2 additions & 2 deletions doc/user_guide/user_guide.tex
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@

\title{{\tt wannier90}: User Guide}

\author{Version 2.1.0}
\author{Version 3.0}

\date{13th January 2017}
\date{28th February 2019}
%\date{\color{red} \today}


Expand Down
12 changes: 9 additions & 3 deletions examples/README
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,14 @@ example21: Gallium Arsenide - Symmetry-adapted Wannier functions

example22: Copper - Symmetry-adapted Wannier functions

example23 : Silicon - G0W0 bands structure interpolation
example23: Silicon - G0W0 bands structure interpolation
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

example 24 still missing


example25 : Gallium Arsenide - Nonlinear shift current
example24: Tellurium - gyrotropic effects

example26 : Gallium Arsenide - Selective localization and constrained centres
example25: Gallium Arsenide - Nonlinear shift current

example26: Gallium Arsenide - Selective localization and constrained centres

example27: Silicon - Selected columns of density matrix algorithm for automated MLWFs

example28: Diamond - plotting of MLWFs using Gaussian cube format and VESTA
2 changes: 1 addition & 1 deletion src/io.F90
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module w90_io
logical, public, save :: post_proc_flag
!! Are we in post processing mode
! character(len=10), public, parameter:: w90_version='2.1.0 '
character(len=10), public, parameter:: w90_version = '2.1.0+git '
character(len=10), public, parameter:: w90_version = '3.0 '
!! Label for this version of wannier90

type timing_data
Expand Down