mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
aoWFS.hpp
Go to the documentation of this file.
1/** \file aoWFS.hpp
2 * \author Jared R. Males (jaredmales@gmail.com)
3 * \brief Definitions of various analytic wavefront sensors
4 * \ingroup mxAO_files
5 *
6 */
7
8#ifndef aoWFS_hpp
9#define aoWFS_hpp
10
11#include "../../math/constants.hpp"
12#include "../../mxError.hpp"
13#include "../../mxException.hpp"
14#include "../../improc/eigenImage.hpp"
15#include "../../ioutils/fits/fitsFile.hpp"
16
17namespace mx
18{
19namespace AO
20{
21namespace analysis
22{
23
24/// The ideal wavefront sensor sensitivity function.
25/** Provides the \f$ \beta_p \f$ parameter of Guyon, 2005 \cite guyon_2005
26 * for the ideal WFS.
27 *
28 * This is the base class for all WFS.
29 *
30 * \tparam realT is the floating point type used for calculations
31 * \tparam iosT is an output stream type with operator << defined (default is std::ostream)
32 *
33 * \ingroup mxAOAnalytic
34 */
35template <typename realT, typename iosT = std::ostream>
36struct wfs
37{
38 std::string _id;
39
40 /// Constructor
41 /** Only sets the value of _id.
42 */
44 {
45 _id = "Ideal WFS";
46 }
47
48 /// Destructor
49 /** Declared virtual so more complicated derived types can be created.
50 */
51 virtual ~wfs()
52 {
53 return;
54 }
55
56 /// Get the photon noise sensitivity at a spatial frequency.
57 /** The sensitivity of the ideal WFS is 1 at all k \cite guyon_2005.
58 *
59 * \returns the sensitivity to photon noise parameter
60 */
61 virtual realT beta_p( int m, ///< [in] the spatial frequency index for u (not used by this WFS)
62 int n, ///< [in] the spatial frequency index for v (not used by this WFS)
63 realT D, ///< [in] the telescope diameter (not used by this WFS)
64 realT d, ///< [in] the sub-ap spacing (not used by this WFS)
65 realT r0 ///< [in] Fried's parameter (not used by this WFS)
66 )
67 {
68 // Stuff a sock in the compiler's mouth:
69 static_cast<void>( m );
70 static_cast<void>( n );
71 static_cast<void>( D );
72 static_cast<void>( d );
73 static_cast<void>( r0 );
74
75 return static_cast<realT>( 1 );
76 }
77
78 /// Get the read noise sensitivity at a spatial frequency.
79 /** Here we assume beta_r is the same as beta_p.
80 *
81 * \returns the sensitivity to read noise parameter
82 */
83 virtual realT beta_r( int m, ///< [in] the spatial frequency index for u (not used by this WFS)
84 int n, ///< [in] the spatial frequency index for v (not used by this WFS)
85 realT D, ///< [in] the telescope diameter (not used by this WFS)
86 realT d, ///< [in] the sub-ap spacing (not used by this WFS)
87 realT r0 ///< [in] Fried's parameter (not used by this WFS)
88 )
89 {
90 return beta_p( m, n, D, d, r0 );
91 }
92
93 /// Dump the details of the WFS to an io stream.
94 /** Is virtual so that derived types can add parameters.
95 */
96 virtual iosT &dumpWFS( iosT &ios )
97 {
98 ios << "# WFS Parameters:\n";
99 ios << "# ID = " << _id << '\n';
100
101 return ios;
102 }
103};
104
105/// The unmodulated pyramid wavefront sensor sensitivity function.
106/** Provides the \f$ \beta_p \f$ parameter of Guyon, 2005 \cite guyon_2005
107 * for the unmodulated PyWFS.
108 *
109 * \tparam realT is the floating point type used for calculations
110 * \tparam iosT is an output stream type with operator << defined (default is std::ostream)
111 *
112 * \ingroup mxAOAnalytic
113 */
114template <typename realT, typename iosT = std::ostream>
115struct pywfsUnmod : public wfs<realT, iosT>
116{
117 pywfsUnmod()
118 {
119 this->_id = "Unmodulated Pyramid";
120 }
121
122 /// Get the photon noise sensitivity at a spatial frequency.
123 /** The sensitivity of the unmodulated PyWFS is \f$ \sqrt{2} \f$ at all k.
124 *
125 * \returns the sensitivity to photon noise parameter
126 */
127 virtual realT beta_p( int m, ///< [in] the spatial frequency index for u (not used by this WFS)
128 int n, ///< [in] the spatial frequency index for v (not used by this WFS)
129 realT D, ///< [in] the telescope diameter (not used by this WFS)
130 realT d, ///< [in] the sub-ap spacing (not used by this WFS)
131 realT r0 ///< [in] Fried's parameter (not used by this WFS)
132 )
133 {
134 // Stuff a sock in the compiler's mouth:
135 static_cast<void>( m );
136 static_cast<void>( n );
137 static_cast<void>( D );
138 static_cast<void>( d );
139 static_cast<void>( r0 );
140
141 return math::root_two<realT>();
142 }
143
144 /// Get the read noise sensitivity at a spatial frequency.
145 /** Here we assume that beta_r is the same as beta_p.
146 *
147 * \returns the sensitivity to read noise parameter
148 */
149 virtual realT beta_r( int m, ///< [in] the spatial frequency index for u (not used by this WFS)
150 int n, ///< [in] the spatial frequency index for v (not used by this WFS)
151 realT D, ///< [in] the telescope diameter (not used by this WFS)
152 realT d, ///< [in] the sub-ap spacing (not used by this WFS)
153 realT r0 ///< [in] Fried's parameter (not used by this WFS)
154 )
155 {
156 return beta_p( m, n, D, d, r0 );
157 }
158};
159
160/// The asymptotic modulated pyramid wavefront sensor sensitivity function.
161/** Provides the \f$ \beta_p \f$ parameter of Guyon, 2005 \cite guyon_2005
162 * for the modulated PyWFS in the asymptotic limit.
163 *
164 * \tparam realT is the floating point type used for calculations
165 * \tparam iosT is an output stream type with operator << defined (default is std::ostream)
166 *
167 * \ingroup mxAOAnalytic
168 */
169template <typename realT, typename iosT = std::ostream>
170struct pywfsModAsymptotic : public wfs<realT, iosT>
171{
173 {
174 this->_id = "Asymptotic Modulated Pyramid";
175 }
176
177 /// Get the photon sensitivity at a spatial frequency.
178 /** The photon noise sensitivity of the asymptotic modulated PyWFS is \f$ 2 \sqrt{2} \f$ at all k.
179 *
180 * \returns the sensitivity to photon noise parameter
181 */
182 virtual realT beta_p( int m, ///< [in] the spatial frequency index for u (not used by this WFS)
183 int n, ///< [in] the spatial frequency index for v (not used by this WFS)
184 realT D, ///< [in] the telescope diameter (not used by this WFS)
185 realT d, ///< [in] the sub-ap spacing (not used by this WFS)
186 realT r0 ///< [in] Fried's parameter (not used by this WFS)
187 )
188 {
189 // Stuff a sock in the compiler's mouth:
190 static_cast<void>( m );
191 static_cast<void>( n );
192 static_cast<void>( D );
193 static_cast<void>( d );
194 static_cast<void>( r0 );
195
196 return static_cast<realT>( 2 ) * math::root_two<realT>();
197 }
198
199 /// Get the read noise sensitivity at a spatial frequency.
200 /** Here we assume beta_r is the same as beta_p
201 *
202 * \returns the sensitivity to read noise parameter
203 */
204 virtual realT beta_r( int m, ///< [in] the spatial frequency index for u (not used by this WFS)
205 int n, ///< [in] the spatial frequency index for v (not used by this WFS)
206 realT D, ///< [in] the telescope diameter (not used by this WFS)
207 realT d, ///< [in] the sub-ap spacing (not used by this WFS)
208 realT r0 ///< [in] Fried's parameter (not used by this WFS)
209 )
210 {
211 return beta_p( m, m, D, d, r0 );
212 }
213};
214
215/// The shack hartmann wavefront sensor sensitivity function.
216/** Provides the \f$ \beta_p \f$ parameter of Guyon, 2005 \cite guyon_2005
217 * for the shack hartmann WFS.
218 *
219 * \tparam realT is the floating point type used for calculations
220 * \tparam iosT is an output stream type with operator << defined (default is std::ostream)
221 *
222 * \ingroup mxAOAnalytic
223 */
224template <typename realT, typename iosT = std::ostream>
225struct shwfs : public wfs<realT, iosT>
226{
227 shwfs()
228 {
229 this->_id = "Shack Hartmann";
230 }
231
232 /// Get the photon noise sensitivity at a spatial frequency.
233 /** The photon noise sensitivity of the shack hartmann WFS
234 *
235 * \returns the sensitivity to photon noise parameter
236 */
237 virtual realT beta_p( int m, ///< [in] the spatial frequency index for u
238 int n, ///< [in] the spatial frequency index for v
239 realT D, ///< [in] the telescope diameter
240 realT d, ///< [in] the sub-ap spacing
241 realT r0 ///< [in] Fried's parameter
242 )
243 {
244 realT k = sqrt( m * m + n * n ) / D;
245
246 return 1.48 / ( k * d ) * sqrt( 1 + pow( d / r0, 2 ) );
247 }
248
249 /// Get the read noise sensitivity at a spatial frequency.
250 /** Here we assume beta_r = beta_p
251 *
252 * \returns the sensitivity to read noise parameter
253 */
254 virtual realT beta_r( int m, ///< [in] the spatial frequency index for u
255 int n, ///< [in] the spatial frequency index for v
256 realT D, ///< [in] the telescope diameter
257 realT d, ///< [in] the sub-ap spacing
258 realT r0 ///< [in] Fried's parameter
259 )
260 {
261 return beta_p( m, n, D, d, r0 );
262 }
263};
264
265/// The calculated WFS uses sensitivities provided by FITS files
266/** Provides the \f$ \beta_p \f$ and \f$ \beta_r \f$ parameters
267 * from FITS files.
268 *
269 * \tparam realT is the floating point type used for calculations
270 * \tparam iosT is an output stream type with operator << defined (default is std::ostream)
271 *
272 * \ingroup mxAOAnalytic
273 */
274template <typename realT, typename iosT = std::ostream>
275struct calculatedWFS : public wfs<realT, iosT>
276{
277 std::string m_beta_p_file;
278 std::string m_beta_r_file;
279 bool m_sensitivity{ false };
280
283
285 {
286 this->_id = "Calculated WFS";
287 }
288
289 /// Get the photon noise sensitivity at a spatial frequency.
290 /** The photon noise sensitivity from the FITS file is returned.
291 *
292 * \returns the sensitivity to photon noise parameter
293 */
294 virtual realT beta_p( int m, ///< [in] the spatial frequency index for u
295 int n, ///< [in] the spatial frequency index for v
296 realT D, ///< [in] the telescope diameter
297 realT d, ///< [in] the sub-ap spacing
298 realT r0 ///< [in] Fried's parameter
299 )
300 {
301
302 if( m_beta_p.rows() == 0 )
303 {
304#pragma omp critical // Make sure we don't race in m/t
305 {
306 if( m_beta_p.rows() == 0 ) // Check again after critical locks
307 {
309 ff.read( m_beta_p, m_beta_p_file );
310
311 if( m_sensitivity )
312 {
313 m_beta_p = 1.0 / m_beta_p;
314 }
315 }
316 }
317 }
318
319 int midx = 0.5 * ( m_beta_p.rows() - 1.0 ) + m;
320 int nidx = 0.5 * ( m_beta_p.cols() - 1.0 ) + n;
321
322 if( midx > m_beta_p.rows() - 1 || midx < 0 )
323 {
324#pragma omp critical
325 {
326 std::cerr << "calculatedWFS::beta_p: m index out of range. Got m = " << m
327 << " / beta_p.rows = " << m_beta_p.rows() << "\n";
328 }
329 // Just return a huge number to make this spatial frequency unsenseable
330 return std::numeric_limits<realT>::max();
331 }
332
333 if( nidx > m_beta_p.cols() - 1 || nidx < 0 )
334 {
335#pragma omp critical
336 {
337 std::cerr << "calculatedWFS::beta_p: n index out of range. Got n = " << n
338 << " / beta_p.cols = " << m_beta_p.cols() << "\n";
339 }
340 // Just return a huge number to make this spatial frequency unsenseable
341 return std::numeric_limits<realT>::max();
342 }
343
344 return m_beta_p( midx, nidx );
345 }
346
347 /// Get the read noise sensitivity at a spatial frequency.
348 /** The read noise sensitivity from the FITS file is returned.
349 *
350 * \returns the sensitivity to read noise parameter
351 */
352 virtual realT beta_r( int m, ///< [in] the spatial frequency index for u
353 int n, ///< [in] the spatial frequency index for v
354 realT D, ///< [in] the telescope diameter
355 realT d, ///< [in] the sub-ap spacing
356 realT r0 ///< [in] Fried's parameter
357 )
358 {
359 if( m_beta_r.rows() == 0 )
360 {
362 ff.read( m_beta_r, m_beta_r_file );
363
364 if( m_sensitivity )
365 m_beta_r = 1.0 / m_beta_r;
366 }
367
368 int midx = 0.5 * ( m_beta_r.rows() - 1.0 ) + m;
369 int nidx = 0.5 * ( m_beta_r.cols() - 1.0 ) + n;
370
371 if( midx > m_beta_r.rows() - 1 || midx < 0 )
372 {
373 mxThrowException( err::sizeerr, "calculatedWFS::beta_r", "m index out of range" );
374 }
375
376 if( nidx > m_beta_r.cols() - 1 || nidx < 0 )
377 {
378 mxThrowException( err::sizeerr, "calculatedWFS::beta_r", "n index out of range" );
379 }
380
381 return m_beta_r( midx, nidx );
382 }
383
384 /// Dump the details of the WFS to an io stream.
385 /** Is virtual so that derived types can add parameters.
386 */
387 virtual iosT &dumpWFS( iosT &ios )
388 {
390
391 ios << "# beta_p = " << m_beta_p_file << '\n';
392 ios << "# beta_r = " << m_beta_r_file << '\n';
393 ios << "# sensitivity = " << std::boolalpha << m_sensitivity << "\n";
394
395 return ios;
396 }
397};
398
399} // namespace analysis
400} // namespace AO
401} // namespace mx
402
403#endif // aoWFS_hpp
mxException for a size error
Class to manage interactions with a FITS file.
Definition fitsFile.hpp:52
int read(dataT *data)
Read the contents of the FITS file into an array.
Definition fitsFile.hpp:829
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
The mxlib c++ namespace.
Definition mxError.hpp:106
The calculated WFS uses sensitivities provided by FITS files.
Definition aoWFS.hpp:276
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon noise sensitivity at a spatial frequency.
Definition aoWFS.hpp:294
virtual iosT & dumpWFS(iosT &ios)
Dump the details of the WFS to an io stream.
Definition aoWFS.hpp:387
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
Definition aoWFS.hpp:352
The asymptotic modulated pyramid wavefront sensor sensitivity function.
Definition aoWFS.hpp:171
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon sensitivity at a spatial frequency.
Definition aoWFS.hpp:182
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
Definition aoWFS.hpp:204
The unmodulated pyramid wavefront sensor sensitivity function.
Definition aoWFS.hpp:116
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon noise sensitivity at a spatial frequency.
Definition aoWFS.hpp:127
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
Definition aoWFS.hpp:149
The shack hartmann wavefront sensor sensitivity function.
Definition aoWFS.hpp:226
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon noise sensitivity at a spatial frequency.
Definition aoWFS.hpp:237
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
Definition aoWFS.hpp:254
The ideal wavefront sensor sensitivity function.
Definition aoWFS.hpp:37
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
Definition aoWFS.hpp:83
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon noise sensitivity at a spatial frequency.
Definition aoWFS.hpp:61
virtual ~wfs()
Destructor.
Definition aoWFS.hpp:51
wfs()
Constructor.
Definition aoWFS.hpp:43
virtual iosT & dumpWFS(iosT &ios)
Dump the details of the WFS to an io stream.
Definition aoWFS.hpp:96