Merge branch 'develop' into Elastic_stress

This commit is contained in:
Axel Kohlmeyer
2022-04-23 04:35:23 -04:00
138 changed files with 2294 additions and 2361 deletions

View File

@ -354,3 +354,15 @@ double Angle::memory_usage()
bytes += (double) comm->nthreads * maxcvatom * 9 * sizeof(double);
return bytes;
}
/* -----------------------------------------------------------------------
reset all type-based angle params via init()
-------------------------------------------------------------------------- */
void Angle::reinit()
{
if (!reinitflag)
error->all(FLERR, "Fix adapt interface to this angle style not supported");
init();
}