Trisurf Monte Carlo simulator
Samo Penic
2012-07-10 e19e790e95f14ca69a7ce9c5e45d815fe21df36e
commit | author | age
88f451 1 #include<math.h>
SP 2 #include<stdlib.h>
3 #include "general.h"
4 #include "sh.h"
5
074a17 6
SP 7
8 ts_spharm *sph_init(ts_vertex_list *vlist, ts_uint l){
eb8605 9     ts_uint j,i;
074a17 10     ts_spharm *sph=(ts_spharm *)malloc(sizeof(ts_spharm));
SP 11
5bb11d 12     
eb8605 13     /* lets initialize Ylm for each vertex. */
SP 14     sph->Ylmi=(ts_double ***)calloc(l,sizeof(ts_double **));
5bb11d 15     for(i=0;i<l;i++){
SP 16             sph->Ylmi[i]=(ts_double **)calloc(2*i+1,sizeof(ts_double *));
17             for(j=0;j<(2*i+1);j++){
eb8605 18                 sph->Ylmi[i][j]=(ts_double *)calloc(vlist->n,sizeof(ts_double));
074a17 19             }
SP 20     }
21         
22     /* lets initialize ulm */
23     sph->ulm=(ts_double **)calloc(l,sizeof(ts_double *));
24     for(j=0;j<l;j++){
25         sph->ulm[j]=(ts_double *)calloc(2*j+1,sizeof(ts_double));
26     }
27
28
29     /* lets initialize co */
79fc9c 30 //NOTE: C is has zero based indexing. Code is imported from fortran and to comply with original indexes we actually generate one index more. Also second dimension is 2*j+2 instead of 2*j+2. elements starting with 0 are useles and should be ignored!
SP 31     sph->co=(ts_double **)calloc(l+1,sizeof(ts_double *));
32     for(j=0;j<=l;j++){
33         sph->co[j]=(ts_double *)calloc(2*j+2,sizeof(ts_double));
074a17 34     }
SP 35
5bb11d 36     sph->l=l;   
SP 37
38     /* Calculate coefficients that will remain constant during all the simulation */ 
39    precomputeShCoeff(sph);
40     
074a17 41     return sph;
SP 42 }
43
44
eb8605 45 ts_bool sph_free(ts_spharm *sph){
SP 46     int i,j;
074a17 47     for(i=0;i<sph->l;i++){
SP 48         if(sph->ulm[i]!=NULL) free(sph->ulm[i]);
49         if(sph->co[i]!=NULL) free(sph->co[i]);
50     }
79fc9c 51         if(sph->co[sph->l]!=NULL) free(sph->co[sph->l]);
074a17 52     if(sph->co != NULL) free(sph->co);
SP 53     if(sph->ulm !=NULL) free(sph->ulm);
54
eb8605 55         if(sph->Ylmi!=NULL) {
074a17 56             for(i=0;i<sph->l;i++){
eb8605 57                 if(sph->Ylmi[i]!=NULL){
5bb11d 58                     for(j=0;j<i*2+1;j++){
eb8605 59                         if(sph->Ylmi[i][j]!=NULL) free (sph->Ylmi[i][j]);
SP 60                     }
61                     free(sph->Ylmi[i]);
62                 }
074a17 63             }
eb8605 64             free(sph->Ylmi);
074a17 65         }
eb8605 66
074a17 67     free(sph);
SP 68     return TS_SUCCESS;
69 }
70
88f451 71 /* Gives you legendre polynomials. Taken from NR, p. 254 */
SP 72 ts_double plgndr(ts_int l, ts_int m, ts_float x){
73     ts_double fact, pll, pmm, pmmp1, somx2;
74     ts_int i,ll;
75
76 #ifdef TS_DOUBLE_DOUBLE
77     if(m<0 || m>l || fabs(x)>1.0)
78         fatal("Bad arguments in routine plgndr",1);
79 #endif
80 #ifdef TS_DOUBLE_FLOAT
81     if(m<0 || m>l || fabsf(x)>1.0)
82         fatal("Bad arguments in routine plgndr",1);
83 #endif
84 #ifdef TS_DOUBLE_LONGDOUBLE
85     if(m<0 || m>l || fabsl(x)>1.0)
86         fatal("Bad arguments in routine plgndr",1);
87 #endif
88     pmm=1.0;
89     if (m>0) {
90 #ifdef TS_DOUBLE_DOUBLE
91         somx2=sqrt((1.0-x)*(1.0+x));
92 #endif
93 #ifdef TS_DOUBLE_FLOAT
94         somx2=sqrtf((1.0-x)*(1.0+x));
95 #endif
96 #ifdef TS_DOUBLE_LONGDOUBLE
97         somx2=sqrtl((1.0-x)*(1.0+x));
98 #endif
99         fact=1.0;
100         for (i=1; i<=m;i++){
101             pmm *= -fact*somx2;
102             fact +=2.0;
103         }
104     }
105
106     if (l == m) return pmm;
107     else {
108         pmmp1=x*(2*m+1)*pmm;
109         if(l==(m+1)) return(pmmp1);
110         else {
111             pll=0; /* so it can not be uninitialized */
112             for(ll=m+2;ll<=l;ll++){
113                 pll=(x*(2*ll-1)*pmmp1-(ll+m-1)*pmm)/(ll-m);
114                 pmm=pmmp1;
115                 pmmp1=pll;
116             }
117             return(pll);
118         }
119     }
120 }
121
122
9bf6ee 123 /** @brief: Precomputes coefficients that are required for spherical harmonics computations.
523bf1 124
9bf6ee 125 */
523bf1 126 ts_bool precomputeShCoeff(ts_spharm *sph){
074a17 127     ts_int i,j,al,am;
SP 128     ts_double **co=sph->co;
79fc9c 129     for(i=1;i<=sph->l;i++){
SP 130         al=i;
074a17 131         sph->co[i][i+1]=sqrt((2.0*al+1.0)/2.0/M_PI);
79fc9c 132         for(j=1;j<=i-1;j++){
SP 133             am=j;
008026 134             sph->co[i][i+1+j]=co[i][i+j]*sqrt(1.0/(al-am+1.0)/(al+am));
074a17 135             sph->co[i][i+1-j]=co[i][i+1+j];
523bf1 136         }
79fc9c 137         co[i][2*i+1]=co[i][2*i]*sqrt(1.0/(2.0*al));
SP 138         co[i][1]=co[i][2*i+1];
074a17 139         co[i][i+1]=sqrt((2.0*al+1.0)/4.0/M_PI);
523bf1 140     }
SP 141     return TS_SUCCESS;
142
143 }
144
145
c9d07c 146 /** @brief: Computes Y(l,m,theta,fi) 
SP 147  *
148  * Function calculates Y^l_m for vertex with given (\theta, \fi) coordinates in
149  * spherical coordinate system.
150  * @param l is an ts_int argument.
151  * @param m is an ts_int argument.
152  * @param theta is ts_double argument.
153  * @param fi is a ts_double argument.
154  *
155  * (Miha's definition that is different from common definition for  factor srqt(1/(2*pi)) */
88f451 156 ts_double shY(ts_int l,ts_int m,ts_double theta,ts_double fi){
SP 157     ts_double fac1, fac2, K;
158     int i;
159
160     if(l<0 || m>l || m<-l)
161         fatal("Error using shY function!",1);
162
163     fac1=1.0;
af3bad 164     for(i=1; i<=l-abs(m);i++){
88f451 165         fac1 *= i;
SP 166     }
167     fac2=1.0;
af3bad 168     for(i=1; i<=l+abs(m);i++){
88f451 169         fac2 *= i;
SP 170     }
171
172     if(m==0){
173         K=sqrt(1.0/(2.0*M_PI));
174     }
175     else if (m>0) {
176         K=sqrt(1.0/(M_PI))*cos(m*fi);
177     } 
178     else {
179         //K=pow(-1.0,abs(m))*sqrt(1.0/(2.0*M_PI))*cos(m*fi);
180         if(abs(m)%2==0)
af3bad 181         K=sqrt(1.0/(M_PI))*cos(m*fi);
88f451 182         else
af3bad 183         K=-sqrt(1.0/(M_PI))*cos(m*fi);
88f451 184     }
SP 185     
186     return K*sqrt((2.0*l+1.0)/2.0*fac1/fac2)*plgndr(l,abs(m),cos(theta));    
187 }
523bf1 188
SP 189
190 /* Function transforms coordinates from cartesian to spherical coordinates
191  * (r,phi, theta). */
192 ts_bool *cart2sph(ts_coord *coord, ts_double x, ts_double y, ts_double z){
193     coord->coord_type=TS_COORD_SPHERICAL;
194 #ifdef TS_DOUBLE_DOUBLE
195     coord->e1=sqrt(x*x+y*y+z*z);
196     if(z==0) coord->e3=M_PI/2.0;
197     else coord->e3=atan(sqrt(x*x+y*y)/z);
198     coord->e2=atan2(y,x);
199 #endif
200 #ifdef TS_DOUBLE_FLOAT
201     coord->e1=sqrtf(x*x+y*y+z*z);
202     if(z==0) coord->e3=M_PI/2.0;
203     else coord->e3=atanf(sqrtf(x*x+y*y)/z);
204     coord->e2=atan2f(y,x);
205 #endif
206 #ifdef TS_DOUBLE_LONGDOUBLE
207     coord->e1=sqrtl(x*x+y*y+z*z);
208     if(z==0) coord->e3=M_PI/2.0;
209     else coord->e3=atanl(sqrtl(x*x+y*y)/z);
210     coord->e2=atan2l(y,x);
211 #endif
212
213     return TS_SUCCESS;
214 }
215
216 /* Function returns radius of the sphere with the same volume as vesicle (r0) */
217 ts_double getR0(ts_vesicle *vesicle){
218     ts_double r0;
219  #ifdef TS_DOUBLE_DOUBLE
220    r0=pow(vesicle->volume*3.0/4.0/M_PI,1.0/3.0);
221 #endif
222 #ifdef TS_DOUBLE_FLOAT
223    r0=powf(vesicle->volume*3.0/4.0/M_PI,1.0/3.0);
224 #endif
225 #ifdef TS_DOUBLE_LONGDOUBLE
226    r0=powl(vesicle->volume*3.0/4.0/M_PI,1.0/3.0);
227 #endif
228     return r0;
229 }
230
231
232 ts_bool preparationSh(ts_vesicle *vesicle, ts_double r0){
233 //TODO: before calling or during the call calculate area of each triangle! Can
234 //be also done after vertexmove and bondflip //
235     ts_uint i,j;
236     ts_vertex **vtx=vesicle->vlist->vtx;
237     ts_vertex *cvtx;
238     ts_triangle *ctri;
239     ts_double centroid[3];
240     ts_double r;
241     for (i=0;  i<vesicle->vlist->n; i++){
242         cvtx=vtx[i];
243         //cvtx->projArea=4.0*M_PI/1447.0*(cvtx->x*cvtx->x+cvtx->y*cvtx->y+cvtx->z*cvtx->z)/r0/r0;
244         cvtx->projArea=0.0;
245
246         /* go over all triangles that have a common vertex i */
247         for(j=0; j<cvtx->tristar_no; j++){
248             ctri=cvtx->tristar[j];
249             centroid[0]=(ctri->vertex[0]->x + ctri->vertex[1]->x + ctri->vertex[2]->x)/3.0;
250             centroid[1]=(ctri->vertex[0]->y + ctri->vertex[1]->y + ctri->vertex[2]->y)/3.0;
251             centroid[2]=(ctri->vertex[0]->z + ctri->vertex[1]->z + ctri->vertex[2]->z)/3.0;
252         /* calculating projArea+= area(triangle)*cos(theta) */
253 #ifdef TS_DOUBLE_DOUBLE
254             cvtx->projArea = cvtx->projArea + ctri->area*(-centroid[0]*ctri->xnorm - centroid[1]*ctri->ynorm - centroid[2]*ctri->znorm)/ sqrt(centroid[0]*centroid[0]+centroid[1]*centroid[1]+centroid[2]*centroid[2]);
255 #endif
256 #ifdef TS_DOUBLE_FLOAT
257             cvtx->projArea = cvtx->projArea + ctri->area*(-centroid[0]*ctri->xnorm - centroid[1]*ctri->ynorm - centroid[2]*ctri->znorm)/ sqrtf(centroid[0]*centroid[0]+centroid[1]*centroid[1]+centroid[2]*centroid[2]);
258 #endif
259 #ifdef TS_DOUBLE_LONGDOUBLE
260             cvtx->projArea = cvtx->projArea + ctri->area*(-centroid[0]*ctri->xnorm - centroid[1]*ctri->ynorm - centroid[2]*ctri->znorm)/ sqrtl(centroid[0]*centroid[0]+centroid[1]*centroid[1]+centroid[2]*centroid[2]);
261 #endif
262         }
263
264     cvtx->projArea=cvtx->projArea/3.0;
265         //we dont store spherical coordinates of vertex, so we have to calculate
266         //r(i) at this point.
267 #ifdef TS_DOUBLE_DOUBLE
268     r=sqrt(cvtx->x*cvtx->x+cvtx->y*cvtx->y+cvtx->z*cvtx->z);
269 #endif
270 #ifdef TS_DOUBLE_FLOAT
271     r=sqrtf(cvtx->x*cvtx->x+cvtx->y*cvtx->y+cvtx->z*cvtx->z);
272 #endif
273 #ifdef TS_DOUBLE_LONGDOUBLE
274     r=sqrtl(cvtx->x*cvtx->x+cvtx->y*cvtx->y+cvtx->z*cvtx->z);
275 #endif
276     cvtx->relR=(r-r0)/r0;
277     cvtx->solAngle=cvtx->projArea/cvtx->relR * cvtx->projArea/cvtx->relR;
278     }
279     return TS_SUCCESS;
280 }
281
282
283
284 ts_bool calculateYlmi(ts_vesicle *vesicle){
285     ts_uint i,j,k;
286     ts_spharm *sph=vesicle->sphHarmonics;
287     ts_coord *coord=(ts_coord *)malloc(sizeof(ts_coord));
288     ts_double fi, theta;
79048f 289     ts_int m;
074a17 290     ts_vertex *cvtx;
523bf1 291     for(k=0;k<vesicle->vlist->n;k++){
074a17 292         cvtx=vesicle->vlist->vtx[k];
eb8605 293         sph->Ylmi[0][0][k]=sqrt(1.0/4.0/M_PI);
074a17 294         cart2sph(coord,cvtx->x, cvtx->y, cvtx->z);
523bf1 295         fi=coord->e2;
SP 296         theta=coord->e3; 
79048f 297         for(i=1; i<sph->l; i++){
523bf1 298             for(j=0;j<i;j++){
79048f 299             m=j+1;
SP 300                 sph->Ylmi[i][j][k]=sph->co[i][m]*cos((m-i-1)*fi)*pow(-1,m-i-1)*plgndr(i,abs(m-i-1),cos(theta));
523bf1 301             }
79048f 302                 sph->Ylmi[i][j+1][k]=sph->co[i][m+1]*plgndr(i,0,cos(theta));
SP 303             for(j=i+1;j<2*i;j++){
304             m=j+1;
305                 sph->Ylmi[i][j][k]=sph->co[i][m]*sin((m-i-1)*fi)*plgndr(i,m-i-1,cos(theta));
523bf1 306             }
SP 307         }
308
309     }
310     free(coord);
311     return TS_SUCCESS;
312 }
313
314
315
316 ts_bool calculateUlm(ts_vesicle *vesicle){
317     ts_uint i,j,k;
318     ts_vertex *cvtx;
319     for(i=0;i<vesicle->sphHarmonics->l;i++){
320         for(j=0;j<2*i;j++) vesicle->sphHarmonics->ulm[i][j]=0.0;
321     }
322
323 //TODO: call calculateYlmi !!!
324
325
326     for(k=0;k<vesicle->vlist->n; k++){
327         cvtx=vesicle->vlist->vtx[k];
328         for(i=0;i<vesicle->sphHarmonics->l;i++){
329             for(j=0;j<2*i;j++){
eb8605 330                 vesicle->sphHarmonics->ulm[i][j]+= cvtx->solAngle*cvtx->relR*vesicle->sphHarmonics->Ylmi[i][j][k];
523bf1 331             }
SP 332
333         }
334     }
335
336     return TS_SUCCESS;
337 }