27#ifndef math_func_airyPattern_hpp
28#define math_func_airyPattern_hpp
30#include <gsl/gsl_integration.h>
31#include <gsl/gsl_errno.h>
33#include "../constants.hpp"
56template <
typename realT>
72template <
typename realT>
77 return ( 1. /
pow( 1. -
eps *
eps, 2 ) ) *
92template <
typename realT>
103 realT r =
sqrt(
pow( x - x0, 2 ) +
pow( y - y0, 2 ) ) * ps;
118template <
typename realT>
131 for(
size_t j = 0;
j < ny; ++
j )
133 for(
size_t i = 0;
i < nx; ++
i )
154template <
typename realT>
160 return ( 0.488 / ( fwhm * fwhm ) ) *
pow( 1. + ( 11. / 6. ) *
pow( x / fwhm, 2 ), -11. / 6. );
171template <
typename realT>
182 realT
encp =
static_cast<realT
>( 1 ) -
b0 -
b1;
187template <
typename realT>
188realT apeInt( realT x,
void *
params )
190 realT
eps = *
static_cast<realT *
>(
params );
204template <
typename realT>
237 realT
encp =
static_cast<realT
>( 1 ) -
b0 -
b1 +
eps2 * (
static_cast<realT
>( 1 ) -
b0e -
b1e );
Declares and defines Bessel functions of the first kind.
realT airyPattern(realT x)
The classical Airy pattern.
realT airyPatternEnclosed(realT x)
Calculate the fraction of enclosed power at a given radius for the unobscured Airy Pattern.
realT seeingHalo(realT x, realT fwhm)
Seeing Halo Profile.
void airyPattern2D(realT *arr, size_t nx, size_t ny, const realT A0, const realT A, const realT x0, const realT y0, realT ps)
Fill in an array with the 2D arbitrarily-centered classical Airy pattern.
T jinc(const T &x)
The Jinc function.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
Declares and defines the Jinc and Jinc2 functions.