Advertisement
Guest User

Untitled

a guest
May 16th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.46 KB | None | 0 0
  1. class ABCTypeEpoxyLJHarmonicSimulation(ABCTypeEpoxySimulation):
  2.     """Simulations class for ABCTypeEpoxySimulation where LJ is used as the
  3.    conservative force and uses the langevin integrator.
  4.       """
  5.     def __init__(self,
  6.                  sim_name,
  7.                  mix_time,
  8.                  mix_kt,
  9.                  temp_prof,
  10.                  output_dir,
  11.                  AA_interaction=1.0,
  12.                  BB_interaction=1.0,
  13.                  CC_interaction=1.0,
  14.                  AB_interaction=1.0,
  15.                  AC_interaction=1.0,
  16.                  BC_interaction=1.0,
  17.                  AA_sigma=1.0,
  18.                  BB_sigma=1.0,
  19.                  CC_sigma=1.0,
  20.                  shrink_time=1e6,
  21.                  shrinkT=2.0,
  22.                  AA_alpha=1.0,
  23.                  AB_alpha=0.0,
  24.                  AC_alpha=0.0,
  25.                  BC_alpha=0.0,
  26.                  tau=0.1,
  27.                  tauP=0.2,
  28.                  P=1.0,
  29.                  integrator=cmn.Integrators.LANGEVIN.name,
  30.                  *args,
  31.                  **kwargs):
  32.         ABCTypeEpoxySimulation.__init__(self,
  33.                                         sim_name,
  34.                                         mix_time,
  35.                                         mix_kt,
  36.                                         temp_prof,
  37.                                         output_dir,
  38.                                         *args,
  39.                                         **kwargs)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement