Search found 2541 matches

by Peter Eastman
Thu Jan 04, 2024 10:27 am
Forum: OpenMM
Topic: rosetta-like structure and residue scores?
Replies: 1
Views: 233

Re: rosetta-like structure and residue scores?

OpenMM doesn't compute the Rosetta scoring function. Is that your question, or are you asking something more general about how to compute different sorts of functions?
by Peter Eastman
Tue Jan 02, 2024 10:55 am
Forum: OpenMM
Topic: Saving Topology after OpenMM simulation
Replies: 3
Views: 368

Re: Saving Topology after OpenMM simulation

What do you mean when you say it is "not able to perform the alignment correctly"? What happens when you try? I haven't used MDAnalysis and I don't know how its centering code works. I've always used MDTraj. It has an image_molecules() function that works nicely for centering a protein in the middle...
by Peter Eastman
Tue Dec 05, 2023 5:59 pm
Forum: OpenMM
Topic: Custom anisotropic potential
Replies: 2
Views: 402

Re: Custom anisotropic potential

There's nothing exactly like that. Can you give more details on what you want to implement? What's the functional form? What's the application?
by Peter Eastman
Mon Nov 27, 2023 5:15 pm
Forum: OpenMM
Topic: OpenMM 8.1
Replies: 0
Views: 201

OpenMM 8.1

OpenMM 8.1 is now released! You can install it with conda or mamba:

Code: Select all

mamba install -c conda-forge openmm
Release notes are at https://github.com/openmm/openmm/releases/tag/8.1.0.
by Peter Eastman
Fri Nov 17, 2023 1:32 pm
Forum: OpenMM
Topic: OpenMM 8.1 release candidate
Replies: 1
Views: 232

Re: OpenMM 8.1 release candidate

A second release candidate (8.1.0rc2) has been posted. It fixes a couple of bugs related to ATMForce. You can install it with the same command shown above.
by Peter Eastman
Thu Nov 09, 2023 4:11 pm
Forum: OpenMM
Topic: OpenMM 8.1 release candidate
Replies: 1
Views: 232

OpenMM 8.1 release candidate

The release candidate for 8.1 is now available. You can install it with

Code: Select all

conda install -c conda-forge/label/openmm_rc -c conda-forge openmm
Please try it out and let me know whether it works for you. If no serious problems are found, it will become the release in about a week.
by Peter Eastman
Wed Nov 08, 2023 12:08 pm
Forum: OpenMM
Topic: Maintaining peptide conformation
Replies: 3
Views: 364

Re: Maintaining peptide conformation

In that case, restraining the phi and psi dihedrals might be the best approach.
by Peter Eastman
Tue Nov 07, 2023 4:48 pm
Forum: OpenMM
Topic: Maintaining peptide conformation
Replies: 3
Views: 364

Re: Maintaining peptide conformation

A common way of doing this is to add harmonic restraints to the positions of some atoms, for example the backbone heavy atoms. There's sample code for doing this in the cookbook.
by Peter Eastman
Sat Nov 04, 2023 11:19 am
Forum: OpenMM
Topic: Gradually reduce the box volume accessible to solute
Replies: 4
Views: 491

Re: Gradually reduce the box volume accessible to solute

That expression just linearly reduces the distance. When i is 0 it equals maxDist. When i is 1000 it equals minDist. You can use whatever expression you want for your protocol. To compute the displacement while using periodic boundary conditions, compute it as r=periodicdistance(x, y, z, centerx, ce...
by Peter Eastman
Fri Nov 03, 2023 10:32 am
Forum: OpenMM
Topic: Gradually reduce the box volume accessible to solute
Replies: 4
Views: 491

Re: Gradually reduce the box volume accessible to solute

What you have there looks reasonable. You can gradually decrease "dist" as the simulation runs.

Code: Select all

for i in range(1000):
  simulation.context.setParameter("dist", maxDist-i*(maxDist-minDist)/1000)
  simulation.step(100)
Is there something specific that isn't working?