From a00f10fd48a1de31c3ac923c2106969f84e831e0 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@fe.uni-lj.si> Date: Mon, 09 Mar 2015 11:09:31 +0000 Subject: [PATCH] Documented energy.c --- src/spherical_trisurf.c | 28 +++------------------------- 1 files changed, 3 insertions(+), 25 deletions(-) diff --git a/src/spherical_trisurf.c b/src/spherical_trisurf.c index 7fa40f9..0669981 100644 --- a/src/spherical_trisurf.c +++ b/src/spherical_trisurf.c @@ -61,10 +61,11 @@ calculateUlm(vesicle); //preloop: +ts_double vmsr, bfsr; for(i=0;i<1000;i++){ cell_occupation(vesicle); for(j=0;j<1000;j++){ - single_timestep(vesicle); + single_timestep(vesicle, &vmsr, &bfsr); } centermass(vesicle); fprintf(stderr, "Preloop %d completed.\n",i+1); @@ -75,7 +76,7 @@ for(j=0;j<200;j++){ cell_occupation(vesicle); for(k=0;k<5;k++){ - single_timestep(vesicle); + single_timestep(vesicle, &vmsr, &bfsr); } centermass(vesicle); } @@ -103,26 +104,3 @@ -ts_bool saveAvgUlm2(ts_vesicle *vesicle){ - - FILE *fh; - - fh=fopen("sph2out.dat", "w"); - if(fh==NULL){ - err("Cannot open file %s for writing"); - return TS_FAIL; - } - - ts_spharm *sph=vesicle->sphHarmonics; - ts_int i,j; - fprintf(fh,"l,\tm,\tulm^2avg\n"); - for(i=0;i<sph->l;i++){ - for(j=0;j<2*i+1;j++){ - fprintf(fh,"%d,\t%d,\t%e\n", i, j-i, sph->sumUlm2[i][j]/(ts_double)sph->N); - - } - fprintf(fh,"\n"); - } - fclose(fh); - return TS_SUCCESS; -} -- Gitblit v1.9.3