recover compilation

This commit is contained in:
Axel Kohlmeyer 2021-08-17 16:26:59 -04:00
parent 6dafbd2fbe
commit 58a86412ec
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
2 changed files with 2 additions and 2 deletions

View File

@ -260,7 +260,7 @@ void PairILPGrapheneHBN::read_file(char *filename)
// energies in meV further scaled by S
// S = 43.3634 meV = 1 kcal/mol
const double meV = 1e-3*params[nparams].S;
double meV = 1e-3*params[nparams].S;
if (unit_convert) meV *= conversion_factor;
params[nparams].C *= meV;

View File

@ -257,7 +257,7 @@ void PairKolmogorovCrespiFull::read_file(char *filename)
// energies in meV further scaled by S
const double meV = 1.0e-3*params[nparams].S;
double meV = 1.0e-3*params[nparams].S;
if (unit_convert) meV *= conversion_factor;
params[nparams].C *= meV;