Trisurf Monte Carlo simulator
mihaf
2014-03-14 624f819d40ca2204b0a128970dcd3d9ca7e17699
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 ###########
M 26 # npoly is a number of polymers attached to npoly distinct vertices on vesicle
27 nfil=0
28 # nmono is a number of monomers in each filament
29 nfono=10
30 # Spring constant between monomers of the filament
31 k_sfring=800
32
a6b1b5 33 #######  Cell definitions ############
SP 34 nxmax=60
35 nymax=60
36 nzmax=60
37
38
39 ####### Program Control ############
d7a113 40 #how many MC sweeps between subsequent records of states to disk
2dcc65 41 mcsweeps=5000
d7a113 42 #how many initial mcsweeps*inititer MC sweeps before recording to disk?
40aa5b 43 inititer=1
d7a113 44 #how many records do you want on the disk iteration are there in a run?
2dcc65 45 iterations=1000
d7a113 46
a6b1b5 47
SP 48 #shut up if we are using cluster!!!
49 quiet=false
f74313 50
SP 51 #what type of multiprocessing? (*none, smp, cluster, distributed, cuda, auto)
52 #currently only none makes sense.
53 multiprocessing=none
54 #how many cores are allowed to process in SMP?
55 smp_cores=2
56 #how many nodes in cluster?
57 cluster_nodes=50
58 #max number of processes in distributed (voluntary) environment
59 distributed_processes=50
60 #cuda options???