Trisurf Monte Carlo simulator
Miha
2012-07-13 59c7f5f163b6d8997df61dc393e195cd3ee47ff1
src/spherical_trisurf.c
@@ -25,6 +25,9 @@
vesicle=initial_distribution_dipyramid(17,60,60,60,0.15);
//parsetape(vesicle,&i);
//similar to nmax in fortran code
ts_uint nmax;
//these four must come from parsetype!
vesicle->dmax=1.67*1.67;
vesicle->stepsize=0.15;
@@ -57,9 +60,9 @@
calculateYlmi(vesicle);
calculateUlm(vesicle);
for(i=0;i<1;i++){
   for(j=0;j<20;j++){
nmax=1000;
for(i=0;i<nmax;i++){
   for(j=0;j<200;j++){
      cell_occupation(vesicle);
      for(k=0;k<5;k++){
      single_timestep(vesicle);
@@ -77,7 +80,7 @@
    saveAvgUlm2(vesicle);
   write_vertex_xml_file(vesicle,i);
   fprintf(stderr, "Loop %d completed.\n",i+1);
   fprintf(stderr, "Loop %d out of %d completed.\n",i+1,nmax);
}