Skip to content

Commit 72a6c59

Browse files
authored
Merge pull request #166 from sudarshanv01/make-default-solver
Make numbers solver the default solver.
2 parents 6851783 + 6cefa28 commit 72a6c59

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,12 @@ following commands:
4545
See the [documentation](http://catmap.readthedocs.org) for more details
4646
and tutorials.
4747

48-
[![Analytics](https://suncat-analytics.appspot.com/UA-75027967-2/catmap/githubreadme)](https://github.com/igrigorik/ga-beacon)
48+
49+
## Cite
50+
If you find CatMAP useful to your research, please cite:
51+
> Medford, A. J., Shi, C., Hoffmann, M. J., Lausche, A. C., Fitzgibbon, S. R., Bligaard, T., & Nørskov, J. K. (2015). CatMAP: a software package for descriptor-based microkinetic mapping of catalytic trends. Catalysis Letters, 145, 794-807.
52+
53+
If you are using the current version of CatMAP, please also cite:
54+
> Vijay, S., H. Heenen, H., Singh, A. R., Chan, K., & Voss, J. (2024). Number of sites‐based solver for determining coverages from steady‐state mean‐field micro‐kinetic models. Journal of Computational Chemistry, 45(9), 546-551.
55+
56+
which details the implementation of the numbers solver, the current default solver used by CatMAP for improved numerical stability. The behavior of previous catmap versions ( <=v0.3.2 ) can be reproduced via `use_numbers_solver = False`

catmap/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def load(self, setup_file): #
379379
interaction_fitting_mode=None,
380380
decimal_precision = 75,
381381
verbose = 1,
382-
use_numbers_solver = False,
382+
use_numbers_solver = True,
383383
max_damping_iterations = 10,
384384
fix_x_star = False,
385385
data_file = 'data.pkl',

0 commit comments

Comments
 (0)