Search found 63 matches

by lewis martin
Thu Jun 25, 2020 9:13 pm
Forum: OpenMM
Topic: Can I trick Modeller.addMembrane into creating a membrane without requiring a list of positions?
Replies: 2
Views: 60

Can I trick Modeller.addMembrane into creating a membrane without requiring a list of positions?

I'd like to create a pure membrane and water system. My first approach went like this: modeller = app.Modeller(Topology(), Quantity([], nanometer)) modeller.addMembrane(omm_forcefield, 'POPC') but this raises an error at this line of Modeller: 1296 proteinMinPos = Vec3(*[min((p[i] for p in proteinPo...
by lewis martin
Wed May 27, 2020 3:25 pm
Forum: OpenMM
Topic: Reimplementing PeriodicTorsionForce with a custom version
Replies: 2
Views: 62

Re: Reimplementing PeriodicTorsionForce with a custom version

Thanks Peter - success. Ill check that page first in future :')
by lewis martin
Wed May 27, 2020 3:27 am
Forum: OpenMM
Topic: Reimplementing PeriodicTorsionForce with a custom version
Replies: 2
Views: 62

Reimplementing PeriodicTorsionForce with a custom version

Hi, So this time I'm looking to remove the native PeriodicTorsionForce and replace it with a CustomTorsionForce (same reason - for tempering the force). Implementing it seemed easy and I got accurate potential energy when I compared alanine dipeptide with and without the replacement force. But metad...
by lewis martin
Mon May 25, 2020 2:17 am
Forum: OpenMM
Topic: Is this a complete description of the nonbonded forces?
Replies: 2
Views: 132

Re: Is this a complete description of the nonbonded forces?

Thanks Peter, that explains the modifications I saw for PME.
by lewis martin
Sat May 23, 2020 8:05 pm
Forum: OpenMM
Topic: Is this a complete description of the nonbonded forces?
Replies: 2
Views: 132

Is this a complete description of the nonbonded forces?

Hi all, I'd like to do serial solute tempering by scaling nonbonded interactions between a solute and the surroundings - similar to what is done for alchemical transformations in the tutorial at: http://openmm.org/tutorials/alchemical-free-energy/ The equation given for the CustomNonbondedForce ther...
by lewis martin
Tue May 12, 2020 10:55 pm
Forum: OpenMM
Topic: OpenMM on colab
Replies: 2
Views: 103

Re: OpenMM on colab

OK, solution that should persist if they change CUDA/python version. You have to reset the runtime after installing to recognise installed packages. Full sequence is: !wget https://repo.continuum.io/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh && bash Miniconda3-4.5.4-Linux-x86_64.sh -bfp /usr/local !...
by lewis martin
Tue May 12, 2020 10:40 pm
Forum: OpenMM
Topic: OpenMM on colab
Replies: 2
Views: 103

Re: OpenMM on colab

Managed to get around the python version issue by specifying the a python3.6 build explicitly: !time conda install -y -q -c conda-forge -c omnia/label/cuda101 -c omnia openmm=7.4.1=py36_cuda101_rc_1 This appears to install correctly, and the simtk package is present in the right directory. However a...
by lewis martin
Tue May 12, 2020 8:11 pm
Forum: OpenMM
Topic: OpenMM on colab
Replies: 2
Views: 103

OpenMM on colab

Hi all, Sorry, not an OpenMM question directly. Has anyone had consistent success running OpenMM in a colab instance? I've maxed out all my GPUs but of course still want to work on other scripts! The most recent success I've seen is at: https://github.com/molmod/openmm-tutorial-msbs/blob/master/setu...
by lewis martin
Tue Nov 19, 2019 2:42 pm
Forum: OpenMM
Topic: debuggin 'All Forces must agree on whether to use a cutoff' on CUDA
Replies: 2
Views: 49

Re: debuggin 'All Forces must agree on whether to use a cutoff' on CUDA

Spot on, thanks so much Peter. Ultimately my error was that I normally add pairwise interaction groups to the CustomNonbondedForce to implement a short-range repulsive potential that prevents aggregation of drugs. Anyway while trying to get a minimal example I reduced the number of drugs to 1, meani...