2

I have a discrete 2D temperature field, i. e. a dataset of N points (x, y, T). I would like to compute line integrals at fixed radii, $\int_0^{2\pi}T(r,\theta)d\theta$. My first thought was to transform all coordinates into radial coordinates, and then interpolate to a regular grid in $r,\theta$, so the integral would turn into a simple summation. This approach doesn't seem to be ideal, as I lose data at $r=0$. Is there a better way to solve my problem?

akid
  • 719
  • 4
  • 15

1 Answers1

1

An alternative approach that will help with the situation at $r=0$ is to do the interpolation in $(x,y)$ coordinates first, and then evaluate the integral.

Brian Borchers
  • 18,719
  • 1
  • 39
  • 70