Hi,

I've been having fun developing a plugin for ChimeraX and want to firstly thank
everyone involved for such a great platform to build upon.

I'm starting to introduce a molecular dynamics component and was excited to see that
ChimeraX ships with OpenMM support.

Unfortunately, the OpenMM Platform plugins (which add CPU, CUDA, OpenCL etc) functionality, do
not seem to be loaded by default at least in ChimeraX 1.1 on macOS.

I couldn't see any documentation about how to load these plugins,
but for anyone running into this issue, the following code got things working for me:

------
import chimerax
openmm_plugins_dir = os.path.join(chimerax.app_lib_dir, 'plugins')
Platform.loadPluginsFromDirectory(openmm_plugins_dir)
------


Kind regards,

Tom