From 443ba1603235e6cf668d0e24aa794c95941bc597 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@fe.uni-lj.si> Date: Mon, 09 Jul 2012 08:06:53 +0000 Subject: [PATCH] Fix in dipyramid initialization, where we had 0.25*25 as xk --- src/main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 9112278..f331f12 100644 --- a/src/main.c +++ b/src/main.c @@ -60,11 +60,11 @@ vtx_list_free(vlist1); printf("Tests complete.\n"); -vesicle=initial_distribution_dipyramid(8,60,60,60,0.15); +vesicle=initial_distribution_dipyramid(17,60,60,60,0.15); //parsetape(vesicle,&i); //these four must come from parsetype! -vesicle->dmax=1.67; +vesicle->dmax=1.67*1.67; vesicle->stepsize=0.15; vesicle->clist->max_occupancy=8; vesicle->bending_rigidity=25.0; -- Gitblit v1.9.3