- 13 Feb, 2024 1 commit
-
-
Peter Eastman authored
* Can use getPlatform() instead of getPlatformByName() * More concise arguments for getState()
-
- 15 Dec, 2023 1 commit
-
-
Peter Eastman authored
* Faster algorithm for DrudeSCFIntegrator * Minor code simplification * Reduced default error tolerance * Fixed errors on NVIDIA
-
- 28 Nov, 2023 1 commit
-
-
Nicola De Mitri 2 authored
* Py wrapper: preserve bond data in Modeller operations * regression tests for add(), delete(), deleteWater(), addSolvent() * Tests for addHydrogens and addExtraParticles * Cosmetic * A single regression test spanning a whole workflow * Remove now-redundant tests * Test also deleteWater and addHydrogens. Remove excessive assertions.
-
- 16 Nov, 2023 1 commit
-
-
Peter Eastman authored
-
- 28 Sep, 2023 1 commit
-
-
Peter Eastman authored
* Remove support for Gromacs implicit solvent * Removed tests of implicit solvent
-
- 19 Sep, 2023 1 commit
-
-
Peter Eastman authored
* Implemented MinimizationReporter * PythonAPI for MinimizationReporter * Improved test case * SWIG fix * Reporter returns a bool instead of throwing an exception
-
- 07 Sep, 2023 1 commit
-
-
Peter Eastman authored
-
- 16 Aug, 2023 1 commit
-
-
Peter Eastman authored
-
- 08 Aug, 2023 1 commit
-
-
Peter Eastman authored
* Support GROMOS bond and angle types * Support NBFIX with geometric combining rule * Continuing GROMOS support * Bug fixes * Fixes to test case * Update wrappers/python/openmm/app/gromacstopfile.py Co-authored-by:
Jason Swails <jason@entos.ai> * Improve logic for handling dihedraltypes --------- Co-authored-by:
Jason Swails <jason@entos.ai>
-
- 03 Aug, 2023 1 commit
-
-
Raul authored
-
- 02 Aug, 2023 2 commits
-
-
Emilio Gallicchio authored
* Draft integration of the Alchemical Transfer Method (ATM) plugin * Attempt to store and retrieve forces--does not compile * Implement addForce()/getForce() methods * Throw exception when specifying properties without a Platform (#4130) * Fixed DOF calculation for NoseHooverIntegrator (#4128) * Fix variance in documentation of VerletIntegrator (#4138) * Python API for ATMForce * Fixed compilation error * Minor cleanup of formatting and documentation * Files for ATMForce test cases * More cleanup * Removed variable groups * Test ATMForce with two particles * More tests for ATMForce plus fixes * Added missing header * Rework interface to pass displacements as vector of parameters * Revert "Rework interface to pass displacements as vector of parameters" This reverts commit 5e092031f31ded1137b677588f007add1c2d6f82. * Test with nonbonded force * Allow energy expression to be customized * Optional displacements at the initial state * Fixed compilation error build C wrapper * Address edge case of default energy expression * Consistent naming of the variables of the displacement states * Test of soft core function of the default energy expression * Mark addForce() as taking ownership * initial python test for ATMForce * Test custom expressions * Expanded C++ API documentation for ATMForce * Energy parameter derivatives * Serialization for ATMForce * Documentation, cleanup, and fixes * Fixed typos * getPerturbationEnergy() computes energy * Another test case * Minor edits --------- Co-authored-by:
Peter Eastman <peastman@stanford.edu> Co-authored-by:
Michael Plainer <plainer@ymail.com>
-
Peter Eastman authored
-
- 05 Jun, 2023 1 commit
-
-
Peter Eastman authored
-
- 22 Apr, 2023 1 commit
-
-
Raul authored
* Preliminary work on XTC reporter 1. Move and adapt xtc writer/reader from moleculekit (explicit permission granted by the authors to do so) 2. Create XTCTrajectoryFile 3. Create XTCReporter * Add licence and attribution to c++ xtc library Apply clang-format to it Remove some unused functions and document the rest * Add attribution and licence to cython wrappers for the xtc library Remove some unused functions * Change XTCTrajectoryFile to XTCFile Simplify the interface and document the class * Add test for the xtc file parser * Update XTC reporter with new parser name * Fix incorrect function name in XTCReporter * XTCFile: * Add function to get number of frames * Add function to read a group of frames from a file * Add tests for the above * Ensure data is passed as float32 in XTC file * Add XTCReporter and tests * Add more tests to XTCReporter * Remove unnecessary pdb reporter in XTC tests * Copy test xtc file in python/tests/systems to build directory for testing * Remove XTC file reading from the interface Make XTCFile mimic DCDFile more closely * Use xtc_read to test the correctness of the XTC reporter * Add a test for reporting triclinic boxes * Make XTC library compatible with triclinic boxes. Adapt XTCFile to triclinic boxes * Change XTCFile to take a file as argument instead of a filename * Match DCDFile handling of the box * Fix comment * Revert "Change XTCFile to take a file as argument instead of a filename" This reverts commit 9815d4790b3886cc8a741586792268e80a227ba0. * Fix dangling file name issue * Remove index file functionality from XTC parser. Remove unused define switch PLATFORM_Linux * Fix formatting * Remove inconsistent variable naming in xtcfile.py * Change file argument name to match other reporters * Do not turn off error checking in cython wrappers * Fix leftover fileName in reporter * Rewrite wrapper to xtclib in C++ * Small changes to wrapper code * Small changes to wrapper code * Small changes to wrapper code * XTCFile: Get number of atoms directly from topology * DCDFile: Get number of atoms directly from topology * Change constexpr to const * Check precision in XTC file matches the written one * Add a write function to XTCFrame. Make write check for errors C++ side. * Rewrite large trajectory files without loading the whole file to memory * Remove unused code in XTC test * Avoid spurious copy of the positions array when calling xtc_write_frame * Pass box as reference * Remove unnecessary imports and definitions * Fix formatting * Use std::string instead of char* * Use .c_str() instead of .data() * Fix crash in Mac by correctly checking precision * Use TemporaryDirectory for tests instead of NamedTemporaryFile (Fixes windows ci) * Remove unnecessary file creation * Propagate exceptions via cython * Switch to TemporaryDirectory in xtcfile.py * Remove unnecessary include * Update some comments and document functions * Add XTC reporter to the docs
-
- 28 Feb, 2023 1 commit
-
-
Stephen Farr authored
* enable atom subset in PDBReporter * adds optional atomSubset argument to PDBReporter * adds functions in PDBReporter which create a new topology and positions with chosen subset of atoms * PDBReporter write PDB files with the subset topology and positions. * refactor PDBReporter * make _createTopologySubset a method that is called only the first time it is needed * more efficient creation of subset positions * check that atomSubset is ordered * refactoring PDBReporter and add PDBx * move checks on atomSubset to _createSubsetTopology * copy periodic box vectors from topology to subsetTopology * add atomSubset to PDBx reporter * add bond subset to createSubsetTopology * formatting changes to pdbreporter * loop over atoms cleaned up * put file opening inside parameter loop in TestPdbReporter::testinvalidSubsets to try and fix failing tests on windows * add thorough tests to TestPdbReporter * spelling changes * Add tests for atom positions, elements, names etc * attempt at fixing PyPy and Windows failing test cases * fix spellings * close output file before raising exceptions * closes output files before raising exception in pdbreporter createSubsetTopology * changes assertVecAlmostEqual from a method to function to avoid repeating
-
- 29 Nov, 2022 1 commit
-
-
Alex Izvorski authored
* copy opc ions and opc*standard.xml from https://github.com/openmm/openmmforcefields/commit/b12c2e871b60275a10b3f8f56dfc2f6d5447591f * auto-merged files * move charges to residue definition * remove unmerged files * add docs * rename U to U4+ * rename Ag+, Tl+, Gd3+ and I- residue names * fix O-H bond length typo * add opc3 constraints test
-
- 08 Nov, 2022 1 commit
-
-
John Chodera authored
Fix #3790: Collision rate for MTS BAOAB Langevin integrator now correctly accounts for number of substeps (#3791) * Fix #3790: Collision rate for MTS BAOAB Langevin integrator now correctly accounts for number of substeps. Fix suggested by Charlie Matthews (@c-matthews) * Fix computation of total number of substeps * Add test for MTS friction * Fix typo * Fix yet another typo * Fix typo and check against analytical result * Fix typo * Fix typos * Fix more typos * Integrate MTSLangevinIntegrator for longer to allow thermalization * Revert number of integrator steps * Update TestIntegrators.py Fixed a failing test case Co-authored-by:Peter Eastman <peter.eastman@gmail.com>
-
- 06 Sep, 2022 1 commit
-
-
Brian Andrews authored
* add swm4-ndp water to addSolvent * add equilibrated box * typo of water radius * fixed addSolvent description * add swm4 to tests
-
- 28 Jun, 2022 1 commit
-
-
Alex Izvorski authored
* Add benchmarks from Amber20 benchmark suite to standard benchmark script * Add ensemble option; don't change hydrogen mass in amber input files * Download and extract .tar.gz using pure python code, no wget/tar dependencies * Rename amber tests * add opc and opc3 models * update to match https://bioinformatics.cs.vt.edu/~izadi/OPC_Gromacs/opc.top * opc box, converted from ambertools-22.0-py38h6177452_1/dat/leap/lib/opcbox.off * change values to make serialized system match one created from prmtop as close as possible * unit test for opc water * opc - final values, match frcmod.opc; derivation in comments * opc3 water - final values, shows derivation * opc3box made from ambertools 22 dat/leap/lib/opc3box.off * add opc3 water test * add opc and opc3 to docs * move tests to TestForceField.py * move opc tests out of amoeba tests, oops * move opcbox and opc3box pdb files Co-authored-by:
Alex Izvorski <alex@genesistherapeutics.ai>
-
- 10 Jun, 2022 1 commit
-
-
Peter Eastman authored
-
- 02 Jun, 2022 1 commit
-
-
Peter Eastman authored
-
- 31 May, 2022 1 commit
-
-
Stefan Hervø-Hansen authored
* Added temperature adjustment to MC barostat for simulated tempering fixes #3612 * Added test for simulated tempering with MC barostat. * Fixed typo in TestSimulatedTempering.py * Updated NPT test for SimulatedTempering * Updated variable naming * Reverted back to harmonic oscillator test
-
- 11 Apr, 2022 1 commit
-
-
Peter Eastman authored
-
- 30 Mar, 2022 1 commit
-
-
Peter Eastman authored
-
- 22 Mar, 2022 1 commit
-
-
Peter Eastman authored
-
- 14 Mar, 2022 1 commit
-
-
Peter Eastman authored
* Do not add constraints involving extra particles * Added test case
-
- 11 Mar, 2022 1 commit
-
-
Peter Eastman authored
* Max Drude distance defaults to 0.2 nm * Fixed incorrect number in docs * Fixed a test case
-
- 08 Mar, 2022 1 commit
-
-
Joe Greener authored
* Access atom element field * Update GB-Neck2 force regression test
-
- 03 Mar, 2022 1 commit
-
-
Peter Eastman authored
* Ensure bond lengths are set before creating forces that depend on them * Minor formatting
-
- 27 Feb, 2022 1 commit
-
-
Peter Eastman authored
-
- 07 Feb, 2022 1 commit
-
-
Sander Roet authored
-
- 27 Jan, 2022 1 commit
-
-
Peter Eastman authored
* Reference implementation of computed values for CustomNonbondedForce * CPU implementation of computed values for CustomNonbondedForce * Common implementation of computed values for CustomNonbondedForce * Serialization of computed values * ForceField supports computed values
-
- 22 Jan, 2022 1 commit
-
-
Peter Eastman authored
* Support prmtop files created by chamber * Support CHARMM CMAP flags * Changed handling of SCEE and SCNB scale factors
-
- 18 Nov, 2021 1 commit
-
-
Peter Eastman authored
-
- 11 Nov, 2021 1 commit
-
-
Peter Eastman authored
-
- 05 Nov, 2021 1 commit
-
-
Peter Eastman authored
-
- 29 Oct, 2021 1 commit
-
-
Peter Eastman authored
* Added GLYCAM * Improved tests and documentation * Fixed incorrect external bonds
-
- 26 Oct, 2021 1 commit
-
-
Peter Eastman authored
* Adding support for new AMOEBA features * Support modern method of specifying in-plane angles * Implemented stretch-torsions * Implemented angle-torsions * More AMOEBA fixes * Bug fix * Converted AMOEBA 2018 force field * Added documentation for AMOEBA 2018 * Added a missing file for tests
-
- 05 Oct, 2021 1 commit
-
-
Peter Eastman authored
* Improved handling of atoms with alternate locations * Fixed a test failure caused by an invalid PDB file
-
- 01 Oct, 2021 1 commit
-
-
Peter Eastman authored
-