From e9c87efeb9235748e8d19a3f5a067ec442d8a500 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@fe.uni-lj.si> Date: Thu, 17 Apr 2014 07:32:43 +0000 Subject: [PATCH] Changed atan to atan2 for transfroming coordinates from cartesian to spherical. Added function for reverse transformation --- src/main.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/main.c b/src/main.c index eef5835..9bb3430 100644 --- a/src/main.c +++ b/src/main.c @@ -11,6 +11,7 @@ #include "frame.h" #include "timestep.h" #include "poly.h" +#include "sh.h" /** Entrance function to the program * @param argv is a number of parameters used in program call (including the program name @@ -50,6 +51,13 @@ vesicle->dmax=tape->dmax*tape->dmax; poly_assign_filament_xi(vesicle,tape); vesicle->clist->dmin_interspecies = tape->dmin_interspecies*tape->dmin_interspecies; + /* spherical harmonics */ + if(tape->shc>0){ + vesicle->sphHarmonics=sph_init(vesicle->vlist,tape->shc); + } + else { + vesicle->sphHarmonics=NULL; + } if(command_line_args.reset_iteration_count) start_iteration=tape->inititer; else start_iteration++; -- Gitblit v1.9.3