From 0efcaf0c2a7b87c664a6f78a9a25b53a4260aecd Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Thu, 05 Jan 2017 16:22:24 +0000
Subject: [PATCH] Removed the python scripts to separate project.

---
 src/initial_distribution.c |   19 +++++++++++--------
 1 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/src/initial_distribution.c b/src/initial_distribution.c
index d8e917f..143d9d3 100644
--- a/src/initial_distribution.c
+++ b/src/initial_distribution.c
@@ -44,6 +44,7 @@
 	vesicle=initial_distribution_dipyramid(tape->nshell,tape->ncxmax,tape->ncymax,tape->nczmax,tape->stepsize);
     	vesicle->tape=tape;
 	set_vesicle_values_from_tape(vesicle);
+		initial_population_with_c0(vesicle,tape);
 	return vesicle;
 }
 
@@ -100,7 +101,7 @@
 	vesicle->clist->ncmax[0]=tape->ncxmax;
 	vesicle->clist->ncmax[1]=tape->ncymax;
 	vesicle->clist->ncmax[2]=tape->nczmax;
-	vesicle->clist->max_occupancy=8; /* hard coded max occupancy? */
+	vesicle->clist->max_occupancy=16; /* hard coded max occupancy? */
 
 	vesicle->pressure= tape->pressure;
 	vesicle->pswitch=tape->pswitch;
@@ -111,7 +112,14 @@
         vesicle->sphHarmonics=NULL;
     }
 
-	int rndvtx;
+    
+    return TS_SUCCESS;
+
+}
+
+
+ts_bool initial_population_with_c0(ts_vesicle *vesicle, ts_tape *tape){
+	int rndvtx,i,j;
 	if(tape->number_of_vertices_with_c0>0){
 		ts_fprintf(stderr,"Setting values for spontaneous curvature as defined in tape\n");
 		j=0;
@@ -133,13 +141,8 @@
 			sweep_attraction_bond_energy(vesicle);
 		}
 	}
-    
-    return TS_SUCCESS;
-
+	return TS_SUCCESS;
 }
-
-
-
 
 
 ts_bool pentagonal_dipyramid_vertex_distribution(ts_vertex_list *vlist){

--
Gitblit v1.9.3