Skip to content

Commit

Permalink
Add back all the energy terms for further debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Geoff Hutchison <geoff.hutchison@gmail.com>
  • Loading branch information
ghutchis committed Feb 17, 2025
1 parent 2dabadc commit 671d346
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions avogadro/calc/uff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -916,11 +916,11 @@ Real UFF::value(const Eigen::VectorXd& x)
// angle component
energy += d->angleEnergies(x);
// torsion component
// energy += d->torsionEnergies(x);
energy += d->torsionEnergies(x);
// out-of-plane component
// energy += d->oopEnergies(x);
energy += d->oopEnergies(x);
// van der Waals component
// energy += d->vdwEnergies(x);
energy += d->vdwEnergies(x);
// UFF doesn't have electrostatics
return energy;
}
Expand Down

0 comments on commit 671d346

Please sign in to comment.