Trisurf Monte Carlo simulator
Miha
2014-02-06 fedf2b217113800a15f367e111e2dbcad4a3c92c
commit | author | age
d7639a 1 #include<stdlib.h>
SP 2 #include<stdio.h>
aec47d 3 #include<math.h>
SP 4 //#include "io.h"
5 #include "general.h"
6 #include "timestep.h"
7 #include "vertexmove.h"
30ee9c 8 #include "bondflip.h"
d7a113 9 #include "frame.h"
SP 10 #include "io.h"
fedf2b 11
d7a113 12 ts_bool run_simulation(ts_vesicle *vesicle, ts_uint mcsweeps, ts_uint inititer, ts_uint iterations){
SP 13     ts_uint i, j;
14
15     centermass(vesicle);
16     cell_occupation(vesicle);
17     ts_fprintf(stdout, "Starting simulation (first %d x %d MC sweeps will not be recorded on disk)\n", inititer, mcsweeps);
18     for(i=0;i<inititer+iterations;i++){
19         for(j=0;j<mcsweeps;j++){
20             single_timestep(vesicle);
21         }
22         centermass(vesicle);
23         cell_occupation(vesicle);
24         if(i>inititer){
25             write_vertex_xml_file(vesicle,i-inititer);
26         }
27     }
28     return TS_SUCCESS;
29 }
d7639a 30
SP 31 ts_bool single_timestep(ts_vesicle *vesicle){
32     ts_bool retval;
33     ts_double rnvec[3];
fedf2b 34     ts_uint i,j,b;
aec47d 35     for(i=0;i<vesicle->vlist->n;i++){
d7639a 36         rnvec[0]=drand48();
SP 37         rnvec[1]=drand48();
38         rnvec[2]=drand48();
aec47d 39         retval=single_verticle_timestep(vesicle,vesicle->vlist->vtx[i],rnvec);
d7639a 40     }
SP 41
b7c9b3 42 //    ts_int cnt=0;
fedf2b 43     for(i=0;i<3*vesicle->vlist->n;i++){
dcf17d 44 //why is rnvec needed in bondflip?
SP 45 /*        rnvec[0]=drand48();
46         rnvec[1]=drand48();
47         rnvec[2]=drand48();
48 */ 
142a67 49     b=rand() % vesicle->blist->n;
d7639a 50         //find a bond and return a pointer to a bond...
SP 51         //call single_bondflip_timestep...
142a67 52         retval=single_bondflip_timestep(vesicle,vesicle->blist->bond[b],rnvec);
b7c9b3 53 //    if(retval==TS_SUCCESS) cnt++;        
fedf2b 54     }
M 55
56     for(i=0;i<vesicle->poly_list->n;i++){
57     for(j=0;j<vesicle->poly_list->poly[i]->vlist->n;j++){
58         rnvec[0]=drand48();
59         rnvec[1]=drand48();
60         rnvec[2]=drand48();
61         retval=single_poly_vertex_move(vesicle,vesicle->poly_list->poly[i],vesicle->poly_list->poly[i]->vlist->vtx[j],rnvec);    
62     }
63
64     }
65  
66 //    printf("Bondflip success rate in one sweep: %d/%d=%e\n", cnt,3*vesicle->blist->n,(double)cnt/(double)vesicle->blist->n/3.0);
41a035 67     if(retval);
d7639a 68     return TS_SUCCESS;
SP 69 }
70
71
72