/* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator http://lammps.sandia.gov, Sandia National Laboratories Steve Plimpton, sjplimp@sandia.gov Copyright (2003) Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the GNU General Public License. See the README file in the top-level LAMMPS directory. ------------------------------------------------------------------------- */ #include "math.h" #include "mpi.h" #include "min_sd.h" #include "atom.h" #include "update.h" #include "output.h" #include "timer.h" using namespace LAMMPS_NS; #define EPS_ENERGY 1.0e-8 enum{FAIL,MAXITER,MAXEVAL,ETOL,FTOL}; // same as in other min classes /* ---------------------------------------------------------------------- */ MinSD::MinSD(LAMMPS *lmp) : MinCG(lmp) {} /* ---------------------------------------------------------------------- minimization via steepest descent ------------------------------------------------------------------------- */ int MinSD::iterate(int n) { int i,fail,ntimestep; double dot,dotall; double *f; f = atom->f[0]; for (int i = 0; i < ndof; i++) h[i] = f[i]; neval = 0; for (niter = 0; niter < n; niter++) { ntimestep = ++update->ntimestep; // line minimization along direction h from current atom->x eprevious = ecurrent; fail = (this->*linemin)(ndof,atom->x[0],h,ecurrent,dmin,dmax, alpha_final,neval); if (fail) return FAIL; // function evaluation criterion if (neval >= update->max_eval) return MAXEVAL; // energy tolerance criterion if (fabs(ecurrent-eprevious) <= update->etol * 0.5*(fabs(ecurrent) + fabs(eprevious) + EPS_ENERGY)) return ETOL; // force tolerance criterion f = atom->f[0]; dot = 0.0; for (i = 0; i < ndof; i++) dot += f[i]*f[i]; MPI_Allreduce(&dot,&dotall,1,MPI_DOUBLE,MPI_SUM,world); if (dotall < update->ftol * update->ftol) return FTOL; // set h to new f = -Grad(x) for (i = 0; i < ndof; i++) h[i] = f[i]; // output for thermo, dump, restart files if (output->next == ntimestep) { timer->stamp(); output->write(ntimestep); timer->stamp(TIME_OUTPUT); } } return MAXITER; }