This update consists exclusively of bugfixes or maintenance-related changes. The following is a list of pull requests in the Colvars repository since the previous update to LAMMPS: - 532 Add XYZ trajectory reading feature https://github.com/Colvars/colvars/pull/532 (@jhenin, @giacomofiorin) - 531 Delete objects quietly, unless explicitly requested via script (including VMD) https://github.com/Colvars/colvars/pull/531 (@giacomofiorin) - 530 Append newline to log and error messages if not already present https://github.com/Colvars/colvars/pull/530 (@giacomofiorin) - 528 Forward-declare OpenMP lock https://github.com/Colvars/colvars/pull/528 (@giacomofiorin) - 527 Remove unneeded STL container https://github.com/Colvars/colvars/pull/527 (@giacomofiorin) - 526 Allow collecting configuration files and strings before setting up interface https://github.com/Colvars/colvars/pull/526 (@giacomofiorin, @jhenin) - 523 Fallback to linearCombination when customFunction is missing in customColvar https://github.com/Colvars/colvars/pull/523 (@HanatoK, @giacomofiorin) - 522 Use iostream::fail() to check for I/O error https://github.com/Colvars/colvars/pull/522 (@jhenin) - 520 Fix ref count https://github.com/Colvars/colvars/pull/520 (@giacomofiorin) - 513 Set target temperature through a common code path https://github.com/Colvars/colvars/pull/513 (@giacomofiorin, @jhenin) - 509 Safer detection of Windows with recent Microsoft Visual Studio versions https://github.com/Colvars/colvars/pull/509 (@akohlmey) - 508 Update LAMMPS patching method to reflect Lepton availability https://github.com/Colvars/colvars/pull/508 (@giacomofiorin) - 497 Increase the precision of write_multicol https://github.com/Colvars/colvars/pull/497 (@HanatoK) - 496 Only perform MTS automatic enable/disable for timeStepFactor > 1 https://github.com/Colvars/colvars/pull/496 (@giacomofiorin) - 493 Remove unused branch of quaternion input function https://github.com/Colvars/colvars/pull/493 (@giacomofiorin) - 489 Ensure there are spaces between the fields in the header https://github.com/Colvars/colvars/pull/489 (@HanatoK) - 487 Use map of output streams, and return references to its elements https://github.com/Colvars/colvars/pull/487 (@giacomofiorin, @jhenin) - 486 Remember first step of moving restraint https://github.com/Colvars/colvars/pull/486 (@jhenin) - 485 Add decoupling option for moving restraints https://github.com/Colvars/colvars/pull/485 (@jhenin) - 483 Update Lepton via patching procedure https://github.com/Colvars/colvars/pull/483 (@giacomofiorin) - 481 Make file-reading operations of input data abstractable https://github.com/Colvars/colvars/pull/481 (@giacomofiorin) Authors: @akohlmey, @giacomofiorin, @HanatoK, @jhenin
178 lines
6.0 KiB
C++
178 lines
6.0 KiB
C++
// -*- c++ -*-
|
|
|
|
// This file is part of the Collective Variables module (Colvars).
|
|
// The original version of Colvars and its updates are located at:
|
|
// https://github.com/Colvars/colvars
|
|
// Please update all Colvars source files before making any changes.
|
|
// If you wish to distribute your changes, please submit them to the
|
|
// Colvars repository at GitHub.
|
|
|
|
#ifndef COLVARPROXY_SYSTEM_H
|
|
#define COLVARPROXY_SYSTEM_H
|
|
|
|
|
|
/// Methods for accessing the simulation system (PBCs, integrator, etc)
|
|
class colvarproxy_system {
|
|
|
|
public:
|
|
|
|
/// Constructor
|
|
colvarproxy_system();
|
|
|
|
/// Destructor
|
|
virtual ~colvarproxy_system();
|
|
|
|
/// \brief Name of the unit system used internally by Colvars (by default, that of the back-end).
|
|
/// Supported depending on the back-end: real (A, kcal/mol), metal (A, eV), electron (Bohr, Hartree), gromacs (nm, kJ/mol)
|
|
/// Note: calls to back-end PBC functions assume back-end length unit
|
|
/// We use different unit from back-end in VMD bc using PBC functions from colvarproxy base class
|
|
/// Colvars internal units are user specified, because the module exchanges info in unknown
|
|
/// composite dimensions with user input, while it only exchanges quantities of known
|
|
/// dimension with the back-end (length and forces)
|
|
std::string units;
|
|
|
|
/// \brief Request to set the units used internally by Colvars
|
|
virtual int set_unit_system(std::string const &units, bool check_only);
|
|
|
|
/// \brief Convert a length from Angstrom to internal
|
|
inline cvm::real angstrom_to_internal(cvm::real l) const
|
|
{
|
|
return l * angstrom_value_;
|
|
}
|
|
|
|
/// \brief Convert a length from internal to Angstrom
|
|
inline cvm::real internal_to_angstrom(cvm::real l) const
|
|
{
|
|
return l / angstrom_value_;
|
|
}
|
|
|
|
/// Boltzmann constant, with unit the same as energy / K
|
|
inline cvm::real boltzmann() const
|
|
{
|
|
return boltzmann_;
|
|
}
|
|
|
|
/// Current target temperature of the simulation (K units)
|
|
inline cvm::real target_temperature() const
|
|
{
|
|
return target_temperature_;
|
|
}
|
|
|
|
/// Set the current target temperature of the simulation (K units)
|
|
virtual int set_target_temperature(cvm::real T);
|
|
|
|
/// \brief Time step of the simulation (fs)
|
|
virtual cvm::real dt();
|
|
|
|
/// \brief Pseudo-random number with Gaussian distribution
|
|
virtual cvm::real rand_gaussian(void);
|
|
|
|
/// Pass restraint energy value for current timestep to MD engine
|
|
virtual void add_energy(cvm::real energy);
|
|
|
|
/// \brief Get the PBC-aware distance vector between two positions
|
|
virtual cvm::rvector position_distance(cvm::atom_pos const &pos1,
|
|
cvm::atom_pos const &pos2) const;
|
|
|
|
/// Recompute PBC reciprocal lattice (assumes XYZ periodicity)
|
|
void update_pbc_lattice();
|
|
|
|
/// Set the lattice vectors to zero
|
|
void reset_pbc_lattice();
|
|
|
|
/// \brief Tell the proxy whether total forces are needed (they may not
|
|
/// always be available)
|
|
virtual void request_total_force(bool yesno);
|
|
|
|
/// Are total forces being used?
|
|
virtual bool total_forces_enabled() const;
|
|
|
|
/// Are total forces from the current step available?
|
|
virtual bool total_forces_same_step() const;
|
|
|
|
/// Get the molecule ID when called in VMD; raise error otherwise
|
|
/// \param molid Set this argument equal to the current VMD molid
|
|
virtual int get_molid(int &molid);
|
|
|
|
/// Get value of alchemical lambda parameter from back-end (if available)
|
|
virtual int get_alch_lambda(cvm::real* lambda);
|
|
|
|
/// Set value of alchemical lambda parameter to be sent to back-end at end of timestep
|
|
void set_alch_lambda(cvm::real lambda);
|
|
|
|
/// Send cached value of alchemical lambda parameter to back-end (if available)
|
|
virtual int send_alch_lambda();
|
|
|
|
/// Get energy derivative with respect to lambda (if available)
|
|
virtual int get_dE_dlambda(cvm::real* dE_dlambda);
|
|
|
|
/// Apply a scalar force on dE_dlambda (back-end distributes it onto atoms)
|
|
virtual int apply_force_dE_dlambda(cvm::real* force);
|
|
|
|
/// Get energy second derivative with respect to lambda (if available)
|
|
virtual int get_d2E_dlambda2(cvm::real* d2E_dlambda2);
|
|
|
|
/// Force to be applied onto alch. lambda, propagated from biasing forces on dE_dlambda
|
|
cvm::real indirect_lambda_biasing_force;
|
|
|
|
/// Get weight factor from accelMD
|
|
virtual cvm::real get_accelMD_factor() const {
|
|
cvm::error("Error: accessing the reweighting factor of accelerated MD "
|
|
"is not yet implemented in the MD engine.\n",
|
|
COLVARS_NOT_IMPLEMENTED);
|
|
return 1.0;
|
|
}
|
|
virtual bool accelMD_enabled() const {
|
|
return false;
|
|
}
|
|
|
|
protected:
|
|
|
|
/// Next value of lambda to be sent to back-end
|
|
cvm::real cached_alch_lambda;
|
|
|
|
/// Whether lambda has been set and needs to be updated in backend
|
|
bool cached_alch_lambda_changed;
|
|
|
|
/// Boltzmann constant in internal Colvars units
|
|
cvm::real boltzmann_;
|
|
|
|
/// Most up to date target temperature for the system (in K)
|
|
cvm::real target_temperature_;
|
|
|
|
/// \brief Value of 1 Angstrom in the internal (front-end) Colvars unit for atomic coordinates
|
|
/// * defaults to 0 in the base class; derived proxy classes must set it
|
|
/// * in VMD proxy, can only be changed when no variables are defined
|
|
/// as user-defined values in composite units must be compatible with that system
|
|
cvm::real angstrom_value_;
|
|
|
|
/// \brief Value of 1 kcal/mol in the internal Colvars unit for energy
|
|
cvm::real kcal_mol_value_;
|
|
|
|
/// Whether the total forces have been requested
|
|
bool total_force_requested;
|
|
|
|
/// \brief Type of boundary conditions
|
|
///
|
|
/// Orthogonal and triclinic cells are made available to objects.
|
|
/// For any other conditions (mixed periodicity, triclinic cells in LAMMPS)
|
|
/// minimum-image distances are computed by the host engine regardless.
|
|
enum Boundaries_type {
|
|
boundaries_non_periodic,
|
|
boundaries_pbc_ortho,
|
|
boundaries_pbc_triclinic,
|
|
boundaries_unsupported
|
|
};
|
|
|
|
/// Type of boundary conditions
|
|
Boundaries_type boundaries_type;
|
|
|
|
/// Bravais lattice vectors
|
|
cvm::rvector unit_cell_x, unit_cell_y, unit_cell_z;
|
|
|
|
/// Reciprocal lattice vectors
|
|
cvm::rvector reciprocal_cell_x, reciprocal_cell_y, reciprocal_cell_z;
|
|
};
|
|
|
|
#endif
|