mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
idealCoronagraph.hpp
Go to the documentation of this file.
1/** \file idealCoronagraph.hpp
2 * \brief Declares and defines a class to describe the Ideal Coronagraph.
3 * \ingroup imaging_files
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2015, 2016, 2017 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
27#ifndef __idealCoronagraph_hpp__
28#define __idealCoronagraph_hpp__
29
30#include <iostream>
31
33#include "imagingUtils.hpp"
34
35#include "../wfp/imagingArray.hpp"
36
37#include "../ioutils/fits/fitsFile.hpp"
38#include "../ioutils/fits/fitsUtils.hpp"
39#include "../improc/imagePads.hpp"
40
41namespace mx
42{
43
44namespace wfp
45{
46
47/// The Ideal Coronagraph
48/** A simple toy coronagraph which operates only the pupil plane, subtracting the energy-minimizing wavefront \cite
49 * cavarroc_2006. For an on-axis source with a perfectly flat wavefront this results in perfect extinction. This
50 * coronagraph is not physically realizable, but it is often useful for modeling and analysis, and it has been shown
51 * that real-world optimized coronagraphs often approach ideal performance \cite sauvage_2010 [and Males in prep].
52 *
53 * \ingroup coronagraphs
54 */
55template <typename _realT>
57{
58 /// The real floating point type
59 typedef _realT realT;
60
61 /// The complex floating point type
62 typedef std::complex<realT> complexT;
63
64 /// The wavefront complex field type
65 typedef imagingArray<std::complex<realT>, fftwAllocator<std::complex<realT>>, 0> complexFieldT;
66
67 /// The image type
68 typedef Eigen::Array<realT, Eigen::Dynamic, Eigen::Dynamic> imageT;
69
70 /// The directory where coronagraph files are stored
71 std::string _fileDir;
72
73 /// The linear size of the wavefront in pixels
74 int _wfSz;
75
76 imageT _realPupil;
77
78 complexFieldT m_focalPlane;
79
80 /// Fraunhofer propagator
82
83 /// Determines how the image is centered.
84 /** If 0 (default) it is at 0.5*(wfSz-1), if true it is shifted by 0.5*m_wholePixel in each axis. This is passed to
85 * fraunhoferPropagator when it is resized.
86 */
88
90
91 /// Get the wavefront size in pixels
92 /**
93 * \returns the wavefront size in pixels
94 */
95 int wfSz();
96
97 /// Set the wavefront size in pixels.
98 /**
99 */
100 void wfSz( int sz /**< [in] is the new size */ );
101
102 /// Set the real pupil mask.
103 /** The input mask does not have to be the same size as wfSz, as the stored mask will be padded.
104 *
105 * \returns 0 on success.
106 * \returns -1 on error.
107 */
108 int setPupil( imageT &pupil /**< [in] the pupil mask. */ );
109
110 /// Load the real pupil mask from a FITS file.
111 /** The input mask does not have to be the same size as wfSz, as the stored mask will be padded.
112 *
113 * \returns 0 on success.
114 * \returns -1 on error.
115 */
116 int loadPupil( const std::string &pupilFile /**< [in] the FITS file containing the pupil mask. */ );
117
118 /// Load the components of the coronagraph (just a pupil) based in its base name
119 /** Looks in _filDir for the files.
120 *
121 * \returns 0 on success.
122 * \returns -1 on error.
123 */
124 int loadCoronagraph(
125 const std::string &cName /**< The name of the coronagraph, without directory or file extensions */ );
126
127 /// Propagate the given pupil-plane wavefront through the coronagraph to the exit pupil plane
128 int propagate(
130 &pupilPlane /**< [in.out] The wavefront at the input pupil plane. It is modified by the coronagraph. */ );
131
132 /// Propagate the given pupil-plane wavefront through the coronagraph to the exit pupil plane, and then to the final
133 /// focal plane.
134 int
135 propagate( imageT &fpIntensity, ///< [out] The intensity image in the focal plane. This should be pre-allocated.
137 &pupilPlane ///< [in.out] The wavefront at the input pupil plane. It is modified by the coronagraph.
138 );
139
140 /// Propagate the given pupil-plane wavefront without the coronagraph.
141 /** For the ideal coronagraph nothing is done. This method is included for compliance with
142 * with the coronagraph interface.
143 */
144 int propagateNC(
145 complexFieldT &pupilPlane /**< [in.out] The wavefront at the input pupil plane. It is un-modified. */ );
146
147 /// Propagate the given pupil-plane wavefront without the coronagraph to the exit pupil plane, and then to the final
148 /// focal plane.
149 /** For the ideal coronagraph nothing is done to the input wavefront.
150 */
151 int
152 propagateNC( imageT &fpIntensity, ///< [out] The intensity image in the focal plane. This should be pre-allocated.
153 complexFieldT &pupilPlane ///< [in.out] The wavefront at the input pupil plane. It is un-modified.
154 );
155
156 bool apodize{ false };
157 imageT apodizer;
158};
159
160template <typename realT>
161idealCoronagraph<realT>::idealCoronagraph()
162{
163 _wfSz = 0;
164}
165
166template <typename realT>
168{
169 return _wfSz;
170}
171
172template <typename realT>
174{
175 _wfSz = sz;
176
177 m_fi.setWavefrontSizePixels( sz );
178 m_fi.wholePixel( m_wholePixel );
179 m_focalPlane.resize( sz, sz );
180}
181
182template <typename realT>
184{
185 if( _wfSz <= 0 )
186 {
187 mxError( "idealCoronagraph", MXE_PARAMNOTSET, "Must set wavefront size (wfSz) before setting up coronagraph." );
188 return -1;
189 }
190
191 // Create Coronagraph pupil.
192 improc::padImage( _realPupil, pupil, 0.5 * ( _wfSz - pupil.rows() ), 0 );
193
194 return 0;
195}
196
197template <typename realT>
198int idealCoronagraph<realT>::loadPupil( const std::string &pupilFile )
199{
200
201 imageT pupil;
202
204
205 ff.read( pupil, pupilFile );
206
207 return setPupil( pupil );
208
209 return 0;
210}
211
212template <typename realT>
213int idealCoronagraph<realT>::loadCoronagraph( const std::string &cName )
214{
215
216 if( _fileDir == "" )
217 {
218 mxError( "idealCoronagraph", MXE_PARAMNOTSET, "file directory (fileDir) not set." );
219 return -1;
220 }
221
222 std::string pupilFile = _fileDir + "/" + cName + ".fits";
223
224 return loadPupil( pupilFile );
225}
226
227template <typename realT>
229{
230 if( pupilPlane.rows() != _realPupil.rows() || pupilPlane.cols() != _realPupil.cols() )
231 {
232 mxError( "idealCoronagraph", MXE_SIZEERR, "pupilPlane wavefront size does not match realPupil" );
233 return -1;
234 }
235
236 Eigen::Map<Eigen::Array<complexT, -1, -1>> eigWf( pupilPlane.data(), pupilPlane.cols(), pupilPlane.rows() );
237 Eigen::Map<Eigen::Array<realT, -1, -1>> eigPup( _realPupil.data(), _realPupil.cols(), _realPupil.rows() );
238
239 eigWf = ( eigWf - ( ( eigWf * eigPup ).sum() / ( eigPup * eigPup ).sum() ) ) * eigPup;
240
241 if( apodize )
242 {
243 eigWf *= apodizer;
244 }
245
246 return 0;
247}
248
249template <typename realT>
251{
252 propagate( pupilPlane );
253
254 m_fi.propagatePupilToFocal( m_focalPlane, pupilPlane );
255
256 int x0 = 0.5 * ( _wfSz - 1 ) - 0.5 * ( fpIntensity.rows() - 1 );
257 int y0 = 0.5 * ( _wfSz - 1 ) - 0.5 * ( fpIntensity.cols() - 1 );
258
259 extractIntensityImage( fpIntensity, 0, fpIntensity.rows(), 0, fpIntensity.cols(), m_focalPlane, x0, y0 );
260
261 return 0;
262}
263
264template <typename realT>
266{
267 static_cast<void>( pupilPlane );
268 return 0;
269}
270
271template <typename realT>
273{
274 propagateNC( pupilPlane );
275
276 m_fi.propagatePupilToFocal( m_focalPlane, pupilPlane );
277
278 int x0 = 0.5 * ( _wfSz - 1 ) - 0.5 * ( fpIntensity.rows() - 1 );
279 int y0 = 0.5 * ( _wfSz - 1 ) - 0.5 * ( fpIntensity.cols() - 1 );
280
281 extractIntensityImage( fpIntensity, 0, fpIntensity.rows(), 0, fpIntensity.cols(), m_focalPlane, x0, y0 );
282
283 return 0;
284}
285
286} // namespace wfp
287} // namespace mx
288
289#endif //__idealCoronagraph_hpp__
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
Class to perform Fraunhofer propagation between pupil and focal planes.
Declares and defines a class for Fraunhofer propagation of optical wavefronts.
int padImage(imOutT &imOut, imInT &imIn, unsigned int padSz, typename imOutT::Scalar value)
Pad an image with a constant value.
Definition imagePads.hpp:58
Utilities for modeling image formation.
The mxlib c++ namespace.
Definition mxError.hpp:106
The Ideal Coronagraph.
std::string _fileDir
The directory where coronagraph files are stored.
Eigen::Array< realT, Eigen::Dynamic, Eigen::Dynamic > imageT
The image type.
int _wfSz
The linear size of the wavefront in pixels.
int propagate(complexFieldT &pupilPlane)
Propagate the given pupil-plane wavefront through the coronagraph to the exit pupil plane.
int loadPupil(const std::string &pupilFile)
Load the real pupil mask from a FITS file.
std::complex< realT > complexT
The complex floating point type.
imagingArray< std::complex< realT >, fftwAllocator< std::complex< realT > >, 0 > complexFieldT
The wavefront complex field type.
int loadCoronagraph(const std::string &cName)
Load the components of the coronagraph (just a pupil) based in its base name.
_realT realT
The real floating point type.
realT m_wholePixel
Determines how the image is centered.
int wfSz()
Get the wavefront size in pixels.
int propagateNC(complexFieldT &pupilPlane)
Propagate the given pupil-plane wavefront without the coronagraph.
int setPupil(imageT &pupil)
Set the real pupil mask.
fraunhoferPropagator< complexFieldT > m_fi
Fraunhofer propagator.