Trisurf Monte Carlo simulator
mihaf
2014-03-18 58230a2591414fb38b9ec8d3a76439b290cb0a6f
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
e86357 6 # bending rigidity of the membrane (in units kT)
2dcc65 7 xk0=10.0
e86357 8 # max step size (in units l_min)
a6b1b5 9 stepsize=0.15
e86357 10
M 11 # Pressure calculations
12 # (pswitch=1: calc. p*dV energy contribution)
414b8a 13 pswitch = 0
2dcc65 14 # pressure difference: p_inside - p_outside (in units kT/l_min^3):
e86357 15 pressure=0.0
a6b1b5 16
624f81 17 ####### Polymer (brush) definitions ###########
a2db52 18 # npoly is a number of polymers attached to npoly distinct vertices on vesicle
152052 19 npoly=0
48bb92 20 # nmono is a number of monomers in each polymer
f8e6ba 21 nmono=10
48bb92 22 # Spring constant between monomers of the polymer
M 23 k_spring=800
a6b1b5 24
624f81 25 ####### Filament (inside the vesicle) definitions ###########
58230a 26 # nfil is a number of filaments inside the vesicle
M 27 nfil=1
28 # nfono is a number of monomers in each filament
29 nfono=300
624f81 30 # Spring constant between monomers of the filament
58230a 31
M 32 ####### Nucleus (inside the vesicle) ###########
33 # Radius of an impenetrable hard sphere inside the vesicle
34 R_nucleus=5
624f81 35
a6b1b5 36 #######  Cell definitions ############
SP 37 nxmax=60
38 nymax=60
39 nzmax=60
40
41
42 ####### Program Control ############
d7a113 43 #how many MC sweeps between subsequent records of states to disk
58230a 44 mcsweeps=300
d7a113 45 #how many initial mcsweeps*inititer MC sweeps before recording to disk?
58230a 46 inititer=0
d7a113 47 #how many records do you want on the disk iteration are there in a run?
58230a 48 iterations=300
d7a113 49
a6b1b5 50
SP 51 #shut up if we are using cluster!!!
52 quiet=false
f74313 53
SP 54 #what type of multiprocessing? (*none, smp, cluster, distributed, cuda, auto)
55 #currently only none makes sense.
56 multiprocessing=none
57 #how many cores are allowed to process in SMP?
58 smp_cores=2
59 #how many nodes in cluster?
60 cluster_nodes=50
61 #max number of processes in distributed (voluntary) environment
62 distributed_processes=50
63 #cuda options???