mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
wavefront.hpp
1
2
3#ifndef wavefront_hpp
4#define wavefront_hpp
5
6#pragma GCC system_header
7#include <Eigen/Dense>
8
9#include "../../wfp/imagingArray.hpp"
10#include "../../wfp/imagingUtils.hpp"
11
12namespace mx
13{
14namespace AO
15{
16namespace sim
17{
18
19/// Structure containing the phase and amplitude of a wavefront
20/** The phase and amplitude are stored separately in real valued arrays.
21 */
22template <typename _realT>
24{
25 /// The floating point type used for all calculations
26 typedef _realT realT;
27
28 /// The data type of the real image, used to hold the phase and amplitude
29 typedef Eigen::Array<_realT, Eigen::Dynamic, Eigen::Dynamic> realImageT;
30
31 /// The wavefront data type
32 typedef wfp::imagingArray<std::complex<realT>, wfp::fftwAllocator<std::complex<realT>>, 0> complexAmplitudeT;
33
34 /// The wavefront amplitude
36
37 /// The wavefront phase
39
40 /// The wavelength at which the wavefront is specified
42
43 /// The iteration number of this wavefront
45
46 /// Zero the wavefront
47 void setZero()
48 {
49 amplitude.setZero();
50 phase.setZero();
51 }
52
53 void setAmplitude( const realImageT &amp )
54 {
55 amplitude = amp;
56 }
57
58 void setPhase( const realImageT &ph )
59 {
60 phase = ph;
61 }
62
63 void getWavefront( complexAmplitudeT &wf, int wfSz )
64 {
66 }
67
68 void getWavefront( complexAmplitudeT &wf, realT dlambda, int wfSz )
69 {
70 realImageT dphase = phase * ( lambda / dlambda );
71 wfp::makeComplexPupil( wf, amplitude, dphase, wfSz );
72 }
73};
74
75} // namespace sim
76} // namespace AO
77} // namespace mx
78
79#endif
void makeComplexPupil(arrayOutT &complexPupil, const arrayInT &realPupil, int wavefrontSizePixels)
Create a complex pupil plane wavefront from a real amplitude mask.
The mxlib c++ namespace.
Definition mxError.hpp:106
Structure containing the phase and amplitude of a wavefront.
Definition wavefront.hpp:24
realT lambda
The wavelength at which the wavefront is specified.
Definition wavefront.hpp:41
realImageT amplitude
The wavefront amplitude.
Definition wavefront.hpp:35
Eigen::Array< _realT, Eigen::Dynamic, Eigen::Dynamic > realImageT
The data type of the real image, used to hold the phase and amplitude.
Definition wavefront.hpp:29
void setZero()
Zero the wavefront.
Definition wavefront.hpp:47
_realT realT
The floating point type used for all calculations.
Definition wavefront.hpp:26
realT iterNo
The iteration number of this wavefront.
Definition wavefront.hpp:44
realImageT phase
The wavefront phase.
Definition wavefront.hpp:38
wfp::imagingArray< std::complex< realT >, wfp::fftwAllocator< std::complex< realT > >, 0 > complexAmplitudeT
The wavefront data type.
Definition wavefront.hpp:32