Commit 881cc71a authored by Steve Plimpton's avatar Steve Plimpton
Browse files

Merge branch 'master' into hyper

parents ac20d1ab 76b9c004
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -385,6 +385,10 @@ No parameter of this fix can be used with the {start/stop} keywords of
the "run"_run.html command.  This fix is not invoked during "energy
minimization"_minimize.html.

When fix bond/react is 'unfixed,' all internally-created groups are
deleted. Therefore, fix bond/react can only be unfixed after unfixing
all other fixes that use any group created by fix bond/react.

[Restrictions:]

This fix is part of the USER-MISC package.  It is only enabled if
+4 −1
Original line number Diff line number Diff line
@@ -39,7 +39,10 @@ using namespace MathConst;

/* ---------------------------------------------------------------------- */

DihedralHelix::DihedralHelix(LAMMPS *lmp) : Dihedral(lmp) {}
DihedralHelix::DihedralHelix(LAMMPS *lmp) : Dihedral(lmp)
{
  writedata = 1;
}

/* ---------------------------------------------------------------------- */

+4 −1
Original line number Diff line number Diff line
@@ -34,7 +34,10 @@ using namespace LAMMPS_NS;

/* ---------------------------------------------------------------------- */

DihedralMultiHarmonic::DihedralMultiHarmonic(LAMMPS *lmp) : Dihedral(lmp) {}
DihedralMultiHarmonic::DihedralMultiHarmonic(LAMMPS *lmp) : Dihedral(lmp)
{
  writedata = 1;
}

/* ---------------------------------------------------------------------- */

+4 −1
Original line number Diff line number Diff line
@@ -36,7 +36,10 @@ using namespace LAMMPS_NS;

/* ---------------------------------------------------------------------- */

DihedralCosineShiftExp::DihedralCosineShiftExp(LAMMPS *lmp) : Dihedral(lmp) {}
DihedralCosineShiftExp::DihedralCosineShiftExp(LAMMPS *lmp) : Dihedral(lmp)
{
  writedata = 1;
}

/* ---------------------------------------------------------------------- */

+2 −1
Original line number Diff line number Diff line
@@ -35,7 +35,8 @@ using namespace LAMMPS_NS;

/* ---------------------------------------------------------------------- */

DihedralNHarmonic::DihedralNHarmonic(LAMMPS *lmp) : Dihedral(lmp) {
DihedralNHarmonic::DihedralNHarmonic(LAMMPS *lmp) : Dihedral(lmp)
{
  writedata = 1;
}

Loading