Search found 21 matches

by Michal Krompiec
Wed Jun 03, 2020 12:47 pm
Forum: OpenMM
Topic: Standalone FORTRAN program for potential energy and forces
Replies: 4
Views: 221

Re: Standalone FORTRAN program for potential energy and forces

Hi, I suggest considering Atomic Simulation Environment (ASE) as the MD driver. It is interfaced to several compute codes via a Calculator object, which computes energy and forces - you would need to implement your own Calculator which would communicate with your Fortran code.
Best,
Michal
by Michal Krompiec
Mon Mar 23, 2020 3:17 pm
Forum: OpenMM
Topic: trajectory with velocities?
Replies: 2
Views: 120

Re: trajectory with velocities?

Thank you! It turned out to be relatively simple. Just in case anyone else needs a xyz trajectory with units of their choice, this is how I eventually did it: class XyzReporter(object): def __init__(self, file, reportInterval): self._reportInterval = reportInterval self._out = None self.fname = file...
by Michal Krompiec
Mon Mar 23, 2020 7:32 am
Forum: OpenMM
Topic: trajectory with velocities?
Replies: 2
Views: 120

trajectory with velocities?

Hello, I would like to save a trajectory with both positions and velocities of all particles. Ideally, in XYZ or GRO format (or something that can be converted to any of these). Is it possible or do I have to write my own reporter? So far, I tried the MdcrdReporter from Parmed, but its format is not...
by Michal Krompiec
Mon Dec 30, 2019 11:32 am
Forum: OpenMM
Topic: DrudeForce
Replies: 3
Views: 236

Re: DrudeForce

One more question: what is the default unit of polarizability?
by Michal Krompiec
Thu Dec 26, 2019 3:44 am
Forum: OpenMM
Topic: CustomManyParticleForce exclusions
Replies: 3
Views: 88

Re: CustomManyParticleForce exclusions

But I would like to keep interactions between two atoms from the same molecule and a third atom from another. Pairwise definition of exclusions would not allow it. I mean if p1 and p2 belong to the same molecule, (p1,p2,p3) is always excluded, regardless of whether p3 belongs to the same molecule (w...
by Michal Krompiec
Tue Dec 24, 2019 3:56 am
Forum: OpenMM
Topic: CustomManyParticleForce exclusions
Replies: 3
Views: 88

CustomManyParticleForce exclusions

Hi, Im using CustomManyParticleForce to implement a three-body potential. Is it possible to specify exclusions in such a way that this force is evaluated only for intermolecular interactions? I mean excluding all (p1, p2, p3) where p1, p2 and p3 are in the same molecule.
by Michal Krompiec
Tue Dec 24, 2019 3:43 am
Forum: OpenMM
Topic: CustomNonbondedForce and exceptions/exclusions
Replies: 7
Views: 316

Re: CustomNonbondedForce and exceptions/exclusions

Thank you, this is great! When exactly is this code executed?
by Michal Krompiec
Fri Dec 20, 2019 4:03 am
Forum: OpenMM
Topic: CustomNonbondedForce and exceptions/exclusions
Replies: 7
Views: 316

Re: CustomNonbondedForce and exceptions/exclusions

I still can't get this right. At the moment, I have a CustomNonbondedForce with bondCutoff=3 and a NonbondedForce which handles Coulomb interactions (1-4 interactions are scaled by 0.5). Now, I would like to add 1-4 interactions to the CustomNonbondedForce (scaled by 0.5, or unscaled). Is it possibl...
by Michal Krompiec
Sat Nov 16, 2019 4:11 pm
Forum: ForceBalance : Automatic Optimization of Force Fields and Empirical Potentials
Topic: hessian fit openmm
Replies: 4
Views: 731

hessian fit openmm

Hi,
Is it possible to use vibrational frequencies target with OpenMM? Or any other way to do a Hessian fit?
Thanks,
Michal
by Michal Krompiec
Fri Nov 01, 2019 10:24 am
Forum: OpenMM
Topic: DrudeForce
Replies: 3
Views: 236

Re: DrudeForce

Thank you!