27#ifndef wfp_fraunhoferPropagator_hpp
28#define wfp_fraunhoferPropagator_hpp
30#include "../math/constants.hpp"
34#include "../math/fft/fft.hpp"
55template <
typename _wavefrontT>
67 typedef typename wavefrontT::Scalar::value_type
realT;
88 math::fft::fftT<complexT, complexT, 2, 0>
m_fft_fwd;
170template <
typename wavefrontT>
173 m_wavefrontSizePixels = 0;
179template <
typename wavefrontT>
184template <
typename wavefrontT>
189template <
typename wavefrontT>
195template <
typename wavefrontT>
201 if( m_wavefrontSizePixels > 0 )
205template <
typename wavefrontT>
208 complexPupil *= m_centerFocal;
211template <
typename wavefrontT>
214 complexPupil *= m_centerPupil;
217template <
typename wavefrontT>
224 setWavefrontSizePixels( complexPupil.rows() );
228 shiftPupil( complexPupil );
231 m_fft_fwd( complexFocal.data(), complexPupil.data() );
234template <
typename wavefrontT>
241 setWavefrontSizePixels( complexPupil.rows() );
244 m_fft_back( complexPupil.data(), complexFocal.data() );
248 unshiftPupil( complexPupil );
251template <
typename wavefrontT>
255 if( wfsPix == m_centerFocal.rows() )
258 m_wavefrontSizePixels = wfsPix;
260 m_xcen = 0.5 * ( wfsPix - 1.0 );
261 m_ycen = 0.5 * ( wfsPix - 1.0 );
265 m_fft_fwd.plan( wfsPix, wfsPix );
267 m_fft_back.plan( wfsPix, wfsPix, MXFFT_BACKWARD );
270template <
typename wavefrontT>
276 realT norm = 1. / ( m_wavefrontSizePixels * sqrt( 2 ) );
280 m_centerFocal.resize( m_wavefrontSizePixels, m_wavefrontSizePixels );
281 m_centerPupil.resize( m_wavefrontSizePixels, m_wavefrontSizePixels );
284 realT arg = -2.0 * pi * 0.5 * ( m_wavefrontSizePixels - m_wholePixel ) / ( m_wavefrontSizePixels - 1 );
286 for(
int ii = 0; ii < m_wavefrontSizePixels; ++ii )
288 for(
int jj = 0; jj < m_wavefrontSizePixels; ++jj )
290 m_centerFocal( ii, jj ) = cnorm * exp(
complexT( 0., arg * ( ( ii - m_xcen ) + ( jj - m_ycen ) ) ) );
291 m_centerPupil( ii, jj ) =
292 cnorm * exp(
complexT( 0., 0.5 * pi - arg * ( ( ii - m_xcen ) + ( jj - m_ycen ) ) ) );
Class to perform Fraunhofer propagation between pupil and focal planes.
realT m_xcen
x-coordinate of focal plane center, in pixels
void unshiftPupil(wavefrontT &complexPupil)
Apply the shift to a pupil wavefront which will restore it to a centered pupil image,...
wavefrontT::Scalar::value_type realT
The real data type.
fraunhoferPropagator()
Constructor.
wavefrontT m_centerPupil
Phase screen for un-tilting the pupil plane after propagating from a centered focal plane.
void makeShiftPhase()
Calculate the complex tilt arrays for centering and normalizing the wavefronts.
int wholePixel()
Get the value of the wholePixel parameter.
void setWavefrontSizePixels(int wfsPix)
Set the size of the wavefront, in pixels.
realT m_ycen
x-coordinate of focal plane center, in pixels
void wholePixel(realT wp)
Set the value of the wholePixel parameter.
realT m_wholePixel
Determines how the image is centered.
~fraunhoferPropagator()
Destructor.
int m_wavefrontSizePixels
The size of the wavefront in pixels.
wavefrontT m_centerFocal
Phase screen for tilting the pupil plane so that the focal plane image is centered.
void shiftPupil(wavefrontT &complexPupil)
wavefrontT::Scalar complexT
The complex data type.
void propagatePupilToFocal(wavefrontT &complexFocal, wavefrontT &complexPupil, bool doCenter=true)
Propagate the wavefront from the pupil plane to the focal plane.
void initialize()
Initialize members.
math::fft::fftT< complexT, complexT, 2, 0 > m_fft_fwd
FFT object for forward FFTs.
math::fft::fftT< complexT, complexT, 2, 0 > m_fft_back
FFT object for backward FFTs.
_wavefrontT wavefrontT
The wavefront data type.
void propagateFocalToPupil(wavefrontT &complexPupil, wavefrontT &complexFocal, bool doCenter=true)
Propagate the wavefront from Focal plane to Pupil plane.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
Declares and defines a class for managing images.
Utilities for modeling image formation.