Alanine Multistate

Example Simulation

This uses the state definition from [1]. 6 states named A,B,C,D,E and F

[1] W.-N. Du, K. A. Marino, and P. G. Bolhuis, “Multiple state transition interface sampling of alanine dipeptide in explicit solvent,” J. Chem. Phys., vol. 135, no. 14, p. 145102, 2011.

Import and general setup

First we tell the ipython notebook to put figures inside the notebook


In [1]:
%matplotlib inline
%config InlineBackend.figure_format = 'svg'

And import lots of modules


In [2]:
from __future__ import print_function
# standard packages
import numpy as np
import mdtraj as md
import pandas as pd
import math
import random
import time

# helpers for phi-psi plotting
import alatools as ala
import matplotlib.pyplot as plt

# OpenMM
from simtk.openmm import app
import simtk.unit as unit

# OpenMMTools
import openmmtools as omt

# OpenPathSampling
import openpathsampling as paths
from openpathsampling.tools import refresh_output

# Visualization of PathTrees
import openpathsampling.visualize as ops_vis
#from openpathsampling.visualize import PathTree
from IPython.display import SVG

# the openpathsampling OpenMM engine
import openpathsampling.engines.openmm as eng

Set simulation options and create a simulator object

Create an AlanineOpenMMSimulator for demonstration purposes

We will need a openmm.System object and an openmm.Integrator object.

To learn more about OpenMM, read the OpenMM documentation. The code we use here is based on output from the convenient web-based OpenMM builder.

We first create a snapshot using an existing PDB file. The contained topology is necessary for the OpenMM system object to compute all forces.


In [3]:
pdb_file = "../resources/AD_initial_frame.pdb"

In [4]:
template = eng.snapshot_from_pdb(pdb_file)
1. the force field

using AMBER96 as in the original paper with Tip3P water.


In [5]:
forcefield = app.ForceField('amber96.xml', 'tip3p.xml')
2. the system object

and we use the template to create the necessary OpenMM Topology object. Note that an openmm topology is (a little bit) different from an mdtraj.Topology so we need to convert.


In [6]:
pdb = app.PDBFile(pdb_file)

system = forcefield.createSystem(
    pdb.topology, 
    nonbondedMethod=app.PME, 
    nonbondedCutoff=1.0*unit.nanometers,
    constraints=app.HBonds, 
    rigidWater=True,
    ewaldErrorTolerance=0.0005
)
3. the integrator

In [7]:
integrator_low = omt.integrators.VVVRIntegrator(
    temperature=300 * unit.kelvin,  # temperature
    timestep=2.0 * unit.femtoseconds  # integration step size
)
integrator_low.setConstraintTolerance(0.00001)
4. the platform

we let OpenMM decide to use the fastest platform available. You can ask an OpenMM engine what platform it is using with the .platform attribute. You can actually override this behaviour when you initialize the engine and pass either a string or a platform object.


In [8]:
print(eng.Engine.available_platforms())


['Reference', 'CPU', 'OpenCL']
5. OpenMM properties

There are lots of options. For speed we pick mixed precision on GPUs. Most GPU programming libraries have difficulty with double precision. For our purposes this should be fine and it is faster than double precision. These are the options passed


In [9]:
platform = 'CPU'

if platform == 'OpenCL':
    openmm_properties = {
        'OpenCLPrecision': 'mixed',
        'OpenCLDeviceIndex': "2"  # pick the correct index if you have several instances
    }
elif platform == 'CUDA':
    openmm_properties = {'CudaPrecision': 'mixed'}
elif platform == 'CPU':
    openmm_properties = {}
else:
    openmm_properties = {}
6. OPS options

An engine in OpenPathSampling also has general options that are the same for any engine, like the number of steps until a frame is stored or the maximal number of steps until an engine will automatically stop.


In [10]:
engine_low_options = {
    'n_frames_max': 5000,
    'n_steps_per_frame': 10
}

