[dirty dipoles] bessel function coefficient table

Former-commit-id: 99679b765621c7237bce927169cf83331fe61c99
This commit is contained in:
Marek Nečada 2018-01-18 11:22:27 +00:00
parent 594075e837
commit 8001b67603
2 changed files with 58 additions and 0 deletions

40
dipdip-dirty/bessels.c Normal file
View File

@ -0,0 +1,40 @@
#include "bessels.h"
#include <stdlib.h>
#include <math.h>
static const double ln2 = 0.69314718055994531;
#include <stdio.h>
// general; gives an array of size
complex double * hankelcoefftable_init(size_t maxn) {
complex double *hct = malloc((maxn+1)*(maxn+2)/2 * sizeof(complex double));
for(size_t n = 0; n <= maxn; ++n) {
complex double *hcs = hankelcoeffs_get(hct,n);
for (size_t k = 0; k <= n; ++k) {
double lcoeff = lgamma(n+k+1) - lgamma(n-k+1) - lgamma(k+1) - k*ln2;
printf("%f, %.16f\n", lcoeff, exp(lcoeff));
// for some reason, casting k-n to double does not work,so
// cpow (I, k-n-1) cannot be used...
complex double ifactor;
switch ((n+1-k) % 4) {
case 0:
ifactor = 1;
break;
case 1:
ifactor = -I;
break;
case 2:
ifactor = -1;
break;
case 3:
ifactor = I;
break;
}
// the result should be integer, so round to remove inaccuracies
hcs[k] = round(exp(lcoeff)) * ifactor;
}
}
return hct;
}

18
dipdip-dirty/bessels.h Normal file
View File

@ -0,0 +1,18 @@
#ifndef BESSELS_H
#define BESSELS_H
#include <stddef.h>
#include <complex.h>
complex double *hankelcoefftable_init(size_t maxn);
// general, gives the offset such that result[k] is
// the coefficient corresponding to the e**(I * x) * x**(-k-1)
// term of the Hankel function; no boundary checks!
static inline complex double *
hankelcoeffs_get(complex double *hankelcoefftable, size_t n){
return hankelcoefftable + n*(n+1)/2;
}
#endif //BESSELS_H