Trisurf Monte Carlo simulator
Samo Penic
2014-04-28 460c2a326b332e1b3e03621970a1b48dfb872050
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);
e9c87e 9 ts_bool sph2cart(ts_coord *coord);
074a17 10 ts_bool precomputeShCoeff(ts_spharm *sph);
5bb11d 11 ts_spharm *sph_init(ts_vertex_list *vlist, ts_uint l);
SP 12 ts_bool sph_free(ts_spharm *sph);
9bf6ee 13 ts_double getR0(ts_vesicle *vesicle);
SP 14 ts_bool preparationSh(ts_vesicle *vesicle, ts_double r0);
15 ts_bool calculateYlmi(ts_vesicle *vesicle);
79048f 16 ts_bool calculateUlm(ts_vesicle *vesicle);
dc77e8 17 ts_bool saveAvgUlm2(ts_vesicle *vesicle);
88f451 18 #endif