Trisurf Monte Carlo simulator
Samo Penic
2012-07-10 b7c9b3492c40613c99f820ab47148ff756b7d9d2
commit | author | age
88f451 1 #ifndef _H_SH
SP 2 #define _H_SH
3 #include "general.h"
262607 4 ts_bool storeUlm2(ts_vesicle *vesicle);
3b3902 5 ts_double plgndr(ts_int l, ts_int m, ts_double x);
88f451 6 ts_double shY(ts_int l,ts_int m,ts_double theta,ts_double fi);
SP 7
3b3902 8 ts_bool *cart2sph(ts_coord *coord, ts_double x, ts_double y, ts_double z);
074a17 9 ts_bool precomputeShCoeff(ts_spharm *sph);
5bb11d 10 ts_spharm *sph_init(ts_vertex_list *vlist, ts_uint l);
SP 11 ts_bool sph_free(ts_spharm *sph);
9bf6ee 12 ts_double getR0(ts_vesicle *vesicle);
SP 13 ts_bool preparationSh(ts_vesicle *vesicle, ts_double r0);
14 ts_bool calculateYlmi(ts_vesicle *vesicle);
79048f 15 ts_bool calculateUlm(ts_vesicle *vesicle);
88f451 16 #endif