Skip to content
Snippets Groups Projects
Commit 991034b6 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

have bond style table exit when bond length is outside table range

parent a2e34aab
No related branches found
No related tags found
No related merge requests found
...@@ -585,17 +585,26 @@ double BondTable::splint(double *xa, double *ya, double *y2a, int n, double x) ...@@ -585,17 +585,26 @@ double BondTable::splint(double *xa, double *ya, double *y2a, int n, double x)
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
calculate potential u and force f at distance x calculate potential u and force f at distance x
insure x is between bond min/max insure x is between bond min/max, exit with error if not
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
void BondTable::uf_lookup(int type, double x, double &u, double &f) void BondTable::uf_lookup(int type, double x, double &u, double &f)
{ {
int itable; int itable;
double fraction,a,b; double fraction,a,b;
char estr[128];
Table *tb = &tables[tabindex[type]]; Table *tb = &tables[tabindex[type]];
x = MAX(x,tb->lo); if (x < tb->lo) {
x = MIN(x,tb->hi); sprintf(estr,"Bond length < table inner cutoff: "
"type %d length %g",type,x);
error->one(FLERR,estr);
}
if (x > tb->hi) {
sprintf(estr,"Bond length > table outer cutoff: "
"type %d length %g",type,x);
error->one(FLERR,estr);
}
if (tabstyle == LINEAR) { if (tabstyle == LINEAR) {
itable = static_cast<int> ((x - tb->lo) * tb->invdelta); itable = static_cast<int> ((x - tb->lo) * tb->invdelta);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment