Trisurf Monte Carlo simulator
Samo Penic
2012-06-07 f0d504db66bfb3a1d618fd207f05f15d48a2e32c
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
523bf1 123
SP 124 ts_bool precomputeShCoeff(ts_spharm *sph){
074a17 125     ts_int i,j,al,am;
SP 126     ts_double **co=sph->co;
79fc9c 127     for(i=1;i<=sph->l;i++){
SP 128         al=i;
074a17 129         sph->co[i][i+1]=sqrt((2.0*al+1.0)/2.0/M_PI);
79fc9c 130         for(j=1;j<=i-1;j++){
SP 131             am=j;
008026 132             sph->co[i][i+1+j]=co[i][i+j]*sqrt(1.0/(al-am+1.0)/(al+am));
074a17 133             sph->co[i][i+1-j]=co[i][i+1+j];
523bf1 134         }
79fc9c 135         co[i][2*i+1]=co[i][2*i]*sqrt(1.0/(2.0*al));
SP 136         co[i][1]=co[i][2*i+1];
074a17 137         co[i][i+1]=sqrt((2.0*al+1.0)/4.0/M_PI);
523bf1 138     }
SP 139     return TS_SUCCESS;
140
141 }
142
143
88f451 144 /*Computes Y(l,m,theta,fi) (Miha's definition that is different from common definition for  factor srqt(1/(2*pi)) */
SP 145 ts_double shY(ts_int l,ts_int m,ts_double theta,ts_double fi){
146     ts_double fac1, fac2, K;
147     int i;
148
149     if(l<0 || m>l || m<-l)
150         fatal("Error using shY function!",1);
151
152     fac1=1.0;
af3bad 153     for(i=1; i<=l-abs(m);i++){
88f451 154         fac1 *= i;
SP 155     }
156     fac2=1.0;
af3bad 157     for(i=1; i<=l+abs(m);i++){
88f451 158         fac2 *= i;
SP 159     }
160
161     if(m==0){
162         K=sqrt(1.0/(2.0*M_PI));
163     }
164     else if (m>0) {
165         K=sqrt(1.0/(M_PI))*cos(m*fi);
166     } 
167     else {
168         //K=pow(-1.0,abs(m))*sqrt(1.0/(2.0*M_PI))*cos(m*fi);
169         if(abs(m)%2==0)
af3bad 170         K=sqrt(1.0/(M_PI))*cos(m*fi);
88f451 171         else
af3bad 172         K=-sqrt(1.0/(M_PI))*cos(m*fi);
88f451 173     }
SP 174     
175     return K*sqrt((2.0*l+1.0)/2.0*fac1/fac2)*plgndr(l,abs(m),cos(theta));    
176 }
523bf1 177
SP 178
179 /* Function transforms coordinates from cartesian to spherical coordinates
180  * (r,phi, theta). */
181 ts_bool *cart2sph(ts_coord *coord, ts_double x, ts_double y, ts_double z){
182     coord->coord_type=TS_COORD_SPHERICAL;
183 #ifdef TS_DOUBLE_DOUBLE
184     coord->e1=sqrt(x*x+y*y+z*z);
185     if(z==0) coord->e3=M_PI/2.0;
186     else coord->e3=atan(sqrt(x*x+y*y)/z);
187     coord->e2=atan2(y,x);
188 #endif
189 #ifdef TS_DOUBLE_FLOAT
190     coord->e1=sqrtf(x*x+y*y+z*z);
191     if(z==0) coord->e3=M_PI/2.0;
192     else coord->e3=atanf(sqrtf(x*x+y*y)/z);
193     coord->e2=atan2f(y,x);
194 #endif
195 #ifdef TS_DOUBLE_LONGDOUBLE
196     coord->e1=sqrtl(x*x+y*y+z*z);
197     if(z==0) coord->e3=M_PI/2.0;
198     else coord->e3=atanl(sqrtl(x*x+y*y)/z);
199     coord->e2=atan2l(y,x);
200 #endif
201
202     return TS_SUCCESS;
203 }
204
205 /* Function returns radius of the sphere with the same volume as vesicle (r0) */
206 ts_double getR0(ts_vesicle *vesicle){
207     ts_double r0;
208  #ifdef TS_DOUBLE_DOUBLE
209    r0=pow(vesicle->volume*3.0/4.0/M_PI,1.0/3.0);
210 #endif
211 #ifdef TS_DOUBLE_FLOAT
212    r0=powf(vesicle->volume*3.0/4.0/M_PI,1.0/3.0);
213 #endif
214 #ifdef TS_DOUBLE_LONGDOUBLE
215    r0=powl(vesicle->volume*3.0/4.0/M_PI,1.0/3.0);
216 #endif
217     return r0;
218 }
219
220
221 ts_bool preparationSh(ts_vesicle *vesicle, ts_double r0){
222 //TODO: before calling or during the call calculate area of each triangle! Can
223 //be also done after vertexmove and bondflip //
224     ts_uint i,j;
225     ts_vertex **vtx=vesicle->vlist->vtx;
226     ts_vertex *cvtx;
227     ts_triangle *ctri;
228     ts_double centroid[3];
229     ts_double r;
230     for (i=0;  i<vesicle->vlist->n; i++){
231         cvtx=vtx[i];
232         //cvtx->projArea=4.0*M_PI/1447.0*(cvtx->x*cvtx->x+cvtx->y*cvtx->y+cvtx->z*cvtx->z)/r0/r0;
233         cvtx->projArea=0.0;
234
235         /* go over all triangles that have a common vertex i */
236         for(j=0; j<cvtx->tristar_no; j++){
237             ctri=cvtx->tristar[j];
238             centroid[0]=(ctri->vertex[0]->x + ctri->vertex[1]->x + ctri->vertex[2]->x)/3.0;
239             centroid[1]=(ctri->vertex[0]->y + ctri->vertex[1]->y + ctri->vertex[2]->y)/3.0;
240             centroid[2]=(ctri->vertex[0]->z + ctri->vertex[1]->z + ctri->vertex[2]->z)/3.0;
241         /* calculating projArea+= area(triangle)*cos(theta) */
242 #ifdef TS_DOUBLE_DOUBLE
243             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]);
244 #endif
245 #ifdef TS_DOUBLE_FLOAT
246             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]);
247 #endif
248 #ifdef TS_DOUBLE_LONGDOUBLE
249             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]);
250 #endif
251         }
252
253     cvtx->projArea=cvtx->projArea/3.0;
254         //we dont store spherical coordinates of vertex, so we have to calculate
255         //r(i) at this point.
256 #ifdef TS_DOUBLE_DOUBLE
257     r=sqrt(cvtx->x*cvtx->x+cvtx->y*cvtx->y+cvtx->z*cvtx->z);
258 #endif
259 #ifdef TS_DOUBLE_FLOAT
260     r=sqrtf(cvtx->x*cvtx->x+cvtx->y*cvtx->y+cvtx->z*cvtx->z);
261 #endif
262 #ifdef TS_DOUBLE_LONGDOUBLE
263     r=sqrtl(cvtx->x*cvtx->x+cvtx->y*cvtx->y+cvtx->z*cvtx->z);
264 #endif
265     cvtx->relR=(r-r0)/r0;
266     cvtx->solAngle=cvtx->projArea/cvtx->relR * cvtx->projArea/cvtx->relR;
267     }
268     return TS_SUCCESS;
269 }
270
271
272
273 ts_bool calculateYlmi(ts_vesicle *vesicle){
274     ts_uint i,j,k;
275     ts_spharm *sph=vesicle->sphHarmonics;
276     ts_coord *coord=(ts_coord *)malloc(sizeof(ts_coord));
277     ts_double fi, theta;
074a17 278     ts_vertex *cvtx;
523bf1 279     for(k=0;k<vesicle->vlist->n;k++){
074a17 280         cvtx=vesicle->vlist->vtx[k];
eb8605 281         sph->Ylmi[0][0][k]=sqrt(1.0/4.0/M_PI);
074a17 282         cart2sph(coord,cvtx->x, cvtx->y, cvtx->z);
523bf1 283         fi=coord->e2;
SP 284         theta=coord->e3; 
285         for(i=0; i<sph->l; i++){
286             for(j=0;j<i;j++){
eb8605 287                 sph->Ylmi[i][j][k]=sph->co[i][j]*cos((j-i-1)*fi)*pow(-1,j-i-1)*plgndr(i,abs(j-i-1),cos(theta));
523bf1 288             }
eb8605 289                 sph->Ylmi[i][j+1][k]=sph->co[i][j+1]*plgndr(i,0,cos(theta));
523bf1 290             for(j=sph->l;j<2*i;j++){
eb8605 291                 sph->Ylmi[i][j][k]=sph->co[i][j]*sin((j-i-1)*fi)*plgndr(i,j-i-1,cos(theta));
523bf1 292             }
SP 293         }
294
295     }
296     free(coord);
297     return TS_SUCCESS;
298 }
299
300
301
302 ts_bool calculateUlm(ts_vesicle *vesicle){
303     ts_uint i,j,k;
304     ts_vertex *cvtx;
305     for(i=0;i<vesicle->sphHarmonics->l;i++){
306         for(j=0;j<2*i;j++) vesicle->sphHarmonics->ulm[i][j]=0.0;
307     }
308
309 //TODO: call calculateYlmi !!!
310
311
312     for(k=0;k<vesicle->vlist->n; k++){
313         cvtx=vesicle->vlist->vtx[k];
314         for(i=0;i<vesicle->sphHarmonics->l;i++){
315             for(j=0;j<2*i;j++){
eb8605 316                 vesicle->sphHarmonics->ulm[i][j]+= cvtx->solAngle*cvtx->relR*vesicle->sphHarmonics->Ylmi[i][j][k];
523bf1 317             }
SP 318
319         }
320     }
321
322     return TS_SUCCESS;
323 }