Class LinearAnnealSchedule

java.lang.Object
ffx.algorithms.optimize.anneal.LinearAnnealSchedule
All Implemented Interfaces:
AnnealingSchedule

public class LinearAnnealSchedule extends Object implements AnnealingSchedule
Linear temperature schedule for simulated annealing
Since:
1.0
Author:
Jacob M. Litman, Michael J. Schnieders
  • Constructor Summary

    Constructors
    Constructor
    Description
    LinearAnnealSchedule(int nWindows, double tLow, double tHigh)
    Creates an exponential annealing schedule that decays as tHigh-(n*(tHigh-tLow)).
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Gets the starting temperature.
    double
    Gets the final temperature.
    int
    Gets the number of annealing windows (including repeat windows).
    double
    Get the temperature for annealing step i.
    double[]
    Get all temperatures this schedule specifies.
    double
    Returns the longest window to be used (normalized to the number of MD steps in a "regular" window).
    double
    Returns the shortest window to be used (normalized to the number of MD steps in a "regular" window).
     
    double
    Returns the sum of window lengths to be used (normalized to the number of MD steps in a "regular" window).
    double
    windowLength(int window)
    Get the relative size of a window (normalized to the number of MD steps in a "regular" window).

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • LinearAnnealSchedule

      public LinearAnnealSchedule(int nWindows, double tLow, double tHigh)
      Creates an exponential annealing schedule that decays as tHigh-(n*(tHigh-tLow)).
      Parameters:
      nWindows - Number of windows.
      tLow - Low temperature bound.
      tHigh - High temperature bound.
  • Method Details

    • getHighTemp

      public double getHighTemp()
      Description copied from interface: AnnealingSchedule
      Gets the starting temperature.
      Specified by:
      getHighTemp in interface AnnealingSchedule
      Returns:
      Starting temperature in Kelvin.
    • getLowTemp

      public double getLowTemp()
      Description copied from interface: AnnealingSchedule
      Gets the final temperature.
      Specified by:
      getLowTemp in interface AnnealingSchedule
      Returns:
      Final temperature in Kelvin.
    • getNumWindows

      public int getNumWindows()
      Description copied from interface: AnnealingSchedule
      Gets the number of annealing windows (including repeat windows).
      Specified by:
      getNumWindows in interface AnnealingSchedule
      Returns:
      Number of annealing windows.
    • getTemperature

      public double getTemperature(int i)
      Description copied from interface: AnnealingSchedule
      Get the temperature for annealing step i.
      Specified by:
      getTemperature in interface AnnealingSchedule
      Parameters:
      i - An annealing step [0-nWindows)
      Returns:
      Associated temperature.
    • getTemperatures

      public double[] getTemperatures()
      Description copied from interface: AnnealingSchedule
      Get all temperatures this schedule specifies.
      Specified by:
      getTemperatures in interface AnnealingSchedule
      Returns:
      An array of temperatures specified.
    • maxWindowLength

      public double maxWindowLength()
      Description copied from interface: AnnealingSchedule
      Returns the longest window to be used (normalized to the number of MD steps in a "regular" window).
      Specified by:
      maxWindowLength in interface AnnealingSchedule
      Returns:
      Maximum normalized window length.
    • minWindowLength

      public double minWindowLength()
      Description copied from interface: AnnealingSchedule
      Returns the shortest window to be used (normalized to the number of MD steps in a "regular" window).
      Specified by:
      minWindowLength in interface AnnealingSchedule
      Returns:
      Minimum normalized window length.
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • totalWindowLength

      public double totalWindowLength()
      Description copied from interface: AnnealingSchedule
      Returns the sum of window lengths to be used (normalized to the number of MD steps in a "regular" window).
      Specified by:
      totalWindowLength in interface AnnealingSchedule
      Returns:
      Total normalized window length.
    • windowLength

      public double windowLength(int window)
      Description copied from interface: AnnealingSchedule
      Get the relative size of a window (normalized to the number of MD steps in a "regular" window).
      Specified by:
      windowLength in interface AnnealingSchedule
      Parameters:
      window - Window to check.
      Returns:
      Normalized length of the window.