Trisurf Monte Carlo simulator
Samo Penic
2012-06-07 9bf6ee3e299ae9d5627c15814bfad56bf47e9917
commit | author | age
88f451 1 #ifndef _H_SH
SP 2 #define _H_SH
3 #include "general.h"
4
5 ts_double plgndr(ts_int l, ts_int m, ts_float x);
6 ts_double shY(ts_int l,ts_int m,ts_double theta,ts_double fi);
7
8
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);
88f451 15 #endif