Hi everyone,
I wanted to ask if there is support for constant pH simulations in OpenMM and any tutorials for it.
I've found this old repo but have no idea if this was tested and implemented in OpenMM.
Best,
Hassan
Search found 11 matches
- Wed Oct 16, 2024 9:34 am
- Forum: OpenMM
- Topic: Constant pH simulations in OpenMM
- Replies: 1
- Views: 350
- Wed Nov 08, 2023 11:37 am
- Forum: OpenMM
- Topic: Maintaining peptide conformation
- Replies: 3
- Views: 1458
Re: Maintaining peptide conformation
Restraining them in position will allow them to keep their shape but will not allow the backbone to relax. So essentially we want the peptides to rotate/translate but not lose the fold.
- Tue Nov 07, 2023 4:00 pm
- Forum: OpenMM
- Topic: Maintaining peptide conformation
- Replies: 3
- Views: 1458
Maintaining peptide conformation
Hello everyone! I have a polymer with short peptides as repeating units. In the initial minimization, the relaxation of the polymer backbone destroys the fold on some of the peptides. Is there a way to maintain the conformation of the peptides until the relaxation is over, and lift these restraints ...
- Fri Aug 18, 2023 2:47 pm
- Forum: OpenMM
- Topic: Potential Energy error at Folding@Home
- Replies: 1
- Views: 531
Potential Energy error at Folding@Home
Hi everyone! I've found the following error in numerous work units in projects that I am running at Folding@Home. The system has angle/distance restraints. Configuring CPU/Reference platform for sanity checks... Using CPU platform for reference calculations. Performing initial sanity checks before s...
- Mon Jul 31, 2023 2:13 pm
- Forum: OpenMM
- Topic: Rotational Constraint on polymer
- Replies: 2
- Views: 446
Re: Rotational Constraint on polymer
So I'm assuming the constraint would have to be implemented by fixing a dihedral somewhere along the polymer backbone? The chain does collapse eventually into a more compact structure but despite that it is longer in the length dimension, and the ultimate objective is to run random mutants therefore...
- Wed Jul 26, 2023 2:32 pm
- Forum: OpenMM
- Topic: Rotational Constraint on polymer
- Replies: 2
- Views: 446
Rotational Constraint on polymer
Hello all, I have a polymer with each repeating unit as a peptide sequence. 15 units in total. I setup the simulation from a stretched out position, I set my box size to +2nm buffer on all sides. But the issue is that if the polymer rotates, it will interact with its periodic image because the heigh...
- Thu Jun 22, 2023 1:20 pm
- Forum: OpenMM
- Topic: Adding ions in OpenMM
- Replies: 2
- Views: 527
Re: Adding ions in OpenMM
Got it, thanks!
Yes, the systems are already solvated.
Yes, the systems are already solvated.
- Thu Jun 22, 2023 1:01 pm
- Forum: OpenMM
- Topic: Adding ions in OpenMM
- Replies: 2
- Views: 527
Adding ions in OpenMM
Hello,
I wanted to ask if there is a way to add ions to neutralize the system without using the addSolvent function.
Best,
Hassan
I wanted to ask if there is a way to add ions to neutralize the system without using the addSolvent function.
Best,
Hassan
- Tue Apr 04, 2023 4:01 pm
- Forum: OpenMM
- Topic: Freezing atom positions
- Replies: 4
- Views: 702
Re: Freezing atom positions
I figured it out, thanks.
My mistake was loading a checkpoint file after setting the masses to zero.
My mistake was loading a checkpoint file after setting the masses to zero.
- Tue Apr 04, 2023 3:30 pm
- Forum: OpenMM
- Topic: Freezing atom positions
- Replies: 4
- Views: 702
Re: Freezing atom positions
The atoms seem to be moving in the simulation. I used the following code to set the SD atoms mass to zero before creating the Simulation object totalrestrainedatoms=['SD'] for i, atom_crd in enumerate(parm.positions): if parm.atoms[i].name in totalrestrainedatoms: system.setParticleMass(i, 0.0)