Page 1 of 1

Simulated Tempering Strange Ion Behavior

Posted: Fri Jul 10, 2020 7:13 am
by kkihn001
Hi All,
We have been attempting to implement the enhanced sampling method of simulated tempering (simulated_tempering.txt). We noticed that in all of the runs we have performed, about half way through, some of the ions form a lattice structure. Is this a product of the simulated tempering method? How do we prevent this from happening in openMM? Is this an issue if we are just concerned about protein?
Thank you,
Kyle

Re: Simulated Tempering Strange Ion Behavior

Posted: Fri Jul 10, 2020 11:19 am
by peastman
Simulated tempering just modifies the temperature to improve sampling. If the ions are forming a lattice, that suggests it's a lower energy configuration, and simulated tempering is just helping it to discover that configuration more quickly.

By the way, these lines in your script aren't doing what you intend them to:

Code: Select all

pdb.addSolvent(forcefield, padding=1.0*unit.nanometers, model='tip3p')
pdb.addSolvent(forcefield, ionicStrength=0.15*unit.molar, positiveIon='K+')
pdb.addSolvent(forcefield, ionicStrength=0.15*unit.molar, negativeIon='Cl-')
The first line builds a water box using the default parameters (positiveIon='Na+', negativeIon='Cl-', ionicStrength=0*molar). The next two lines do nothing at all. The box is entirely filled with water, so there's no room for it to add anything else, and it doesn't modify the water and ions that are already there. Instead you want to call addSolvent() only once:

Code: Select all

pdb.addSolvent(forcefield, padding=1.0*unit.nanometers, ionicStrength=0.15*unit.molar, positiveIon='K+', negativeIon='Cl-')