From d5d78a49c6b51fb1f6f0661d063034eaf65e02f7 Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Wed, 25 Sep 2019 09:20:36 +0000
Subject: [PATCH] Constant volume and constant area fix. Removed spherical harmonics calculations in simulations. No ulm2.cvs and state.dat files are produced anymore

---
 src/shcomplex.c |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/src/shcomplex.c b/src/shcomplex.c
index bd3a733..4090346 100644
--- a/src/shcomplex.c
+++ b/src/shcomplex.c
@@ -1,6 +1,7 @@
 /* vim: set ts=4 sts=4 sw=4 noet : */
 #include<math.h>
 #include<stdlib.h>
+#include<string.h>
 #include<gsl/gsl_complex.h>
 #include<gsl/gsl_complex_math.h>
 #include<gsl/gsl_sf_legendre.h>
@@ -117,6 +118,27 @@
     return TS_SUCCESS;
 }
 
+char *Ulm2Complex2String(ts_vesicle *vesicle){
+	ts_int i,j;
+	char *strng=(char *)calloc(5000, sizeof(char));
+	char tmpstrng[255];
+	for(i=0;i<vesicle->sphHarmonics->l;i++){
+    		for(j=i;j<2*i+1;j++){
+			sprintf(tmpstrng,"%e ", gsl_complex_abs2(vesicle->sphHarmonics->ulmComplex[i][j]));
+			strcat(strng,tmpstrng);
+    		}
+	}
+	//strcat(strng,"\n");
+
+	return strng;
+}
+
+ts_bool freeUlm2String(char *strng){
+	free(strng);
+	return TS_SUCCESS;
+}
+
+
 ts_bool storeUlmComplex2(ts_vesicle *vesicle){
 
 	ts_spharm *sph=vesicle->sphHarmonics;

--
Gitblit v1.9.3