Changes in main loop. It allows setting inner, outer loop and initial mc sweeps to be discarded
| | |
| | | |
| | | |
| | | |
| | | ts_vesicle *parsetape(ts_uint *iterations){ |
| | | ts_vesicle *parsetape(ts_uint *mcsweeps, ts_uint *inititer, ts_uint *iterations){ |
| | | long int nshell=17,ncxmax=60, ncymax=60, nczmax=60; // THIS IS DUE TO CONFUSE BUG! |
| | | char *buf=malloc(255*sizeof(char)); |
| | | long int brezveze0=1; |
| | | long int brezveze1=1; |
| | | long int brezveze2=1; |
| | | ts_double xk0=25.0, dmax=1.67,stepsize=0.15; |
| | | *iterations=1000; |
| | | long int iter=1000, init=1000, mcsw=1000; |
| | | cfg_opt_t opts[] = { |
| | | CFG_SIMPLE_INT("nshell", &nshell), |
| | | CFG_SIMPLE_FLOAT("dmax", &dmax), |
| | |
| | | CFG_SIMPLE_INT("nxmax", &ncxmax), |
| | | CFG_SIMPLE_INT("nymax", &ncymax), |
| | | CFG_SIMPLE_INT("nzmax", &nczmax), |
| | | CFG_SIMPLE_INT("iterations",iterations), |
| | | CFG_SIMPLE_INT("iterations",&iter), |
| | | CFG_SIMPLE_INT("mcsweeps",&mcsw), |
| | | CFG_SIMPLE_INT("inititer", &init), |
| | | CFG_SIMPLE_BOOL("quiet",&quiet), |
| | | CFG_SIMPLE_STR("multiprocessing",buf), |
| | | CFG_SIMPLE_INT("smp_cores",&brezveze0), |
| | |
| | | fatal("Invalid tape!",100); |
| | | } |
| | | ts_vesicle *vesicle; |
| | | *iterations=iter; |
| | | *inititer=init; |
| | | *mcsweeps=mcsw; |
| | | vesicle=initial_distribution_dipyramid(nshell,ncxmax,ncymax,nczmax,stepsize); |
| | | vesicle->nshell=nshell; |
| | | vesicle->dmax=dmax*dmax; |
| | |
| | | ts_bool write_vertex_vtk_file(ts_vesicle *vesicle,ts_char *filename, ts_char *text); |
| | | ts_bool write_vertex_xml_file(ts_vesicle *vesicle, ts_uint timestepno); |
| | | ts_bool write_master_xml_file(ts_char *filename); |
| | | ts_vesicle *parsetape(ts_uint *iterations); |
| | | |
| | | ts_vesicle *parsetape(ts_uint *mcsweeps, ts_uint *inititer, ts_uint *iterations); |
| | | |
| | | #endif |
| | |
| | | */ |
| | | |
| | | int main(int argv, char *argc[]){ |
| | | ts_uint i,n; |
| | | ts_uint inititer,mcsweeps, iterations; |
| | | ts_vesicle *vesicle; |
| | | /* THIS SHOULD GO INTO UNIT TEST |
| | | ts_bool retval; |
| | |
| | | vtx_list_free(vlist1); |
| | | printf("Tests complete.\n"); |
| | | */ |
| | | vesicle=parsetape(&n); |
| | | vesicle=parsetape(&mcsweeps, &inititer, &iterations); |
| | | run_simulation(vesicle, mcsweeps, inititer, iterations); |
| | | |
| | | //these four must come from parsetype! |
| | | /* |
| | | vesicle->dmax=1.67*1.67; |
| | | vesicle->stepsize=0.15; |
| | | vesicle->clist->max_occupancy=8; |
| | | vesicle->bending_rigidity=25.0; |
| | | */ |
| | | // fprintf(stderr,"xk=%f\n",vesicle->bending_rigidity); |
| | | |
| | | centermass(vesicle); |
| | | cell_occupation(vesicle); |
| | | for(i=0;i<n;i++){ |
| | | single_timestep(vesicle); |
| | | if(i%100==0){ |
| | | write_vertex_xml_file(vesicle,i/100); |
| | | } |
| | | } |
| | | write_master_xml_file("test.pvd"); |
| | | write_dout_fcompat_file(vesicle,"dout"); |
| | | vesicle_free(vesicle); |
| | |
| | | |
| | | |
| | | ####### Program Control ############ |
| | | #how many iteration are there in a run? |
| | | iterations=20000 |
| | | #how many MC sweeps between subsequent records of states to disk |
| | | mcsweeps=100 |
| | | #how many initial mcsweeps*inititer MC sweeps before recording to disk? |
| | | inititer=100 |
| | | #how many records do you want on the disk iteration are there in a run? |
| | | iterations=1000 |
| | | |
| | | |
| | | #shut up if we are using cluster!!! |
| | | quiet=false |
| | |
| | | #include "timestep.h" |
| | | #include "vertexmove.h" |
| | | #include "bondflip.h" |
| | | #include "frame.h" |
| | | #include "io.h" |
| | | ts_bool run_simulation(ts_vesicle *vesicle, ts_uint mcsweeps, ts_uint inititer, ts_uint iterations){ |
| | | ts_uint i, j; |
| | | |
| | | centermass(vesicle); |
| | | cell_occupation(vesicle); |
| | | ts_fprintf(stdout, "Starting simulation (first %d x %d MC sweeps will not be recorded on disk)\n", inititer, mcsweeps); |
| | | for(i=0;i<inititer+iterations;i++){ |
| | | for(j=0;j<mcsweeps;j++){ |
| | | single_timestep(vesicle); |
| | | } |
| | | centermass(vesicle); |
| | | cell_occupation(vesicle); |
| | | if(i>inititer){ |
| | | write_vertex_xml_file(vesicle,i-inititer); |
| | | } |
| | | } |
| | | return TS_SUCCESS; |
| | | } |
| | | |
| | | ts_bool single_timestep(ts_vesicle *vesicle){ |
| | | ts_bool retval; |
| | |
| | | #ifndef _TIMESTEP_H |
| | | #define _TIMESTEP_H |
| | | ts_bool single_timestep(ts_vesicle *vesicle); |
| | | ts_bool run_simulation(ts_vesicle *vesicle, ts_uint mcsweeps, ts_uint inititer, ts_uint iterations); |
| | | #endif |