From ad4e7069f10b80446be8d13eba28a03c2c642a3b Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Fri, 13 Jun 2014 20:37:10 +0000 Subject: [PATCH] Now it works after remake! However, some crossection segments are in the list multiple times. --- src/timestep.c | 8 +------- 1 files changed, 1 insertions(+), 7 deletions(-) diff --git a/src/timestep.c b/src/timestep.c index 0ec4ce0..0c56618 100644 --- a/src/timestep.c +++ b/src/timestep.c @@ -25,7 +25,6 @@ // char filename[255]; FILE *fd=fopen("statistics.csv","w"); - FILE *fdx; ts_coord_list *pts; if(fd==NULL){ fatal("Cannot open statistics.csv file for writing",1); @@ -71,13 +70,8 @@ if(i>=inititer){ write_vertex_xml_file(vesicle,i-inititer); write_master_xml_file("test.pvd"); - fdx= fopen("test.txt","w"); pts=get_crossection_with_plane(vesicle, 0.0,0.0,1.0,0.0); - for(k=0;k<pts->n;k++){ - fprintf(fdx,"%e, %e, %e\n",pts->coord[k]->e1, pts->coord[k]->e2, pts->coord[k]->e3); - } - crossection_to_png(pts, "test.png"); - fclose(fdx); + save_crossection_snapshot(pts,i-inititer); free(pts); epochtime=get_epoch(); gyration_eigen(vesicle, &l1, &l2, &l3); -- Gitblit v1.9.3