Skip to content
Snippets Groups Projects
  1. Dec 02, 2011
    • Giovanni Bussi's avatar
      Gromacs-like replica exchange is there! · 5e9e1494
      Giovanni Bussi authored
      I finally upload the GREX stuff. It seems to work, but I did not really
      debug it (there might be wrong units or so). I also provide a patch
      for gromacs 4.5.3. Interface is still a bit tricky, and probably it
      will be necessary to adapt it a bit as we try to port it to other codes.
      
      The overall flow is:
      * at steps corresponding to attempts, positions/total energy are
        saved on a temporary buffer when normal plumed is called.
      * when repl_ex is called in gromacs (which, in the case of gromacs
        is after moving atoms, so with different positions) and
        the partner replica is decided by gromacs, a fake exchange of all coordinates
        is done inside plumed and a new calculation is also done.
        Notice that since presently all "analysis" tools are acting in the
        calculate() method, they are called once more at this stage. This
        should be fixed.
      * Then, change in local bias potential and foreign bias potential
        are collected by gromacs and added to the acceptance.
      
      Notice that with this approach the plumed.dat files used for different
      replicas could be completely different (but for UNITS! this probably
      can be fixed, even if it seems a bit stupid to me), and, a part from
      trivial errors which could be there, the acceptance
      is evaluated consistently
      5e9e1494
    • Giovanni Bussi's avatar
      File opening tools moved to PlumedMain · 00982e03
      Giovanni Bussi authored
      I moved the tools to open a file with a specific prefix to PlumedMain.
      This allows easily to use them also to open the input file, which in
      turn means that we will be able to do bias-exchange and Hamiltonian
      replica exchange
      00982e03
    • Giovanni Bussi's avatar
      Added tool to recover total bias · 4c8d346e
      Giovanni Bussi authored
      This is useful to compute acceptance.
      I did it in the "dirty" way: if a value named "bias" exist inside any
      action, it is accumulated into the total bias. I also changed the name
      of values in Restraint and MovingRestraint so that the energy is now called
      "bias" and non-capital letters are more consistent
      4c8d346e
    • Giovanni Bussi's avatar
      Added tool to add a suffix to all open files · 9dfbc8f6
      Giovanni Bussi authored
      It is now possible to automatically add a suffix to
      all the files opened through the Action::fopen tool.
      Opening is done as follows:
      First the file+suffix is tried.
      In case of error the file without suffix is tried.
      
      In this manner, it should be possible to provide a single
      input file also for replica exchange stuff. For output files,
      it should make any difference.
      
      I also added a stupid keyword to test this feature. Just use
      _SET_SUFFIX pippo
      in the plumed.dat file to add a suffix pippo to opened files
      9dfbc8f6
    • Giovanni Bussi's avatar
      Added interface to Gromacs-like Replica EXchange · afd1b872
      Giovanni Bussi authored
      I am starting to merge my GREX branch, which should be
      general enough to be used in any REX framework where
      coordinates are swapped (a-la-gromacs). Since GREX
      significantly modifies the MD-PLUMED interface through
      the addition of several new cmd(), I tried to encapsulate
      it as a separate objects with a cmd()-like interface.
      Commands from MD starting with GREX are automatically
      forwarded to that object. E.g.
      plumed_cmd(plumed,"GREX init",NULL);
      or so should initialize the GREX object, etc.
      
      Up to this point I just upload the interface, later
      on I will add the real GREX object, for which I still
      have to do some cleaning.
      afd1b872
    • Giovanni Bussi's avatar
      Splitting performCalc into pieces · c1049ce1
      Giovanni Bussi authored
      In particular, I would like to be able to just do the
      "forward" loop (calculate()) and not the "backward" loop
      (apply()). In this manner, when computing foreign biases
      for acceptance in replica exchange, I will only call the
      forward loop, which computes colvars and biases. Clearly,
      we should move printing/analysis/hills-adding stuff
      outside the "calculate" method, so as to avoid doing these
      things in the acceptance calculation. I wait for this further
      cleaning since, until replica exchange is not actually there,
      there is no practical difference. Also, we may decide to change
      a bit the name of methods (calculate/apply are becoming a bit
      misleading?)
      c1049ce1
    • Giovanni Bussi's avatar
      Moved deactivation of actions to the beginning of calculation. · cdce8cb6
      Giovanni Bussi authored
      Instead of deactivating actions at the end of the step, I prefer
      to deactivate all of them just before activation. In this manner, all
      dependencies are touched in the prepareDependencies method.
      cdce8cb6
    • Giovanni Bussi's avatar
      Added methods to export/import all atoms to/from a string · 477587be
      Giovanni Bussi authored
      It is a very primitive "serialization" interface. I just put it here
      so as to use it with replica exchange to send atoms to other replicas.
      Still, we should plan something more general than this and replace it,
      especially when we will need to pass between replica more complex objects.
      477587be
    • Giovanni Bussi's avatar
      Added possibility of sharing all atoms instead of only those used · 689a54e6
      Giovanni Bussi authored
      This will be necessary for replica exchange
      689a54e6
    • Giovanni Bussi's avatar
      Added further MPI types · 9c03b7b1
      Giovanni Bussi authored
      9c03b7b1
    • Giovanni Bussi's avatar
      Fixed missing const in Isend interface · c8145d41
      Giovanni Bussi authored
      c8145d41
    • Giovanni Bussi's avatar
      Small (irrelevant) cleanup in header files · ee871334
      Giovanni Bussi authored
      I also removed an "included" added by Davide a few commits ago. I think
      it should not be here, but if it is necessary on some compiler we can
      reinsert it. However, we should use "cstring" and not "string.h"
      ee871334
  2. Sep 21, 2011
    • Giovanni Bussi's avatar
      Bug fix in Barrier() · a79e9018
      Giovanni Bussi authored
      wrong behavior with mpi-plumed+non-mpi-md
      a79e9018
    • Giovanni Bussi's avatar
      Corrected doc for LOAD · 6490b571
      Giovanni Bussi authored
      6490b571
    • Giovanni Bussi's avatar
      Automatic compilation · b2ef03b0
      Giovanni Bussi authored
      I modified the "LOAD" command in such a way that if one
      writes "LOAD pippo.cpp" in the plumed.dat file, pippo.cpp is automatically
      compiled to a pippo.so which is then loaded.
      b2ef03b0
    • Giovanni Bussi's avatar
      Added "plumed mklib" tool · 21c43f76
      Giovanni Bussi authored
      A compile_options.sh file is generated by make in the src directory
      and it is used to properly compile a .cpp into a .so (or .dylib on mac).
      Just type "plumed mklib pippo.cpp". Still it should be improved in term
      of linking of multiple .cpp files.
      21c43f76
    • Giovanni Bussi's avatar
      Automatic tools for plumed tool · c29b3bfc
      Giovanni Bussi authored
      Modified the "plumed" script so as to simplify the addition of new
      tools. To add a new tool just put a script in tools/scripts with extension
      .sh. The script should understand the keyword "--description" which is used
      to build a summary of available scripts in the main "plumed" script.
      c29b3bfc
    • Giovanni Bussi's avatar
      Added Barrier() to PlumedCommunicator · fe99e338
      Giovanni Bussi authored
      fe99e338
  3. Aug 26, 2011
  4. Aug 25, 2011
  5. Aug 24, 2011
  6. Jul 27, 2011
  7. Jul 26, 2011
  8. Jul 25, 2011
  9. Jul 24, 2011
  10. Jul 22, 2011
  11. Jul 21, 2011
Loading