Search found 47 matches

by Jason Swails
Mon Apr 25, 2016 3:10 am
Forum: OpenMM
Topic: Energy decomposition of System using CHARMM36 FF
Replies: 3
Views: 451

Re: Energy decomposition of System using CHARMM36 FF

But I still cannot figure out why I am getting a lot more dihedral angles in OpenMM compared to what is reported by NAMD and in the PSF file (the dihedral section reports the number of dihedrals) When you use getNumTorsions() on the PeriodicTorsionForce in OpenMM, you get a list of the total number...
by Jason Swails
Fri Apr 15, 2016 5:12 am
Forum: OpenMM
Topic: Accese charge, sigma and epsilon from system C++ object
Replies: 2
Views: 168

Re: Accese charge, sigma and epsilon from system C++ object

Now I'm using force group num 6 and assuming the non bonded force's force group num is always 6. Is this true? I also try to find if there is an enumeration type defining force group numbers and couldn't find it. You definitely can't rely on this. This happens to be true if you serialize a system f...
by Jason Swails
Sat Apr 09, 2016 7:01 pm
Forum: OpenMM
Topic: Is there a C++ API for read CHARMM force field and psf file?
Replies: 3
Views: 218

Re: Is there a C++ API for read CHARMM force field and psf f

No, there is no C++ API for working with force field files. It basically just has the library for actually running molecular mechanical calculations -- nothing for setup or analysis (for instance, there is no trajectory writer, either!). If you want to work with CHARMM files, you will need to write ...
by Jason Swails
Sat Apr 02, 2016 5:40 am
Forum: OpenMM
Topic: bug for negative residue numbers in charmmpsffile?
Replies: 2
Views: 288

Re: bug for negative residue numbers in charmmpsffile?

vdbedem wrote: Any particular reason to exclude negative residues?
Nope. Didn't realize PSF files used them when I wrote the parser (I use CHARMM minimally myself). I'll fix it. Thanks for the report and the fix!
by Jason Swails
Thu Mar 24, 2016 12:02 pm
Forum: OpenMM
Topic: Massive parallelization
Replies: 6
Views: 581

Re: Massive parallelization

I would use MPI, personally. But that's precisely what John Chodera's library does. So I guess the best answer I can think of is to do what repex does. Which is to say, just use repex (or implement the same thing in C++ if you want to do that and can reproduce the rest of the required machinery from...
by Jason Swails
Mon Feb 22, 2016 7:45 pm
Forum: OpenMM
Topic: Geometry optimization with AMOEBA force field
Replies: 5
Views: 498

Re: Geometry optimization with AMOEBA force field

Because you are not at a true local minimum. Note that it is very difficult to get to a true local minimum (where the force on every atom is zero). The minimization criteria for OpenMM is (I believe) satisfied when the difference in energy between successive steps is less than the tolerance. Forces ...
by Jason Swails
Mon Feb 22, 2016 2:11 pm
Forum: OpenMM
Topic: OpenMM 6.3 slowing down parmed netcdf reporter
Replies: 3
Views: 307

Re: OpenMM 6.3 slowing down over the course of a run

This is a consequence of scipy's NetCDF class slowing down as the NetCDF file grows in size. The reader is the fastest Python option, but the writer is slower than the one from NetCDF 4 and slows down over time. I could probably work around this issue by supporting NetCDF writing through the netCDF4...
by Jason Swails
Sun Feb 14, 2016 1:30 pm
Forum: OpenMM
Topic: build in Debug mode
Replies: 2
Views: 310

Re: build in Debug mode

Yes, _d suffixes were removed a long time ago. Here is the issue where debug library naming was brought up as a question: https://github.com/pandegroup/openmm/issues/398 and then the PR that changed this behavior: https://github.com/pandegroup/openmm/pull/408 When you compile in Debug mode, what tha...
by Jason Swails
Tue Feb 09, 2016 1:29 pm
Forum: OpenMM
Topic: Running a small molecule using CHARMM ff and explicit H2O
Replies: 3
Views: 244

Re: Running a small molecule using CHARMM ff and explicit H2

No, you would have to solvate the molecule with CHARMM or something equivalent. You could solvate in VMD and use autopsf to create the PSF file, or you could use CHARMM-GUI if you don't have access to CHARMM directly.

We're currently working on a CHARMM FF conversion, but it's not quite ready yet.
by Jason Swails
Fri Feb 05, 2016 9:32 am
Forum: OpenMM
Topic: Question about Custom Thermostat and Barostat
Replies: 18
Views: 1226

Re: Question about Custom Thermostat and Barostat

zebra_123456 wrote:Could it be because "dt" is not a user-defined variable?
"dt" is the time-step and is typically constant, I think (except for some kinds of variable integrators perhaps). Were you defining your own "dt" variable for something else? Did this not result in an error?