mirror of
https://gitlab.com/pimnelissen/entropic-spring.git
synced 2025-11-30 19:33:07 +01:00
update link and rubberband structures
This commit is contained in:
@ -3,7 +3,10 @@ import numpy as np
|
|||||||
from Link import Link
|
from Link import Link
|
||||||
|
|
||||||
class RubberBand:
|
class RubberBand:
|
||||||
def __init__(self, N, a=1.):
|
# class attributes
|
||||||
|
k_B = 1
|
||||||
|
|
||||||
|
def __init__(self, N, a=1., T=1.):
|
||||||
"""
|
"""
|
||||||
RubberBand is a class that can simulate a rubber band with N
|
RubberBand is a class that can simulate a rubber band with N
|
||||||
incompressible links of length a.
|
incompressible links of length a.
|
||||||
@ -11,12 +14,18 @@ class RubberBand:
|
|||||||
Parameters:
|
Parameters:
|
||||||
N (int) The number of links.
|
N (int) The number of links.
|
||||||
a (float) The fixed length of links.
|
a (float) The fixed length of links.
|
||||||
|
T (float) Temperature of the system.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
self.N = N
|
self.N = N
|
||||||
self.a = a
|
self.a = a
|
||||||
|
self.T = T
|
||||||
self.links = self.__sample_links()
|
self.links = self.__sample_links()
|
||||||
|
|
||||||
|
def w(self, f, l):
|
||||||
|
beta = (self.k_B*self.T)**(-1)
|
||||||
|
return np.exp(beta*f*l)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def length(self):
|
def length(self):
|
||||||
return self.a * np.sum([l.direction for l in self.links])
|
return self.a * np.sum([l.direction for l in self.links])
|
||||||
@ -31,5 +40,3 @@ class RubberBand:
|
|||||||
directions[samples < 0.5] = -1.
|
directions[samples < 0.5] = -1.
|
||||||
directions = directions.astype(int)
|
directions = directions.astype(int)
|
||||||
return [Link(d) for d in directions]
|
return [Link(d) for d in directions]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user