Skip to content

Commit

Permalink
Merge branch 'release/v.0.9.6' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
ttadano committed Sep 14, 2015
2 parents 2514eb2 + c2600e3 commit 41350e6
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 7 deletions.
25 changes: 25 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# Ver. 0.9.6 (2015-09-14)

## New

- New option ICONST=11 for ALM which considers translational invariance algebraically

- FC2XML-tag for ANPHON. Using this tag, it is now possible to employ different size of
supercells for harmonic and anharmonic terms.

- qe2alm.cpp in the tools/ directory which converts Quantum-ESPRESSO fc files to ALAMODE xml files.

## Changes

- Changed the meaning of --calc=cumulative in analyze_phonons.py.
The --calc=cumulative in the previous version is now equivalent to --calc=cumulative2.

- Updated tutorial

## Fix

- Fix bugs related to memory allocation

- Fix an issue in extract.py for QE


# Ver. 0.9.5 (2015-06-28)

## New
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ALAMODE
* Version 0.9.5 (Beta)
* Version 0.9.6 (Beta)

- - -

Expand Down Expand Up @@ -33,7 +33,7 @@ http://alamode.readthedocs.org


## License
Copyright (c) 2014 Terumasa Tadano
Copyright (c) 2014, 2015 Terumasa Tadano
This software is released under the MIT license.
For license rights and limitations, see LICENSE.txt file.

Expand Down
2 changes: 1 addition & 1 deletion alm/alamode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ALM::ALM(int narg, char **arg)
{
std::cout << " +------------------------------------------------------------+" << std::endl;
std::cout << " + Program ALM +" << std::endl;
std::cout << " + Ver. 0.9.5 +" << std::endl;
std::cout << " + Ver. 0.9.6 +" << std::endl;
std::cout << " +------------------------------------------------------------+" << std::endl;
std::cout << std::endl;

Expand Down
2 changes: 1 addition & 1 deletion alm/writes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ void Writes::write_misc_xml()
ptree pt;
std::string str_pos[3];

pt.put("Data.ALM_version", "0.9.5");
pt.put("Data.ALM_version", "0.9.6");
pt.put("Data.Fitting.DisplaceFile", files->file_disp);
pt.put("Data.Fitting.ForceFile", files->file_force);
pt.put("Data.Fitting.Constraint", constraint->constraint_mode);
Expand Down
2 changes: 1 addition & 1 deletion anphon/gruneisen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ void Gruneisen::write_new_fcsxml(const std::string filename_xml, const double ch
ptree pt;
std::string str_pos[3];

pt.put("Data.ANPHON_version", "0.9.5");
pt.put("Data.ANPHON_version", "0.9.6");
pt.put("Data.Description.OriginalXML", fcs_phonon->file_fcs);
pt.put("Data.Description.Delta_A", double2string(change_ratio_of_a));

Expand Down
2 changes: 1 addition & 1 deletion anphon/phonons.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ PHON::PHON(int narg, char **arg, MPI_Comm comm)
if (mympi->my_rank == 0) {
std::cout << " +------------------------------------------------------------+" << std::endl;
std::cout << " + Program ANPHON +" << std::endl;
std::cout << " + Ver. 0.9.5 +" << std::endl;
std::cout << " + Ver. 0.9.6 +" << std::endl;
std::cout << " +------------------------------------------------------------+" << std::endl;

std::cout << std::endl;
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
# The short X.Y version.
version = '0.9'
# The full version, including alpha/beta/rc tags.
release = '0.9.5'
release = '0.9.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 41350e6

Please sign in to comment.