Changeset 9f1fee5


Ignore:
Timestamp:
Nov 29, 2017, 11:06:09 PM (7 years ago)
Author:
Frederik Heber <frederik.heber@…>
Branches:
ForceAnnealing_with_BondGraph_continued_betteresults
Children:
0dd99b
Parents:
08470b8
git-author:
Frederik Heber <frederik.heber@…> (08/03/17 09:24:07)
git-committer:
Frederik Heber <frederik.heber@…> (11/29/17 23:06:09)
Message:

ForceAnnealing functions now have better readable time step variables.

  • _TimeStep is the parameter, Old.. and CurrentTimeStep designate the two reference time steps for calculating step width.
  • Split functions into simple step width and using BB step width.
  • TESTFIX: Removed XFAIL from all Python ForceAnnealing tests.
  • TESTFIX: 5-body annealing without bond graph has slightly changed but quality of results is the same.
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/MoleculeAction/ForceAnnealingAction.cpp

    r08470b8 r9f1fee5  
    120120  // perform optimization step
    121121  LOG(1, "Structural optimization.");
    122   optimizer(CurrentStep-1, 1, params.UseBondGraph.get());
     122  optimizer(CurrentStep, 1, params.UseBondGraph.get());
    123123  STATUS("Successfully optimized structure by one step.");
    124124
  • src/Dynamics/ForceAnnealing.hpp

    r08470b8 r9f1fee5  
    9292   *
    9393   *
    94    * \param CurrentTimeStep current time step (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
     94   * \param _TimeStep time step to update (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
    9595   * \param offset offset in matrix file to the first force component
    9696   * \todo This is not yet checked if it is correctly working with DoConstrainedMD set >0.
    9797   */
    9898  void operator()(
    99       const int _CurrentTimeStep,
     99      const int _TimeStep,
    100100      const size_t _offset,
    101101      const bool _UseBondgraph)
    102102  {
     103    const int CurrentTimeStep = _TimeStep-1;
     104    ASSERT( CurrentTimeStep >= 0,
     105        "ForceAnnealing::operator() - a new time step (upon which we work) must already have been copied.");
     106
    103107    // make sum of forces equal zero
    104108    AtomicForceManipulator<T>::correctForceMatrixForFixedCenterOfMass(
    105109        _offset,
    106         _CurrentTimeStep-1>=0 ? _CurrentTimeStep - 1 : 0);
     110        CurrentTimeStep);
    107111
    108112    // are we in initial step? Then set static entities
     
    114118
    115119      // always use atomic annealing on first step
    116       maxComponents = anneal(_CurrentTimeStep);
     120      maxComponents = anneal(_TimeStep);
    117121    } else {
    118122      ++currentStep;
     
    121125      // bond graph annealing is always followed by a normal annealing
    122126      if (_UseBondgraph)
    123         maxComponents = annealWithBondGraph(_CurrentTimeStep);
     127        maxComponents = annealWithBondGraph_BarzilaiBorwein(_TimeStep);
    124128      // cannot store RemnantGradient in Atom's Force as it ruins BB stepwidth calculation
    125129      else
    126         maxComponents = anneal(_CurrentTimeStep);
     130        maxComponents = anneal_BarzilaiBorwein(_TimeStep);
    127131    }
    128132
     
    163167   * We assume that forces have just been calculated.
    164168   *
    165    * \param CurrentTimeStep current time step (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
     169   * \param _TimeStep time step to update (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
    166170   * \return to be filled with maximum force component over all atoms
    167171   */
    168172  Vector anneal(
    169       const int CurrentTimeStep)
     173      const int _TimeStep)
    170174  {
     175    const int CurrentTimeStep = _TimeStep-1;
     176    ASSERT( CurrentTimeStep >= 0,
     177        "ForceAnnealing::anneal() - a new time step (upon which we work) must already have been copied.");
     178
     179    LOG(1, "STATUS: performing simple anneal with default stepwidth " << currentDeltat << " at step #" << currentStep);
     180
    171181    Vector maxComponents;
    172182    bool deltat_decreased = false;
     
    174184        iter != AtomicForceManipulator<T>::atoms.end(); ++iter) {
    175185      // atom's force vector gives steepest descent direction
    176       const Vector oldPosition = (*iter)->getPositionAtStep(CurrentTimeStep-1 >= 0 ? CurrentTimeStep - 1 : 0);
    177186      const Vector currentPosition = (*iter)->getPositionAtStep(CurrentTimeStep);
    178       const Vector oldGradient = (*iter)->getAtomicForceAtStep(CurrentTimeStep-1 >= 0 ? CurrentTimeStep - 1 : 0);
    179187      const Vector currentGradient = (*iter)->getAtomicForceAtStep(CurrentTimeStep);
    180       LOG(4, "DEBUG: oldPosition for atom " << **iter << " is " << oldPosition);
    181       LOG(4, "DEBUG: currentPosition for atom " << **iter << " is " << currentPosition);
    182       LOG(4, "DEBUG: oldGradient for atom " << **iter << " is " << oldGradient);
    183       LOG(4, "DEBUG: currentGradient for atom " << **iter << " is " << currentGradient);
     188      LOG(4, "DEBUG: currentPosition for atom #" << (*iter)->getId() << " is " << currentPosition);
     189      LOG(4, "DEBUG: currentGradient for atom #" << (*iter)->getId() << " is " << currentGradient);
    184190//      LOG(4, "DEBUG: Force for atom " << **iter << " is " << currentGradient);
    185191
    186192      // we use Barzilai-Borwein update with position reversed to get descent
    187       const double stepwidth = getBarzilaiBorweinStepwidth(
    188           currentPosition - oldPosition, currentGradient - oldGradient);
     193      double stepwidth = currentDeltat;
    189194      Vector PositionUpdate = stepwidth * currentGradient;
    190195      LOG(3, "DEBUG: Update would be " << stepwidth << "*" << currentGradient << " = " << PositionUpdate);
     
    197202      // have different sign: Check whether this is the case and one step with
    198203      // deltat to interrupt this sequence
    199       const Vector PositionDifference = currentPosition - oldPosition;
    200       if ((currentStep > 1) && (!PositionDifference.IsZero()))
     204      if (currentStep > 1) {
     205        const int OldTimeStep = CurrentTimeStep-1;
     206        ASSERT( OldTimeStep >= 0,
     207            "ForceAnnealing::anneal() - if currentStep is "+toString(currentStep)
     208            +", then there should be at least three time steps.");
     209        const Vector oldPosition = (*iter)->getPositionAtStep(OldTimeStep);
     210        const Vector PositionDifference = currentPosition - oldPosition;
     211        LOG(4, "DEBUG: oldPosition for atom #" << (*iter)->getId() << " is " << oldPosition);
     212        LOG(4, "DEBUG: PositionDifference for atom #" << (*iter)->getId() << " is " << PositionDifference);
    201213        if ((PositionUpdate.ScalarProduct(PositionDifference) < 0)
    202214            && (fabs(PositionUpdate.NormSquared()-PositionDifference.NormSquared()) < 1e-3)) {
     
    210222              << ", using deltat: " << currentDeltat);
    211223          PositionUpdate = currentDeltat * currentGradient;
     224        }
    212225      }
    213226
    214227      // finally set new values
    215       (*iter)->setPosition(currentPosition + PositionUpdate);
     228      (*iter)->setPositionAtStep(_TimeStep, currentPosition + PositionUpdate);
     229    }
     230
     231    return maxComponents;
     232  }
     233
     234  /** Performs Gradient optimization on the atoms using BarzilaiBorwein step width.
     235   *
     236   * \note this can only be called when there are at least two optimization
     237   * time steps present, i.e. this must be preceeded by a simple anneal().
     238   *
     239   * We assume that forces have just been calculated.
     240   *
     241   * \param _TimeStep time step to update (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
     242   * \return to be filled with maximum force component over all atoms
     243   */
     244  Vector anneal_BarzilaiBorwein(
     245      const int _TimeStep)
     246  {
     247    const int OldTimeStep = _TimeStep-2;
     248    const int CurrentTimeStep = _TimeStep-1;
     249    ASSERT( OldTimeStep >= 0,
     250        "ForceAnnealing::anneal_BarzilaiBorwein() - we need two present optimization steps to compute stepwidth.");
     251    ASSERT(currentStep > 1,
     252        "ForceAnnealing::anneal_BarzilaiBorwein() - we need two present optimization steps to compute stepwidth.");
     253
     254    LOG(1, "STATUS: performing BarzilaiBorwein anneal at step #" << currentStep);
     255
     256    Vector maxComponents;
     257    bool deltat_decreased = false;
     258    for(typename AtomSetMixin<T>::iterator iter = AtomicForceManipulator<T>::atoms.begin();
     259        iter != AtomicForceManipulator<T>::atoms.end(); ++iter) {
     260      // atom's force vector gives steepest descent direction
     261      const Vector oldPosition = (*iter)->getPositionAtStep(OldTimeStep);
     262      const Vector currentPosition = (*iter)->getPositionAtStep(CurrentTimeStep);
     263      const Vector oldGradient = (*iter)->getAtomicForceAtStep(OldTimeStep);
     264      const Vector currentGradient = (*iter)->getAtomicForceAtStep(CurrentTimeStep);
     265      LOG(4, "DEBUG: oldPosition for atom #" << (*iter)->getId() << " is " << oldPosition);
     266      LOG(4, "DEBUG: currentPosition for atom #" << (*iter)->getId() << " is " << currentPosition);
     267      LOG(4, "DEBUG: oldGradient for atom #" << (*iter)->getId() << " is " << oldGradient);
     268      LOG(4, "DEBUG: currentGradient for atom #" << (*iter)->getId() << " is " << currentGradient);
     269//      LOG(4, "DEBUG: Force for atom #" << (*iter)->getId() << " is " << currentGradient);
     270
     271      // we use Barzilai-Borwein update with position reversed to get descent
     272      const Vector PositionDifference = currentPosition - oldPosition;
     273      const Vector GradientDifference = (currentGradient - oldGradient);
     274      double stepwidth = getBarzilaiBorweinStepwidth(PositionDifference, GradientDifference);
     275      Vector PositionUpdate = stepwidth * currentGradient;
     276      LOG(3, "DEBUG: Update would be " << stepwidth << "*" << currentGradient << " = " << PositionUpdate);
     277
     278      // extract largest components for showing progress of annealing
     279      for(size_t i=0;i<NDIM;++i)
     280        maxComponents[i] = std::max(maxComponents[i], fabs(currentGradient[i]));
     281
     282//      // steps may go back and forth again (updates are of same magnitude but
     283//      // have different sign: Check whether this is the case and one step with
     284//      // deltat to interrupt this sequence
     285//      if (!PositionDifference.IsZero())
     286//        if ((PositionUpdate.ScalarProduct(PositionDifference) < 0)
     287//            && (fabs(PositionUpdate.NormSquared()-PositionDifference.NormSquared()) < 1e-3)) {
     288//          // for convergence we want a null sequence here, too
     289//          if (!deltat_decreased) {
     290//            deltat_decreased = true;
     291//            currentDeltat = .5*currentDeltat;
     292//          }
     293//          LOG(2, "DEBUG: Upgrade in other direction: " << PositionUpdate
     294//              << " > " << PositionDifference
     295//              << ", using deltat: " << currentDeltat);
     296//          PositionUpdate = currentDeltat * currentGradient;
     297//      }
     298
     299      // finally set new values
     300      (*iter)->setPositionAtStep(_TimeStep, currentPosition + PositionUpdate);
    216301    }
    217302
     
    256341  }
    257342
    258   /** Performs Gradient optimization on the bonds.
     343  /** Performs Gradient optimization on the bonds with BarzilaiBorwein stepwdith.
     344   *
     345   * \note this can only be called when there are at least two optimization
     346   * time steps present, i.e. this must be preceeded by a simple anneal().
    259347   *
    260348   * We assume that forces have just been calculated. These forces are projected
     
    263351   *
    264352   *
    265    * \param CurrentTimeStep current time step (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
     353   * \param _TimeStep time step to update (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
    266354   * \param maxComponents to be filled with maximum force component over all atoms
    267355   */
    268   Vector annealWithBondGraph(
    269       const int CurrentTimeStep)
     356  Vector annealWithBondGraph_BarzilaiBorwein(
     357      const int _TimeStep)
    270358  {
     359    const int OldTimeStep = _TimeStep-2;
     360    const int CurrentTimeStep = _TimeStep-1;
     361    ASSERT(OldTimeStep >= 0,
     362        "annealWithBondGraph_BarzilaiBorwein() - we need two present optimization steps to compute stepwidth, and the new one to update on already present.");
     363    ASSERT(currentStep > 1,
     364        "annealWithBondGraph_BarzilaiBorwein() - we need two present optimization steps to compute stepwidth.");
     365
     366    LOG(1, "STATUS: performing BarzilaiBorwein anneal on bonds at step #" << currentStep);
     367
    271368    Vector maxComponents;
    272369
     
    309406        AtomicForceManipulator<T>::atoms.begin(),
    310407        AtomicForceManipulator<T>::atoms.end(),
    311         CurrentTimeStep);
     408        _TimeStep); // use time step to update here as this is the current set of bonds
    312409    const BondVectors::container_t &sorted_bonds = bv.getSorted();
    313410
     
    328425    RemnantGradient_per_atom_t RemnantGradient_per_atom;
    329426    for (size_t timestep = 0; timestep <= 1; ++timestep) {
    330       const size_t CurrentStep = CurrentTimeStep-timestep-1 >= 0 ? CurrentTimeStep-timestep-1 : 0;
    331       LOG(2, "DEBUG: CurrentTimeStep is " << CurrentTimeStep
     427      const size_t ReferenceTimeStep = CurrentTimeStep-timestep;
     428      LOG(2, "DEBUG: given time step is " << _TimeStep
    332429          << ", timestep is " << timestep
    333           << ", and CurrentStep is " << CurrentStep);
     430          << ", and ReferenceTimeStep is " << ReferenceTimeStep);
    334431
    335432      for(typename AtomSetMixin<T>::const_iterator iter = AtomicForceManipulator<T>::atoms.begin();
    336433          iter != AtomicForceManipulator<T>::atoms.end(); ++iter) {
    337434        const atom &walker = *(*iter);
    338         const Vector &walkerGradient = walker.getAtomicForceAtStep(CurrentStep);
     435        const Vector &walkerGradient = walker.getAtomicForceAtStep(ReferenceTimeStep);
    339436        LOG(3, "DEBUG: Gradient of atom #" << walker.getId() << ", namely "
    340437            << walker << " is " << walkerGradient << " with magnitude of "
     
    346443          // gather subset of BondVectors for the current atom
    347444          const std::vector<Vector> BondVectors =
    348               bv.getAtomsBondVectorsAtStep(walker, CurrentStep);
     445              bv.getAtomsBondVectorsAtStep(walker, ReferenceTimeStep);
    349446
    350447          // go through all its bonds and calculate what magnitude is represented
     
    353450              weights_per_atom[timestep].insert(
    354451                  std::make_pair(walker.getId(),
    355                   bv.getWeightsForAtomAtStep(walker, BondVectors, CurrentStep)) );
     452                  bv.getWeightsForAtomAtStep(walker, BondVectors, ReferenceTimeStep)) );
    356453          ASSERT( inserter.second,
    357454              "ForceAnnealing::operator() - weight map for atom "+toString(walker)
     
    441538        LOG(4, "DEBUG: current projected gradient for "
    442539            << (side == leftside ? "left" : "right") << " side of bond is " << currentGradient);
    443         const Vector &oldPosition = bondatom[side]->getPositionAtStep(CurrentTimeStep-2 >= 0 ? CurrentTimeStep - 2 : 0);
    444         const Vector &currentPosition = bondatom[side]->getPositionAtStep(CurrentTimeStep-1>=0 ? CurrentTimeStep - 1 : 0);
     540        const Vector &oldPosition = bondatom[side]->getPositionAtStep(OldTimeStep);
     541        const Vector &currentPosition = bondatom[side]->getPositionAtStep(CurrentTimeStep);
    445542        const Vector PositionDifference = currentPosition - oldPosition;
    446543        LOG(4, "DEBUG: old position is " << oldPosition);
     
    491588      atom &walker = *(*iter);
    492589      // extract largest components for showing progress of annealing
    493       const Vector currentGradient = walker.getAtomicForceAtStep(CurrentTimeStep-1>=0 ? CurrentTimeStep-1 : 0);
     590      const Vector currentGradient = walker.getAtomicForceAtStep(CurrentTimeStep);
    494591      for(size_t i=0;i<NDIM;++i)
    495592        maxComponents[i] = std::max(maxComponents[i], fabs(currentGradient[i]));
    496 
    497       // reset force vector for next step except on final one
    498       if (currentStep != maxSteps)
    499         walker.setAtomicForce(zeroVec);
    500593    }
    501594
     
    521614      LOG(3, "DEBUG: Applying update " << update << " to atom #" << atomid
    522615          << ", namely " << *walker);
    523       walker->setPosition(
    524           walker->getPositionAtStep(CurrentTimeStep-1>=0 ? CurrentTimeStep - 1 : 0)
     616      walker->setPositionAtStep(_TimeStep,
     617          walker->getPositionAtStep(CurrentTimeStep)
    525618          + update - CommonTranslation);
    526       walker->setAtomicVelocity(update);
    527619//      walker->setAtomicForce( RemnantGradient_per_atom[walker->getId()] );
    528620    }
  • tests/Python/ForceAnnealing/post/five_carbon_test_no-bondgraph.data

    r08470b8 r9f1fee5  
    3131C       5       12.3868 10      10      0       0       0       0.0975274       0       0       4       0       0       0       
    3232# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    33 C       1       5.99167 10      10      0       0       0       -0.0302901      0       0       2       0       0       0       
    34 C       2       7.53443 10      10      0       0       0       0.0621625       0       0       1       3       0       0       
     33C       1       5.99318 10      10      0       0       0       -0.0310892      0       0       2       0       0       0       
     34C       2       7.53443 10      10      0       0       0       0.0629615       0       0       1       3       0       0       
    3535C       3       9.19466 10      10      0       0       0       -0.0637606      0       0       2       4       0       0       
    36 C       4       10.7344 10      10      0       0       0       0.0622101       0       0       3       5       0       0       
    37 C       5       12.3917 10      10      0       0       0       -0.0303219      0       0       4       0       0       0       
     36C       4       10.7344 10      10      0       0       0       0.0630038       0       0       3       5       0       0       
     37C       5       12.3932 10      10      0       0       0       -0.0311156      0       0       4       0       0       0       
    3838# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    39 C       1       5.99092 10      10      0       0       0       -0.00303219     0       0       2       0       0       0       
    40 C       2       7.58519 10      10      0       0       0       0.000820225     0       0       1       3       0       0       
    41 C       3       9.18101 10      10      0       0       0       0.00442921      0       0       2       4       0       0       
    42 C       4       10.7852 10      10      0       0       0       0.000799058     0       0       3       5       0       0       
    43 C       5       12.3909 10      10      0       0       0       -0.00301631     0       0       4       0       0       0       
     39C       1       5.99164 10      10      0       0       0       -0.00314331     0       0       2       0       0       0       
     40C       2       7.5857  10      10      0       0       0       0.000661472     0       0       1       3       0       0       
     41C       3       9.18101 10      10      0       0       0       0.00496368      0       0       2       4       0       0       
     42C       4       10.7857 10      10      0       0       0       0.000640304     0       0       3       5       0       0       
     43C       5       12.3916 10      10      0       0       0       -0.00312215     0       0       4       0       0       0       
    4444# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    45 C       1       5.99083 10      10      0       0       0       -0.00263001     0       0       2       0       0       0       
    46 C       2       7.58586 10      10      0       0       0       8.99601e-05     0       0       1       3       0       0       
    47 C       3       9.18106 10      10      0       0       0       0.00510127      0       0       2       4       0       0       
    48 C       4       10.7859 10      10      0       0       0       3.17506e-05     0       0       3       5       0       0       
    49 C       5       12.3908 10      10      0       0       0       -0.00259297     0       0       4       0       0       0       
     45C       1       5.99146 10      10      0       0       0       -0.00276231     0       0       2       0       0       0       
     46C       2       7.58624 10      10      0       0       0       0.000513302     0       0       1       3       0       0       
     47C       3       9.18199 10      10      0       0       0       0.00447684      0       0       2       4       0       0       
     48C       4       10.7862 10      10      0       0       0       0.000576803     0       0       3       5       0       0       
     49C       5       12.3915 10      10      0       0       0       -0.00280464     0       0       4       0       0       0       
    5050# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    51 C       1       5.99028 10      10      0       0       0       -0.00229134     0       0       2       0       0       0       
    52 C       2       7.58595 10      10      0       0       0       -7.40848e-05    0       0       1       3       0       0       
    53 C       3       9.18148 10      10      0       0       0       0.00470439      0       0       2       4       0       0       
    54 C       4       10.7859 10      10      0       0       0       -1.05835e-05    0       0       3       5       0       0       
    55 C       5       12.3903 10      10      0       0       0       -0.00232838     0       0       4       0       0       0       
     51C       1       5.99021 10      10      0       0       0       -0.00110069     0       0       2       0       0       0       
     52C       2       7.58813 10      10      0       0       0       0.00265118      0       0       1       3       0       0       
     53C       3       9.19106 10      10      0       0       0       -0.00158224     0       0       2       4       0       0       
     54C       4       10.791  10      10      0       0       0       -0.000497427    0       0       3       5       0       0       
     55C       5       12.39   10      10      0       0       0       0.000529177     0       0       4       0       0       0       
    5656# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    57 C       1       5.98655 10      10      0       0       0       -0.000317506    0       0       2       0       0       0       
    58 C       2       7.58595 10      10      0       0       0       0.000587387     0       0       1       3       0       0       
    59 C       3       9.18646 10      10      0       0       0       -0.00056622     0       0       2       4       0       0       
    60 C       4       10.7859 10      10      0       0       0       0.000243422     0       0       3       5       0       0       
    61 C       5       12.3858 10      10      0       0       0       5.29177e-05     0       0       4       0       0       0       
     57C       1       5.98937 10      10      0       0       0       0.000582095     0       0       2       0       0       0       
     58C       2       7.59047 10      10      0       0       0       -0.00152403     0       0       1       3       0       0       
     59C       3       9.18869 10      10      0       0       0       0.00100015      0       0       2       4       0       0       
     60C       4       10.7888 10      10      0       0       0       0.000682639     0       0       3       5       0       0       
     61C       5       12.3902 10      10      0       0       0       -0.000740848    0       0       4       0       0       0       
    6262# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    63 C       1       5.98596 10      10      0       0       0       -5.29177e-06    0       0       2       0       0       0       
    64 C       2       7.58595 10      10      0       0       0       0.000275172     0       0       1       3       0       0       
    65 C       3       9.18646 10      10      0       0       0       -0.00056622     0       0       2       4       0       0       
    66 C       4       10.7859 10      10      0       0       0       0.000243422     0       0       3       5       0       0       
    67 C       5       12.3858 10      10      0       0       0       5.29177e-05     0       0       4       0       0       0       
     63C       1       5.98966 10      10      0       0       0       -2.64589e-05    0       0       2       0       0       0       
     64C       2       7.58961 10      10      0       0       0       2.64589e-05     0       0       1       3       0       0       
     65C       3       9.18961 10      10      0       0       0       0.000259297     0       0       2       4       0       0       
     66C       4       10.7901 10      10      0       0       0       -0.000259297    0       0       3       5       0       0       
     67C       5       12.3901 10      10      0       0       0       0       0       0       4       0       0       0       
    6868# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    69 C       1       5.98595 10      10      0       0       0       -9.48677e-21    0       0       2       0       0       0       
    70 C       2       7.58595 10      10      0       0       0       0.00026988      0       0       1       3       0       0       
    71 C       3       9.18646 10      10      0       0       0       -0.00056622     0       0       2       4       0       0       
    72 C       4       10.7859 10      10      0       0       0       0.000243422     0       0       3       5       0       0       
    73 C       5       12.3858 10      10      0       0       0       5.29177e-05     0       0       4       0       0       0       
     69C       1       5.98965 10      10      0       0       0       -1.05835e-05    0       0       2       0       0       0       
     70C       2       7.58963 10      10      0       0       0       0.000169337     0       0       1       3       0       0       
     71C       3       9.18993 10      10      0       0       0       -0.000280464    0       0       2       4       0       0       
     72C       4       10.7897 10      10      0       0       0       0.000333382     0       0       3       5       0       0       
     73C       5       12.3901 10      10      0       0       0       -0.000211671    0       0       4       0       0       0       
    7474# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    75 C       1       5.98595 10      10      0       0       0       4.23342e-05     0       0       2       0       0       0       
    76 C       2       7.58603 10      10      0       0       0       0.000185212     0       0       1       3       0       0       
    77 C       3       9.18646 10      10      0       0       0       -0.000523885    0       0       2       4       0       0       
    78 C       4       10.7859 10      10      0       0       0       0.000243422     0       0       3       5       0       0       
    79 C       5       12.3858 10      10      0       0       0       5.29177e-05     0       0       4       0       0       0       
     75C       1       5.98964 10      10      0       0       0       1.35525e-21     0       0       2       0       0       0       
     76C       2       7.58964 10      10      0       0       0       6.35013e-05     0       0       1       3       0       0       
     77C       3       9.18976 10      10      0       0       0       1.05835e-05     0       0       2       4       0       0       
     78C       4       10.7899 10      10      0       0       0       -2.11671e-05    0       0       3       5       0       0       
     79C       5       12.39   10      10      0       0       0       -5.29177e-05    0       0       4       0       0       0       
    8080# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    81 C       1       5.98595 10      10      0       0       0       0.000137586     0       0       2       0       0       0       
    82 C       2       7.58621 10      10      0       0       0       -1.58753e-05    0       0       1       3       0       0       
    83 C       3       9.18644 10      10      0       0       0       -0.000407466    0       0       2       4       0       0       
    84 C       4       10.7859 10      10      0       0       0       0.000232838     0       0       3       5       0       0       
    85 C       5       12.3858 10      10      0       0       0       5.29177e-05     0       0       4       0       0       0       
     81C       1       5.98964 10      10      0       0       0       5.29177e-06     0       0       2       0       0       0       
     82C       2       7.58965 10      10      0       0       0       5.82095e-05     0       0       1       3       0       0       
     83C       3       9.18977 10      10      0       0       0       5.29177e-06     0       0       2       4       0       0       
     84C       4       10.7899 10      10      0       0       0       -1.58753e-05    0       0       3       5       0       0       
     85C       5       12.39   10      10      0       0       0       -5.29177e-05    0       0       4       0       0       0       
    8686# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    87 C       1       5.98595 10      10      0       0       0       0.000137586     0       0       2       0       0       0       
    88 C       2       7.58621 10      10      0       0       0       -5.82095e-05    0       0       1       3       0       0       
    89 C       3       9.18636 10      10      0       0       0       -0.000322798    0       0       2       4       0       0       
    90 C       4       10.7859 10      10      0       0       0       0.000190504     0       0       3       5       0       0       
    91 C       5       12.3858 10      10      0       0       0       5.29177e-05     0       0       4       0       0       0       
     87C       1       5.98964 10      10      0       0       0       6.8793e-05      0       0       2       0       0       0       
     88C       2       7.58977 10      10      0       0       0       -6.8793e-05     0       0       1       3       0       0       
     89C       3       9.18977 10      10      0       0       0       6.8793e-05      0       0       2       4       0       0       
     90C       4       10.7899 10      10      0       0       0       -1.58753e-05    0       0       3       5       0       0       
     91C       5       12.39   10      10      0       0       0       -5.29177e-05    0       0       4       0       0       0       
    9292# ATOMDATA      type    Id      x=3     u=3     F=3     neighbors=4
    93 C       1       5.98595 10      10      0       0       0       0       0       0       2       0       0       0       
    94 C       2       7.58621 10      10      0       0       0       0       0       0       1       3       0       0       
    95 C       3       9.18607 10      10      0       0       0       0       0       0       2       4       0       0       
    96 C       4       10.786  10      10      0       0       0       0       0       0       3       5       0       0       
    97 C       5       12.3858 10      10      0       0       0       0       0       0       4       0       0       0       
     93C       1       5.98964 10      10      0       0       0       0       0       0       2       0       0       0       
     94C       2       7.58971 10      10      0       0       0       0       0       0       1       3       0       0       
     95C       3       9.18978 10      10      0       0       0       0       0       0       2       4       0       0       
     96C       4       10.7899 10      10      0       0       0       0       0       0       3       5       0       0       
     97C       5       12.39   10      10      0       0       0       0       0       0       4       0       0       0       
  • tests/Python/ForceAnnealing/testsuite-python-forceannealing-ising.at

    r08470b8 r9f1fee5  
    3232AT_SETUP([Python externalization - Force Annealing without bondgraph on 5-body Ising model])
    3333AT_KEYWORDS([python force-annealing ising])
    34 AT_XFAIL_IF([/bin/true])
    3534
    3635# we use forces from a simple Ising model with 5 "carbon" atoms in a row along the x axis
     
    3837file=five_carbon_test.data
    3938AT_CHECK([../../run ${abs_top_srcdir}/tests/Python/ForceAnnealing/pre/ising_model_chain.py ./$file ./ 15 5 "0"], 0, [stdout], [ignore])
    40 AT_CHECK([grep "Largest remaining force components.*0.0001" stdout], 0, [ignore], [ignore])
     39AT_CHECK([grep "Largest remaining force components.*e-05" stdout], 0, [ignore], [ignore])
    4140AT_CHECK([diff $file ${abs_top_srcdir}/tests/Python/ForceAnnealing/post/five_carbon_test_no-bondgraph.data], 0, [ignore], [ignore])
    4241
     
    4544AT_SETUP([Python externalization - Force Annealing with bondgraph on 2-body Ising model])
    4645AT_KEYWORDS([python force-annealing ising bondgraph])
    47 AT_XFAIL_IF([/bin/true])
    4846
    4947# we use forces from a simple Ising model with 2 "carbon" atoms in a row along the x axis
     
    5856AT_SETUP([Python externalization - Force Annealing with bondgraph on 5-body Ising model])
    5957AT_KEYWORDS([python force-annealing ising bondgraph])
    60 AT_XFAIL_IF([/bin/true])
    6158
    6259# we use forces from a simple Ising model with 5 "carbon" atoms in a row along the x axis
Note: See TracChangeset for help on using the changeset viewer.