Added a funciton that calculates everything needed for spherical harmonics
| | |
| | | return gsl_complex_abs2(vesicle->sphHarmonics->ulmComplex[l][m]); |
| | | } |
| | | |
| | | |
| | | void solve_for_ulm2(ts_vesicle *vesicle){ |
| | | ts_double r0=getR0(vesicle); |
| | | preparationSh(vesicle,r0); |
| | | calculateUlmComplex(vesicle); |
| | | storeUlmComplex2(vesicle); |
| | | |
| | | } |
| | |
| | | ts_bool calculateUlmComplex(ts_vesicle *vesicle); |
| | | ts_double calculateKc(ts_vesicle *vesicle, ts_int lmin, ts_int lmax); |
| | | ts_double get_absolute_ulm2(ts_vesicle *vesicle, int l, int m); |
| | | void solve_for_ulm2(ts_vesicle *vesicle); |
| | | #endif |