Trisurf Monte Carlo simulator
Samo Penic
2016-03-01 86b69b3803b1b31c040cede6b47bf617561b3b81
commit | author | age
a6b1b5 1 ####### Vesicle definitions ###########
SP 2 # nshell is a number of divisions of dipyramid
a3dbf0 3 nshell=5
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
267433 19 #Constant volume constraint (0 disable constant volume, 1 enable wiht additional vertex move, 2 enable with epsvol)
7b0c07 20 constvolswitch=2
dd5aca 21 constvolprecision=1e-14
9166cb 22
c0ae90 23 #Constant area constraint (0 disable constant area, 2 enable constant area with epsarea)
SP 24 constareaswitch=2
9166cb 25
624f81 26 ####### Polymer (brush) definitions ###########
a2db52 27 # npoly is a number of polymers attached to npoly distinct vertices on vesicle
86b69b 28 npoly=2
48bb92 29 # nmono is a number of monomers in each polymer
f8e6ba 30 nmono=10
48bb92 31 # Spring constant between monomers of the polymer
M 32 k_spring=800
a6b1b5 33
624f81 34 ####### Filament (inside the vesicle) definitions ###########
58230a 35 # nfil is a number of filaments inside the vesicle
f06f5f 36 nfil=0
58230a 37 # nfono is a number of monomers in each filament
402e8f 38 nfono=300
b30f45 39 # Persistence lenght of the filaments (in units l_min)
611412 40 xi=0
58230a 41
M 42 ####### Nucleus (inside the vesicle) ###########
43 # Radius of an impenetrable hard sphere inside the vesicle
f06f5f 44 R_nucleus=0
a6b1b5 45
SP 46 #######  Cell definitions ############
47 nxmax=60
48 nymax=60
49 nzmax=60
50
51
52 ####### Program Control ############
d7a113 53 #how many MC sweeps between subsequent records of states to disk
a5e543 54 #200000
5a3862 55 mcsweeps=20
d7a113 56 #how many initial mcsweeps*inititer MC sweeps before recording to disk?
a5e543 57 #2
5a3862 58 inititer=0
d7a113 59 #how many records do you want on the disk iteration are there in a run?
a5e543 60 #10000
M 61 iterations=100
d7a113 62
a6b1b5 63
dc77e8 64 ###### Spherical harmonics ###########
5a3862 65 # If 0 then spherical harmonics are not calculated at all.
c60a49 66 spherical_harmonics_coefficients=21
dc77e8 67
a6b1b5 68 #shut up if we are using cluster!!!
SP 69 quiet=false
f74313 70
SP 71 #what type of multiprocessing? (*none, smp, cluster, distributed, cuda, auto)
72 #currently only none makes sense.
73 multiprocessing=none
74 #how many cores are allowed to process in SMP?
75 smp_cores=2
76 #how many nodes in cluster?
77 cluster_nodes=50
78 #max number of processes in distributed (voluntary) environment
79 distributed_processes=50
80 #cuda options???