fixed a grammar mistake

This commit is contained in:
Daniele
2021-11-11 16:36:48 +01:00
parent bdc4f7fb18
commit 80efc8839a
4 changed files with 4 additions and 4 deletions

View File

@ -82,7 +82,7 @@ void PairSMATB::compute(int eflag, int vflag)
double dijsq, dij;
double espo, aexpp, qsiexpq, eb_i, Fb, Fr;
double polyval, polyval2, polyval3, polyval4, polyval5;
//sets up the flags for energy caclulations
//sets up the flags for energy calculations
if (eflag || vflag) {
ev_setup(eflag, vflag);
eng_vdwl = 0;

View File

@ -49,7 +49,7 @@ class PairSMATB : public Pair {
virtual void allocate();
// allocated size of per-atom arrays
int nmax;
//allocated to store up caclulation values
//allocated to store up calculation values
double *on_eb{nullptr};
// interaction radius, user-given
double **r0{nullptr};

View File

@ -66,7 +66,7 @@ void PairSMATBSingle::compute(int eflag, int vflag)
double dijsq, dij;
double espo, aexpp, qsiexpq, eb_i, Fb, Fr;
double polyval, polyval2, polyval3, polyval4, polyval5;
//sets up the flags for energy caclulations
//sets up the flags for energy calculations
if (eflag || vflag) {
ev_setup(eflag, vflag);
eng_vdwl = 0;

View File

@ -49,7 +49,7 @@ class PairSMATBSingle : public Pair {
virtual void allocate();
// allocated size of per-atom arrays
int nmax;
//allocated to store up caclulation values
//allocated to store up calculation values
double *on_eb{nullptr};
// interaction radius, user-given
double r0;