Trisurf Monte Carlo simulator
Samo Penic
2014-12-16 fda1ab6babed79842534b3a21a6ee96bc26f9d93
commit | author | age
a6b1b5 1 ####### Vesicle definitions ###########
SP 2 # nshell is a number of divisions of dipyramid
4a1b27 3 nshell=17
e86357 4 # dmax is the max. bond length (in units l_min)
304510 5 dmax=1.7
ea1cce 6 # dmin_interspecies in the min. dist. between different vertex species (in units l_min)
fe24d2 7 dmin_interspecies=1.2
e86357 8 # bending rigidity of the membrane (in units kT)
fda1ab 9 xk0=20.0
e86357 10 # max step size (in units l_min)
a6b1b5 11 stepsize=0.15
e86357 12
M 13 # Pressure calculations
14 # (pswitch=1: calc. p*dV energy contribution)
f06f5f 15 pswitch = 0
2dcc65 16 # pressure difference: p_inside - p_outside (in units kT/l_min^3):
611412 17 pressure=0.0
a6b1b5 18
fda1ab 19 #Constant volume constraint (0 disable constant volume, 1 enable)
SP 20 constvolswitch=0
dd5aca 21 constvolprecision=1e-14
9166cb 22
fda1ab 23 constareaswitch=0
9166cb 24
624f81 25 ####### Polymer (brush) definitions ###########
a2db52 26 # npoly is a number of polymers attached to npoly distinct vertices on vesicle
c0ae90 27 npoly=0
48bb92 28 # nmono is a number of monomers in each polymer
f8e6ba 29 nmono=10
48bb92 30 # Spring constant between monomers of the polymer
M 31 k_spring=800
a6b1b5 32
624f81 33 ####### Filament (inside the vesicle) definitions ###########
58230a 34 # nfil is a number of filaments inside the vesicle
f06f5f 35 nfil=0
58230a 36 # nfono is a number of monomers in each filament
402e8f 37 nfono=300
b30f45 38 # Persistence lenght of the filaments (in units l_min)
611412 39 xi=0
58230a 40
M 41 ####### Nucleus (inside the vesicle) ###########
42 # Radius of an impenetrable hard sphere inside the vesicle
f06f5f 43 R_nucleus=0
a6b1b5 44
SP 45 #######  Cell definitions ############
46 nxmax=60
47 nymax=60
48 nzmax=60
49
50
51 ####### Program Control ############
d7a113 52 #how many MC sweeps between subsequent records of states to disk
fda1ab 53 mcsweeps=200000
d7a113 54 #how many initial mcsweeps*inititer MC sweeps before recording to disk?
fda1ab 55 inititer=2
d7a113 56 #how many records do you want on the disk iteration are there in a run?
fda1ab 57 iterations=1000
d7a113 58
a6b1b5 59
dc77e8 60 ###### Spherical harmonics ###########
5a3862 61 # If 0 then spherical harmonics are not calculated at all.
c60a49 62 spherical_harmonics_coefficients=21
dc77e8 63
a6b1b5 64 #shut up if we are using cluster!!!
SP 65 quiet=false
f74313 66
SP 67 #what type of multiprocessing? (*none, smp, cluster, distributed, cuda, auto)
68 #currently only none makes sense.
69 multiprocessing=none
70 #how many cores are allowed to process in SMP?
71 smp_cores=2
72 #how many nodes in cluster?
73 cluster_nodes=50
74 #max number of processes in distributed (voluntary) environment
75 distributed_processes=50
76 #cuda options???