Finally build the main engine from the parts


In [11]:
engine_low = eng.Engine(
    template.topology,
    system,
    integrator_low,
    openmm_properties=openmm_properties,
    options=engine_low_options
)
engine_low.name = 'default'

For the exploration of state space and getting an initial trajectory we also want to simulate at a very high temperature. Here 750K. This is totally unphysical, but all we want is to generate conformations that are not completely wrong in the sense that they could exist at low temperatures.

Set a high temperature simulation for exploration.

For OpenMM all we need to change is the replace the integrator with a new temperature and half the stepsize. We will later pick only every second frame


In [12]:
integrator_high = omt.integrators.VVVRIntegrator(
    temperature=1000 * unit.kelvin,  # temperature
    timestep=2.0 * unit.femtoseconds  # integration step size
)
integrator_high.setConstraintTolerance(0.00001)

In [13]:
engine_high_options = {
    'n_frames_max': 5000,
    'n_steps_per_frame': 10  # twice as many steps with half stepsize
}

An clone the engine using a new integrator


In [14]:
engine_high = engine_low.from_new_options(
    integrator=integrator_high,
    options=engine_high_options)
engine_high.name = 'high'

For now we use the default engine at


In [15]:
engine_high.initialize(platform)

print('High-Engine uses')
print('platform `%s`' % engine_high.platform)
print('temperature `%6.2f K' % (
    float(engine_high.integrator.getGlobalVariableByName('kT')) / 0.0083144621))


