Fix normalisation of test sigma0 factor. Ewald sum working now!

Former-commit-id: e65a370e83c68c6c3553f13312b9280a3413b200
This commit is contained in:
Marek Nečada 2018-09-13 05:32:07 +03:00
parent e204242817
commit a0da08b637
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ ewaldtest_triang_results *ewaldtest_triang(const ewaldtest_triang_params p) {
// Now calculate the reference values [LT(4.16)]
results->regsigmas_416 = calloc(nelem_sc, sizeof(complex double));
results->regsigmas_416[0] = -1/M_SQRTPI;
results->regsigmas_416[0] = -2 * c->legendre0[gsl_sf_legendre_array_index(0,0)];
{
double legendres[gsl_sf_legendre_array_n(p.lMax)];