S2kit  1.1
Toolkit for working with functions defined on the sphere
pml.c
Go to the documentation of this file.
1 
6 #include "s2kit/pml.h"
7 
8 #include <math.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12 
13 #include "s2kit/chebyshev_nodes.h"
14 #include "s2kit/pmm.h"
15 
16 #include "util/l2_norms.h"
17 #include "util/vector_funcs.h"
18 
41 void GeneratePmlTable(const int bw, const int m, double* pml_table, double* workspace) {
42  int size = 2 * bw;
43 
44  double* prevprev = workspace;
45  double* prev = prevprev + size;
46  double* temp1 = prev + size;
47  double* temp2 = temp1 + size;
48  double* temp3 = temp2 + size;
49  double* temp4 = temp3 + size;
50  double* x_i = temp4 + size;
51  double* eval_args = x_i + size;
52 
53  // get the evaluation nodes
54  ChebyshevNodes(size, x_i);
55  AcosOfChebyshevNodes(size, eval_args);
56 
57  // set initial values of first two Pmls
58  memset(prevprev, 0, sizeof(double) * size);
59 
60  if (!m)
61  for (int i = 0; i < size; ++i)
62  prev[i] = M_SQRT1_2;
63  else
64  Pmm_L2(m, eval_args, size, prev);
65 
66  memcpy(pml_table, prev, sizeof(double) * size);
67 
68  for (int i = 0; i < bw - m - 1; ++i) {
69  vec_mul(L2_cn(m, m + i), prevprev, temp1, size);
70  vec_dot(prev, x_i, temp2, size);
71  vec_mul(L2_an(m, m + i), temp2, temp3, size);
72  vec_add(temp3, temp1, temp4, size); // temp4 now contains P(m,m+i+1)
73 
74  pml_table += size;
75  memcpy(pml_table, temp4, sizeof(double) * size);
76  memcpy(prevprev, prev, sizeof(double) * size);
77  memcpy(prev, temp4, sizeof(double) * size);
78  }
79 }
Pmm_L2
void Pmm_L2(const int, double *, const int, double *)
Generates L2-normed Pmm.
Definition: pmm.c:21
L2_cn
double L2_cn(const int m, const int l)
Definition: l2_norms.c:28
L2_an
double L2_an(const int m, const int l)
Definition: l2_norms.c:16
chebyshev_nodes.h
vector_funcs.h
vec_dot
void vec_dot(double *v1, double *v2, double *result, const int len)
Performs dot product of v1 and v2.
Definition: vector_funcs.c:53
vec_mul
void vec_mul(const double scalar, double *v, double *result, const int len)
Multiplies the vector v by scalar.
Definition: vector_funcs.c:33
AcosOfChebyshevNodes
void AcosOfChebyshevNodes(const int, double *)
Generates an array of the angular arguments of n Chebyshev nodes.
Definition: chebyshev_nodes.c:16
GeneratePmlTable
void GeneratePmlTable(const int bw, const int m, double *pml_table, double *workspace)
Generates all of the Pmls for a specified value of m.
Definition: pml.c:41
ChebyshevNodes
void ChebyshevNodes(const int, double *)
Generates an array of n Chebyshev nodes.
Definition: chebyshev_nodes.c:29
l2_norms.h
vec_add
void vec_add(double *v1, double *v2, double *result, const int len)
Adds two vectors into a third one.
Definition: vector_funcs.c:18
pml.h
pmm.h