Trisurf Monte Carlo simulator
Samo Penic
2014-04-28 b36841fb1903e9945cb4a1dbc4dd7761556e07e2
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)
2dcc65 9 xk0=10.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
624f81 19 ####### Polymer (brush) definitions ###########
a2db52 20 # npoly is a number of polymers attached to npoly distinct vertices on vesicle
ea1cce 21 npoly=0
48bb92 22 # nmono is a number of monomers in each polymer
f8e6ba 23 nmono=10
48bb92 24 # Spring constant between monomers of the polymer
M 25 k_spring=800
a6b1b5 26
624f81 27 ####### Filament (inside the vesicle) definitions ###########
58230a 28 # nfil is a number of filaments inside the vesicle
f06f5f 29 nfil=0
58230a 30 # nfono is a number of monomers in each filament
402e8f 31 nfono=300
b30f45 32 # Persistence lenght of the filaments (in units l_min)
611412 33 xi=0
58230a 34
M 35 ####### Nucleus (inside the vesicle) ###########
36 # Radius of an impenetrable hard sphere inside the vesicle
f06f5f 37 R_nucleus=0
a6b1b5 38
SP 39 #######  Cell definitions ############
40 nxmax=60
41 nymax=60
42 nzmax=60
43
44
45 ####### Program Control ############
d7a113 46 #how many MC sweeps between subsequent records of states to disk
22cdfd 47 mcsweeps=2500
d7a113 48 #how many initial mcsweeps*inititer MC sweeps before recording to disk?
58230a 49 inititer=0
d7a113 50 #how many records do you want on the disk iteration are there in a run?
f06f5f 51 iterations=15000
d7a113 52
a6b1b5 53
dc77e8 54 ###### Spherical harmonics ###########
22cdfd 55 spherical_harmonics_coefficients=21
dc77e8 56
a6b1b5 57 #shut up if we are using cluster!!!
SP 58 quiet=false
f74313 59
SP 60 #what type of multiprocessing? (*none, smp, cluster, distributed, cuda, auto)
61 #currently only none makes sense.
62 multiprocessing=none
63 #how many cores are allowed to process in SMP?
64 smp_cores=2
65 #how many nodes in cluster?
66 cluster_nodes=50
67 #max number of processes in distributed (voluntary) environment
68 distributed_processes=50
69 #cuda options???