periodic boundary conditions for setup with Charmm files?
Posted: Wed Jun 26, 2019 10:25 am
Hi,
I am trying to set up protein-ligand binding simulations with Charmm files (psf, str, prm) which already contains solvent and ions. But when I specify "nonbondedMethod=PME" in, it generates error: .
I checked the documentation, it seems that I could use to define the periodic box, but this requires the definition of "system" object which throws the error above.
Does anyone know how to solve this issue? Thanks!
I am trying to set up protein-ligand binding simulations with Charmm files (psf, str, prm) which already contains solvent and ions. But when I specify "nonbondedMethod=PME" in
Code: Select all
system = psf.createSystem(params, nonbondedMethod=PME, nonbondedCutoff=1*nanometer, constraints=HBonds)
Code: Select all
Illegal nonbonded method for a non-periodic system
I checked the documentation, it seems that I could use
Code: Select all
system.setPeriodicBoxVectors()
Does anyone know how to solve this issue? Thanks!