Skip to content

Commit

Permalink
Merge pull request #61 from molssi-seamm/dev
Browse files Browse the repository at this point in the history
Installation issue
  • Loading branch information
seamm authored Feb 7, 2025
2 parents 0cb6c24 + aa6c5a6 commit 3372008
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
=======
History
=======
2025.2.7 -- Installation issue
* Encountered problems with the OpenMPI version of LAMMPS and with the installation
of OpenKIM, so fixed the CONDA environment file to correct.
* Changed logging at the INFO level to DEBUG to reduce the output when using geomeTRIC.

2024.8.22 -- Bugfix: error in number of cores.
* Fixed an error if options for number of cores were strings, not numbers.

Expand Down
5 changes: 2 additions & 3 deletions lammps_step/data/seamm-lammps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ channels:
dependencies:
- python
# Executables, etc.
- openmpi
- lammps * *mpi_openmpi*
- openkim-models
- lammps * *mpi_mpich*
- kim-api
- mpi4py
3 changes: 1 addition & 2 deletions lammps_step/heat_flux.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# -*- coding: utf-8 -*-

"""Non-graphical part of the Heat Flux step in a LAMMPS flowchart
"""
"""Non-graphical part of the Heat Flux step in a LAMMPS flowchart"""

import json

Expand Down
4 changes: 2 additions & 2 deletions lammps_step/lammps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2256,7 +2256,7 @@ def read_dump(self, dumpfile):
dumpfile : str
The filename (or path) to the dumpfile.
"""
self.logger.info("Reading dump file '{}'".format(dumpfile))
self.logger.debug("Reading dump file '{}'".format(dumpfile))

system_db = self.get_variable("_system_db")
configuration = system_db.system.configuration
Expand Down Expand Up @@ -2535,7 +2535,7 @@ def get_dump(self, dumpfile):
dumpfile : str
The filename (or path) to the dumpfile.
"""
self.logger.info("Reading dump file '{}'".format(dumpfile))
self.logger.debug("Reading dump file '{}'".format(dumpfile))

# system_db = self.get_variable("_system_db")
# configuration = system_db.system.configuration
Expand Down

0 comments on commit 3372008

Please sign in to comment.