High-Engine uses
platform `CPU`
temperature `1000.00 K

Create the storage

We open a new empty storage


In [16]:
storage_file = 'ala_mstis_bootstrap.nc'
storage = paths.Storage(storage_file, 'w', template=template)

And store both engines in it. Since these are named you can load these later using storage.engines[name].


In [17]:
storage.save(engine_low);
storage.save(engine_high);

And store a template for convenience.


In [18]:
storage.tag['template'] = template

State Definitions

We define states A-F. The specifications are taken from the paper [^1].

The list of state names


In [19]:
states = ['A', 'B', 'C', 'D', 'E', 'F']

If you just want to play around you might want to just simulate the first 4 states, which is much faster. You can do so by uncommenting the line below


In [20]:
states = ['A', 'B', 'C', 'D']

Define the centers.


In [21]:
state_centers = {
    'A' : [-150, 150], 
    'B' : [-70, 135], 
    'C' : [-150, -65], 
    'D' : [-70, -50], 
    'E' : [50, -100], 
    'F' : [40, 65]
}

And the radii of the interfaces


In [22]:
interface_levels = {
    'A' : [20, 45, 65, 80],
    'B' : [20, 45, 65, 75],
    'C' : [20, 45, 60],
    'D' : [20, 45, 60],
    'E' : [20, 45, 65, 80],
    'F' : [20, 45, 65, 80],
}

And also save these information for later convenience


In [23]:
storage.tag['states'] = states
storage.tag['state_centers'] = state_centers
storage.tag['interface_levels'] = interface_levels

Order Parameters

this generates an order parameter (callable) object named psi (so if we call psi(trajectory) we get a list of the values of psi for each frame in the trajectory). This particular order parameter uses mdtraj's compute_dihedrals function, with the atoms in psi_atoms.

The .with_diskcache will tell the CVs to also create some space to save the values of this CV in the same storage where the CV gets saved. Usually you want to save the direct CVs with diskcache while CVs that build upon these CVs should be fine. The reason is this:

Loading large snapshots from disk is expensive, while compute something from snapshots in memory is fast. So for analysis re-computing values is fine as long as we do not need to reload the snapshots into memory. In our case this means that the direct CVs (CVs that require accessing snapshots properties) are phi and psi since everything else is based upon this, while the distance to the state center opA to opF is an indirect CV and should not be stored.


In [24]:
psi_atoms = [6,8,14,16]
psi = paths.MDTrajFunctionCV(
    name="psi", 
    f=md.compute_dihedrals,
    topology=template.topology,
    indices=[psi_atoms]
).with_diskcache()

phi_atoms = [4,6,8,14]
phi = paths.MDTrajFunctionCV(
    name="phi", 
    f=md.compute_dihedrals,
    topology=template.topology,
    indices=[phi_atoms]
).with_diskcache()

storage.save([psi, phi]);

Define a function that defines a distance in periodic $\phi,\psi$-space.


In [25]:
def circle_degree(snapshot, center, phi, psi):
    import numpy
    p = numpy.array([phi(snapshot), psi(snapshot)]) / numpy.pi * 180.0
    delta = numpy.abs(center - p)
    delta = numpy.where(delta > 180.0, delta - 360.0, delta)
    return numpy.hypot(delta[0], delta[1])

Create CVs for all states by using the circle_degree function with different centers


In [26]:
cv_state = dict()
for state in state_centers:
    op = paths.FunctionCV(
        name = 'op' + state,
        f=circle_degree,
        center=np.array(state_centers[state]),
        phi=phi,
        psi=psi
    )
    cv_state[state] = op

Volumes

Volume define regions in state space using given CVs. We define here the regions around the state centers. Their boundaries correspond to the interfaces as used for TIS. Crossing an interface thus corresponds to leaving an interface volume into the next larger one.


In [27]:
interface_sets = {}
for state, levels in interface_levels.items():
    print(levels)
    interface_sets[state] = \
        paths.VolumeInterfaceSet(cv_state[state], 0.0, levels)


[20, 45, 65, 80]
[20, 45, 65, 75]
[20, 45, 60]
[20, 45, 60]
[20, 45, 65, 80]
[20, 45, 65, 80]

Create Volume objects for all states. In our setup we chose the lowest interface volume for the state definition .


In [28]:
vol_state = {}
for state, levels in interface_levels.items():
#    vol_state[state] = interface_sets[state][0]
    vol_state[state] = paths.VolumeInterfaceSet(cv_state[state], 0.0, 10)[0]
    vol_state[state].name = state

In [ ]:

Visualize in Phi/Psi space

We use a littl helper function specific for phi/psi plots to illustrate what is happening. This code will not affect the generation of data but will help in visualizing the system


In [29]:
# reload(ala)
plot = ala.TwoCVSpherePlot(
    cvs=(phi, psi),
    states=[vol_state[vol] for vol in states],
    state_centers=[state_centers[vol] for vol in states],
    interface_levels=[interface_levels[vol] for vol in states]
)

plot.new()
# plot the phi/psi plot and show all states and interfaces
plot.main()
# add the initial template
plot.add_snapshot(template, label='initial')


Set up the MSTIS network

We want to simulate using multistate transition interface sampling and to alleviate the effort of setting up all states, interfaces, appropriate pathensembles and a scheme on how to generate samples we use some helper construct like in the other examples. In our case the MSTISNetwork comes first and contains the definitions of all states, their interfaces as well as associated CVs.

To make use of the optional Multi-State Outer Interface MSOuterInterface we need to define it. It will allow reversing samples that connect two states and overcomes the issue that in all present moves the initial state needs to remain the same.


In [30]:
ms_outers = paths.MSOuterTISInterface.from_lambdas(
    {ifaces: max(ifaces.lambdas) + 4
     for state, ifaces in interface_sets.items()}
)

In [31]:
mstis = paths.MSTISNetwork([
    (vol_state[state], interface_sets[state])          # core, interface set
    for state in states],
    ms_outers=ms_outers
)

And save the network


In [32]:
storage.save(paths.Trajectory([template]))
storage.tag['network'] = mstis

Set up the MoveScheme

Next, we need to specify the actual way in which we want to simulate the Network. This could be done by constructing a suitable PathMover yourself or employing the power of a MoveScheme that will generate all nevessary movers for you. The MoveScheme also effectively knows which initial samples in which ensembles you need. Beside the ones indirectly defined by the network the movescheme might not need some of these because certain moves will not be used. It could also happen that a movescheme require an extra ensemble to work for special moves that are not directly known from the network definition.

In our case we will use the DefaultScheme that uses RepEx, Reversal, Shooting and MinusMoves.


In [33]:
scheme = paths.DefaultScheme(mstis)

Initial trajectories

Next, we want to generate initial pathways for all ensembles, e.g. The TISEnsembles and MinusInterfaceEnsembles. There are several ways to do so. A very easy approach is to explore the state space at a high temperature and wait until all states have been visited. Splitting the long trajectory appropriately would give us at least one valid trajectory for each TIS ensemble. In a second step we can use over sub parts of the long trajectory and extend these into minus ensembles.

So let's try this: We generate an ensemble that is True if a trajectory is at least completely outside one state A-F. It will report false once all states have been hit, which is what we want. We will ues this as a stopping condition to generate a first long trajectory at high temperature.


In [34]:
state_volumes = list(vol_state.values())

In [35]:
visit_all_states = paths.join_ensembles([paths.AllOutXEnsemble(state) for state in state_volumes])

In [36]:
# trajectory = engine_high.generate(template, [hit_all_states.can_append])

This will take some time, even when running at a high temperature. Since this type of ensemble is quite common, and since we'd also like get progress updates while the trajectory is running, we created a specialized ensemble that wraps around the idea sketched out above. This ensemble gives a trajectory that will have visited all states, and reports progress while it is running.


In [37]:
visit_all_states = paths.VisitAllStatesEnsemble(state_volumes)

In [38]:
trajectory = engine_high.generate(template, [visit_all_states.can_append])


Ran 3126 steps. Found states [F,A,D,B,E,C]. Looking for [].

Output the long trajectory and see if we hit all states


In [39]:
plot.new()
plot.main()
plot.add_trajectory(trajectory)



In [40]:
tps= paths.TPSNetwork.from_states_all_to_all(vol_state.values())
tps_ensemble = tps.sampling_ensembles[0]
trajectories = tps_ensemble.split(trajectory)

In [41]:
print(trajectories)


[Trajectory[70], Trajectory[138], Trajectory[107], Trajectory[42], Trajectory[21], Trajectory[61], Trajectory[132], Trajectory[60], Trajectory[122], Trajectory[34], Trajectory[16], Trajectory[47], Trajectory[209], Trajectory[13], Trajectory[12], Trajectory[74], Trajectory[49], Trajectory[51], Trajectory[30], Trajectory[12], Trajectory[25], Trajectory[28], Trajectory[9], Trajectory[93], Trajectory[64], Trajectory[37]]

Find initial samples

It can be difficult to get initial samples for an ensemble for various reasons. And in fact for this example it might be the most tricky part in setting up the path simulation.

In theory you could just pick a frame and extend forward and backward until an ensemble reports cannot append anymore and check if that sample is in the ensemble. While this works in many cases it can be rather inefficient. For us it is better to reuse the previously computed trajectories as a basis to generate samples.

Bottomline: The next command just does what you would try to do with the long trajectory for you: Use split and extend to generate the required set of samples to start.

If you are interested in details keep reading, otherwise execute the next cell.

To do so, we use a number of functions from Ensemble that will try to generate a sample from a list of initial trajectories in different ways:

  1. ensemble.get_sample_from_trajectories : directly search for candidate sample among the given trajectories
  2. ensemble.split_sample_from_trajectories : split the given trajectories in valid samples
  3. ensemble.extend_sample_from_trajectories : try to extend suitable sub-trajectories into valid samples

Instead of calling these functions directly we make use of a function from MoveScheme that uses its knowledge about the necessary ensembles to run these function for all necessary ensembles to create a suitable set of initial samples.

When doing this there are several aspects that we might want to take into account

  1. also use reversed copies and try these
  2. avoid reusing samples for better decorrelation.
  3. try to use smaller trajectories as these are usually better equilibrated

The function scheme.initial_conditions_from_trajectories can take care of all of these. We will run it with the default setting but also use the extend-complex and extend-minimum strategies besides split. That means we try different strategies in a specific order.

  1. split: try to split the trajectory and look for valid samples
  2. extend-complex: try to look for suitable sub-trajectories that can be extended into valid samples. Currently this works only for MinusInterfaceEnsembles and it will extend A-X-A trajectories into Minus Ensembles.
  3. extend-minimum: try to look for trajectories that cross an interface A-X and try to extend these into a full ensemble. This one will work for TISEnsemble and MinusInterfaceEnsemble. We will use this last method to create minus ensembles for the last state found. Since we stop when we discover it, we will not have generated a sample of type A-X-A. This might also happen if we only visit a state once.

Note, that the creation of sample might fail: Extending might just not reach the desired target state. By default, it will make 3 attempts per extendable subtrajectory. The whole process may take some time. Basically because we need to split a very long trajectory and to use the shortest possible ones we need to really search for all possible sub-trajectories.


In [42]:
total_sample_set = scheme.initial_conditions_from_trajectories(
    trajectories)


Missing ensembles:
*  [Out A minus]
*  [Out B minus]
*  [Out C minus]
*  [Out D minus]
No extra ensembles.

Let's see, if we were successful. If so, the next function should not show any missing or extra ensembles.


In [43]:
print(scheme.initial_conditions_report(total_sample_set))


Missing ensembles:
*  [Out A minus]
*  [Out B minus]
*  [Out C minus]
*  [Out D minus]
No extra ensembles.


In [44]:
plt.figure(21, (12,5))
plt.subplot(121)
plt.title('High temperature')
plot.main()
for s in total_sample_set:
    plot.add_trajectory(s.trajectory, line=True)


If it does, this means that our attempt to extend was probably not successful. So we can just try again until it does. To extend an existing sample_set you need to pass it to the function.


In [45]:
# loop until we are done
while scheme.check_initial_conditions(total_sample_set)[0]:
    total_sample_set = scheme.initial_conditions_from_trajectories(
        trajectory,
        sample_set=total_sample_set,  # this is new
        strategies=[  # we omit the `split` strategy
            'extend-complex',
            'extend-minimal'],
        engine=engine_high)


No missing ensembles.
No extra ensembles.

In [46]:
plt.figure(21, (12,5))
plt.subplot(121)
plt.title('High temperature')
plot.main()
for s in total_sample_set:
    plot.add_trajectory(s.trajectory, line=True)


Done.

Equilibration

For the next steps we need the engine running at the desired (room) temperature. So we create a new engine. Since we might run on a local machine and do not have several instances of GPU available we will unload the existing engine and create a new one.


In [47]:
engine_high.unload_context()  # delete the current openmm.Context object
engine_low.initialize(platform)

refresh_output('Low-Engine uses', refresh=False)
print('platform `%s`' % engine_low.platform)
print('temperature `%6.2f K' % (
    float(engine_low.integrator.getGlobalVariableByName('kT')) / 0.0083144621))


