Loop outputs
Top-level outputs pre loop
Before the loop starts, a number of informational outputs are generataed in the top-level loop folder.
These are:
config.ymlThe configuration file used for the loop, containing all input parameters and settings.gitl.logLog file containing runtime information, warnings and diagnostic messages generated during execution.
Per iteration outputs
The per-iteration outputs are saved to a folder named iteration_XXXX where XXXX is the iteration number, starting at 1.
The outputs within an iteration are:
efield_estimations.fitsData cube of 2x3 frames containing the estimated electric field in the focal plane for each of the 3 wavelengths, real and imaginary. Sorting: R-W1, I-W1, R-W2, I-W2, R-W3, I-W3.images.fitsAll focal-plane images taken during the iteration. 21 images total: the first images is unprobed in wavelength 1, followed by 3 probe pairs (6 images total); then repeated for wavelength 2 and 3.intensity_coherent.fitsCube of 3 frames, per wavelength, containing the coherent intensity in the focal plane.intensity_incoherent.fitsCube of 3 frames, per wavelength, containing the incoherent intensity in the focal plane.intensity_total.fitsCube of 3 frames, per wavelength, containing the total intensity in the focal plane.dm_dataDirectory containing the DM commands per iteration, saved asdm1_command_history.fitsanddm2_command_history.fits, which get updated during each iteration. If N total iterations were run, the fits files contaion N+1 frames, the first one being from before the loop starts.perfect_efields.fitsData cube of 2x3 frames containing the perfect/model electric field in the focal plane for each of the 3 wavelengths, real and imaginary. Sorting: R-W1, I-W1, R-W2, I-W2, R-W3, I-W3.
Top-level outputs post loop
After the loop finishes, a number of outputs are generated, containing initial analyses, results and metrics.
These are:
contrast_vs_iteration.pdfPlot of composed broadband contrast in three wavelengths vs iteration number.efield_variance.csvElectric field variance per wavelength per iteration data as csv table.efield_variance.pdfPlot of electric field variance per wavelength vs iteration number.estimation_variance_per_pixel.fitsEstimation variance per pixel across all iterations, per wavelength, as fits cube of 3 frames.measured_contrast.csvComposed broadband contrast per iteration data as csv table.final_frames.fitsFinal images taken after loop completion. 21 images total: the first images is unprobed in wavelength 1, followed by 3 probe pairs (6 images total); then repeated for wavelength 2 and 3.
Example output directory structure
A typical HOWFSC loop run produces a directory with the following struture:
<run_directory>
├── config.yml
├── gitl.log
├── contrast_vs_iteration.pdf
├── efield_variance.csv
├── efield_variance.pdf
├── estimation_variance_per_pixel.fits
├── final_frames.fits
├── measured_contrast.csv
├── iteration_0001
│ ├── dm1_command.fits
│ ├── dm2_command.fits
│ ├── efield_estimations.fits
│ ├── images.fits
│ ├── intensity_coherent.fits
│ ├── intensity_incoherent.fits
│ ├── intensity_total.fits
│ └── perfect_efields.fits
├── iteration_0002
│ └── ...
├── ...
└── iteration_XXXX
└── ...
Where:
<run_directory> is automatically created for each loop run (typically including a timestamp and model name).