This example shows how to set up an excluded volume restraint for a set of XYZRDecorator-style particles.
import IMP
import IMP.core
import IMP.atom
import IMP.container
# This example addes a restraint on nonbonded interactions
# after excluding a set of bonded interactions.
m= IMP.Model()
# The set of particles
ps = IMP.container.ListSingletonContainer(IMP.core.create_xyzr_particles(m, 20, 1.0))
# create a bond between two particles
bd0= IMP.atom.Bonded.setup_particle(ps.get_particle(0))
bd1= IMP.atom.Bonded.setup_particle(ps.get_particle(1))
IMP.atom.create_custom_bond(bd0, bd1, 2.0)
# Set up the nonbonded list for all pairs at are touching
# and let things move 3 before updating the list
nbl= IMP.container.ClosePairContainer(ps, 0.0, 3.0)
nbl.add_pair_filter(IMP.atom.BondedPairFilter())
# Set up excluded volume
sdps= IMP.core.SphereDistancePairScore(IMP.core.HarmonicLowerBound(0,1))
evr= IMP.container.PairsRestraint(sdps, nbl)
m.add_restraint(evr)
# Set up optimizer
o= IMP.core.ConjugateGradients()
o.set_model(m)
o.optimize(1000)
This example shows how set up excluded volume interactions between two sets of particles.
import IMP
import IMP.core
import IMP.container
# This example addes a restraint on bipartite nonbonded interactions
# after excluding a set of bonded interactions.
m= IMP.Model()
# The set of particles
ps0 = IMP.container.ListSingletonContainer(IMP.core.create_xyzr_particles(m, 20, 1.0))
ps1 = IMP.container.ListSingletonContainer(IMP.core.create_xyzr_particles(m, 20, 2.0))
# Set up the nonbonded list
nbl= IMP.container.CloseBipartitePairContainer(ps0, ps1,0,1)
# Set up excluded volume
ps= IMP.core.SphereDistancePairScore(IMP.core.HarmonicLowerBound(0,1))
evr= IMP.container.PairsRestraint(ps, nbl)
m.add_restraint(evr)
# Set up optimizer
o= IMP.core.ConjugateGradients()
o.set_model(m)
o.optimize(1000)
This fragment shows how to restrain a set of points stored in a SingletonContainer in a sphere of radius 'radius' centered around 'center'.
import IMP.example
radius=10
stiffness=2
center= IMP.algebra.Vector3D(1,2,3)
(m,c)=IMP.example.create_model_and_particles()
ub= IMP.core.HarmonicUpperBound(radius, stiffness)
ss= IMP.core.DistanceToSingletonScore(ub, center)
r= IMP.container.SingletonsRestraint(ss, c)
m.add_restraint(r)
m.evaluate(False)
Shows how to use and visualize the IMP::misc::ConnectingPairContainer.
import IMP.container
import IMP.display
m= IMP.Model()
ds=IMP.core.create_xyzr_particles(m, 20, .1)
sc= IMP.container.ListSingletonContainer(ds)
cpc= IMP.container.ConnectingPairContainer(sc, .1, True)
m.evaluate(False)
pg= IMP.display.EdgePairsGeometry(cpc)
w= IMP.display.ChimeraWriter("pairs.py")
w.add_geometry(pg)
print pg.get_name()
del w