Low-Engine usesplatform `CPU`
temperature `300.00 K

In molecular dynamics, you need to equilibrate if you don't start with an equilibrium frame (e.g., if you start with solvent molecules on a grid, your system should equilibrate before you start taking statistics). Similarly, if you start with a set of paths which are far from the path ensemble equilibrium, you need to equilibrate. This could either be because your trajectories are not from the real dynamics (generated with metadynamics, high temperature, etc.) or because your trajectories are not likely representatives of the path ensemble (e.g., if you put transition trajectories into all interfaces).

As with MD, running equilibration can be the same process as running the total simulation. However, in path sampling, it doesn't have to be: we can equilibrate without replica exchange moves or path reversal moves, for example. In the example below, we create a MoveScheme that only includes shooting movers.


In [48]:
equil_scheme = paths.OneWayShootingMoveScheme(mstis, engine=engine_low)

Note, that some Schemes may change the actual required set of initial samples. For the equilibration we apply shooting moves only to TIS ensembles and not to the MinusInterfaceEnsembles.

Create the PathSampler object that can run the equilibration.


In [49]:
equilibration = paths.PathSampling(
    storage=storage,
    sample_set=total_sample_set,
    move_scheme=equil_scheme,
)

And run lots of equilibration steps. This is not really necessary, but we generated from the wrong path distribution and this should give more likeli paths for the right temperature.


In [50]:
equilibration.run(500)
equilibrated_sset = equilibration.sample_set


Working on Monte Carlo cycle number 500
Running for 32 minutes 31 seconds -  3.91 seconds per step
Estimated time remaining: 3 seconds
DONE! Completed 500 Monte Carlo cycles.

Let's have a quick look how many frames in TIS ensembles are already generated by the default engine at 300K and how many were done using the high engine at 1000K.


In [51]:
engine_list = {}

unique_snapshots = set(sum(
    [
        samp.trajectory for samp in equilibrated_sset 
        if isinstance(samp.ensemble, paths.TISEnsemble)
    ], 
    []))

for samp in equilibrated_sset:
    if isinstance(samp.ensemble, paths.TISEnsemble):
        for snap in samp.trajectory:
            eng = snap.engine
            engine_list[eng] = engine_list.get(eng, 0) + 1
        
for eng, counts in engine_list.items():
    print('%20s : %6d' % (eng.name, counts))


             default :   1310

Finally, save the list of samples for later without any reference to previous samples. This is necessary since usually a sample knows its origin sample and saving a sample as is, would trigger saving the whole history of all intermediate samples used. Since we are not interested in the history of equilibration, this saves a lot of storage.


In [52]:
storage.tag['sampleset'] = equilibrated_sset.copy_without_parents()

Let's have a final look at what we cover with all our initial samples.


In [53]:
for s in total_sample_set:
    print(s)


Sample(RepID: 0, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11eb62160>, 70 steps)
Sample(RepID: 1, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ebec400>, 70 steps)
Sample(RepID: 2, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ebe8cc0>, 70 steps)
Sample(RepID: 3, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11eb6b390>, 70 steps)
Sample(RepID: 4, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec05320>, 138 steps)
Sample(RepID: 5, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec08438>, 138 steps)
Sample(RepID: 6, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec0d2e8>, 138 steps)
Sample(RepID: 7, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec11320>, 138 steps)
Sample(RepID: 8, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec1de48>, 61 steps)
Sample(RepID: 9, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec22e48>, 61 steps)
Sample(RepID: 10, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec25a90>, 61 steps)
Sample(RepID: 11, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec36630>, 21 steps)
Sample(RepID: 12, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec39438>, 21 steps)
Sample(RepID: 13, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec3e358>, 21 steps)
Sample(RepID: 14, Ens: <openpathsampling.ensemble.UnionEnsemble object at 0x11ec5aa58>, 70 steps)
Sample(RepID: 15, Ens: <openpathsampling.ensemble.MinusInterfaceEnsemble object at 0x11ebf8940>, 57 steps)
Sample(RepID: 16, Ens: <openpathsampling.ensemble.MinusInterfaceEnsemble object at 0x11ec147f0>, 66 steps)
Sample(RepID: 17, Ens: <openpathsampling.ensemble.MinusInterfaceEnsemble object at 0x11ec28b70>, 24 steps)
Sample(RepID: 18, Ens: <openpathsampling.ensemble.MinusInterfaceEnsemble object at 0x11ec424a8>, 83 steps)

In [54]:
for s in equilibrated_sset:
    print(s)


Sample(RepID: 14, Ens: <openpathsampling.ensemble.UnionEnsemble object at 0x11ec5aa58>, 70 steps)
Sample(RepID: 15, Ens: <openpathsampling.ensemble.MinusInterfaceEnsemble object at 0x11ebf8940>, 57 steps)
Sample(RepID: 16, Ens: <openpathsampling.ensemble.MinusInterfaceEnsemble object at 0x11ec147f0>, 66 steps)
Sample(RepID: 17, Ens: <openpathsampling.ensemble.MinusInterfaceEnsemble object at 0x11ec28b70>, 24 steps)
Sample(RepID: 18, Ens: <openpathsampling.ensemble.MinusInterfaceEnsemble object at 0x11ec424a8>, 83 steps)
Sample(RepID: 10, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec25a90>, 113 steps)
Sample(RepID: 5, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec08438>, 41 steps)
Sample(RepID: 4, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec05320>, 167 steps)
Sample(RepID: 7, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec11320>, 97 steps)
Sample(RepID: 13, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec3e358>, 47 steps)
Sample(RepID: 3, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11eb6b390>, 99 steps)
Sample(RepID: 1, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ebec400>, 29 steps)
Sample(RepID: 11, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec36630>, 24 steps)
Sample(RepID: 9, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec22e48>, 56 steps)
Sample(RepID: 2, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ebe8cc0>, 109 steps)
Sample(RepID: 8, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec1de48>, 12 steps)
Sample(RepID: 12, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec39438>, 109 steps)
Sample(RepID: 6, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11ec0d2e8>, 373 steps)
Sample(RepID: 0, Ens: <openpathsampling.ensemble.TISEnsemble object at 0x11eb62160>, 34 steps)

In [55]:
plt.figure(21, (12,5))
plt.subplot(121)
plt.title('High temperature')
plot.main()
for s in total_sample_set:
    plot.add_trajectory(s.trajectory, line=True)
    
plt.subplot(122)
plt.title('Equilibrated')
plot.main()
plot.zoom = 180/3.1415926
for s in equilibrated_sset:
    plot.add_trajectory(s.trajectory, line=True)


A final check that we still have a valid sampleset


In [56]:
equilibrated_sset.sanity_check()

In [57]:
print('snapshots:', len(storage.snapshots))
print('trajectories:', len(storage.trajectories))
print('samples:', len(storage.samples))
print('filesize:', storage.file_size_str)


snapshots: 43540
trajectories: 509
samples: 538
filesize: 965.66MB

In [58]:
storage.close()

In [59]:
storage =paths.AnalysisStorage("ala_mstis_bootstrap.nc")

In [60]:
print("PathMovers:", len(storage.pathmovers))
print("Engines:", len(storage.engines))
print("Samples:", len(storage.samples))
print("Ensembles:", len(storage.ensembles))
print("SampleSets:", len(storage.samplesets))
print("Snapshots:", len(storage.snapshots))
print("Trajectories:", len(storage.trajectories))
print("Networks:", len(storage.networks))


PathMovers: 45
Engines: 3
Samples: 538
Ensembles: 315
SampleSets: 502
Snapshots: 43540
Trajectories: 509
Networks: 1

In [61]:
scheme = storage.schemes[0]

In [62]:
scheme.move_summary(storage.steps)


shooting ran 100.000% (expected 100.00%) of the cycles with acceptance 335/500 (67.00%)

In [63]:
scheme.move_summary(storage.steps, 'shooting')


OneWayShootingMover Out A 0 ran 7.600% (expected 7.14%) of the cycles with acceptance 26/38 (68.42%)
OneWayShootingMover Out A 1 ran 7.600% (expected 7.14%) of the cycles with acceptance 27/38 (71.05%)
OneWayShootingMover Out A 2 ran 6.600% (expected 7.14%) of the cycles with acceptance 19/33 (57.58%)
OneWayShootingMover Out A 3 ran 5.400% (expected 7.14%) of the cycles with acceptance 19/27 (70.37%)
OneWayShootingMover Out B 0 ran 5.000% (expected 7.14%) of the cycles with acceptance 17/25 (68.00%)
OneWayShootingMover Out B 1 ran 7.000% (expected 7.14%) of the cycles with acceptance 14/35 (40.00%)
OneWayShootingMover Out B 2 ran 8.600% (expected 7.14%) of the cycles with acceptance 35/43 (81.40%)
OneWayShootingMover Out B 3 ran 7.200% (expected 7.14%) of the cycles with acceptance 18/36 (50.00%)
OneWayShootingMover Out C 0 ran 7.200% (expected 7.14%) of the cycles with acceptance 27/36 (75.00%)
OneWayShootingMover Out C 1 ran 8.000% (expected 7.14%) of the cycles with acceptance 30/40 (75.00%)
OneWayShootingMover Out C 2 ran 5.200% (expected 7.14%) of the cycles with acceptance 16/26 (61.54%)
OneWayShootingMover Out D 0 ran 8.400% (expected 7.14%) of the cycles with acceptance 34/42 (80.95%)
OneWayShootingMover Out D 1 ran 8.600% (expected 7.14%) of the cycles with acceptance 29/43 (67.44%)
OneWayShootingMover Out D 2 ran 7.600% (expected 7.14%) of the cycles with acceptance 24/38 (63.16%)
/Users/dwhs/Dropbox/pysrc/openpathsampling/openpathsampling/high_level/move_scheme.py:889: UserWarning: Move acceptance already calculated. The steps parameter will be ignored.
  warnings.warn("Move acceptance already calculated. "

In [ ]:


In [64]:
tree = ops_vis.PathTree(
        storage.steps[0:500],
        ops_vis.ReplicaEvolution(
            replica=0
        )
    )

f = open("myfile.svg","w") 
f.write(tree.svg())
f.close()
SVG(tree.svg())


Out[64]:
+BBBFBBBFFFFFBBBBFFBFFBBFBcorstep033394772129139141156167191216219250252254256352395411415429465477495498

In [65]:
path_lengths = [len(step.active[7].trajectory) for step in storage.steps]
plt.hist(path_lengths, bins=40, alpha=0.5);
print("Maximum:", max(path_lengths), "("+str(max(path_lengths)*engine_low.snapshot_timestep)+")")
print("Average:", "{0:.2f}".format(np.mean(path_lengths)), "("+(np.mean(path_lengths)*engine_low.snapshot_timestep).format("%.3f")+")")


Maximum: 262 (5.24 ps)
Average: 118.10 (2.362 ps)

In [66]:
traj = storage.steps[-1].active[0].trajectory

In [67]:
len(traj)


Out[67]:
34

In [68]:
print((phi(traj))*(180/np.pi))
print((psi(traj))*(180/np.pi))


[-147.13214  -139.79378  -127.82453  -125.45244  -117.341965 -126.19804
 -123.69993  -116.412895 -119.310715 -113.97085  -119.34421  -122.82683
 -126.818436 -128.6968   -134.68309  -140.4169   -137.56593  -147.14778
 -134.03882  -149.24098  -137.05484  -136.05605  -147.38     -146.77097
 -156.80222  -148.07848  -153.852    -139.0577   -142.39156  -132.07857
 -125.6701   -134.29102  -139.17616  -152.39551 ]
[ 156.40907  157.90178  160.98724  172.46529  177.25502 -178.74725
 -174.92116 -166.73091 -166.93466 -175.89244 -172.20737 -173.93083
 -163.24199 -170.36339 -175.68338 -167.13893 -172.74031 -177.50563
 -172.97275 -176.91379 -165.01842 -169.9785  -177.47803 -170.0795
  178.7047   178.79144  174.10066  176.67365  179.78653  177.75027
  172.1333   170.91331  165.08852  154.3578 ]

In [ ]: