Skip to content

Latest commit

 

History

History
197 lines (168 loc) · 7.65 KB

index.md

File metadata and controls

197 lines (168 loc) · 7.65 KB
layout datatable
default
true

About this catalogue

AFINO was designed to automatically search solar X-ray data for signatures consistent with quasi-periodic pulsations (QPP) in solar flares. Currently, AFINO runs daily, analysing any new substantial solar flares observed by the GOES (Geostationary Operational Environmental Satellite) X-ray sensor. Over 800 analysed flares are in the results database, which begins in early 2011.

Events between 2011 and 2019 were observed by GOES-15/XRS data at 2s cadence. Since the beginning of 2020, observations were made by GOES-16/XRS with a cadence of 1s.

The main feature of AFINO is the use of a model comparison technique to analyse the Fourier Power Spectral Density (PSD) of solar flare time series data. Events showing a strong preference for a localized frequency enhancement in the PSD are flagged as flares of interest (see the Detection column).

These results are freely available for reference by anyone interested. If you do make use of this list, please cite the following papers where the AFINO techniques and results were published: Inglis et al. ApJ, 798, 108, (2015) , Inglis et al., ApJ, 833, 284, (2016).

Key Description
Model S0 A single power-law plus constant model of the Power Spectral Density (PSD)
Model S1 A single power-law plus constant, plus a localized enhancement consistent with a QPP signature
Model S2 A broken-power law plus a constant
BIC The Bayesian Information Criterion. BIC = -2 Ln(L) + k Ln(n), where L is the likelihood function
\\( \Delta BIC \ S_0 \ vs \ S_1 \\) The difference in BIC between models S0 and S1. A positive value >10 indicates a strong preference for S1 over S0
\\( \Delta BIC \ S_0 \ vs \ S_2 \\) The difference in BIC between models S0 and S2. A positive value >10 indicates a strong preference for S2 over S0
\\( \Delta BIC \ S_2 \ vs \ S_1 \\) The difference in BIC between models S2 and S1. A positive value >10 indicates a strong preference for S1 over S2
Detection If model S1 is preferred over all others by ΔBIC > 10, the criteria are met for a QPP detection
\\( p_n \\) p-value associated with goodness-of-fit estimate for each model n=0,1,2
P (s) Best-fit period, in seconds, of the localized enhancement, where appropriate
width Best-fit width, in log-f space, of the localized enhancement, where appropriate
Flags S = short data series (less than 200 data points), B0 = bad fit to model S0 (pS0 less than 0.01), B1 = bad fit to model S1 (pS1 less than 0.01), B2 = bad fit to model S2 (pS2 less than 0.01)

The full AFINO results table is shown below. The results are searchable and sortable by column. Please note that new events may take up to a few days to appear in this list, depending on data availability.

{% for row in site.data.afino_master_record %}

{% assign prob_m0 = row.probability_m0 | round:3 %} {% if prob_m0 >= 1 %}

{% else %} {% endif %}

{% assign prob_m1 = row.probability_m1 | round:3 %} {% if prob_m1 >= 1 %}

{% else %} {% endif %}

{% assign prob_m2 = row.probability_m2 | round:3 %} {% if prob_m2 >= 1 %}

{% else %} {% endif %}

{% assign baseurl = '/AFINO/plots/summary_plot' %} {% assign sep = '_' %} {% assign end_url = '_GOES_long.pdf' %} {% capture full_url %}{{baseurl}}{{sep}}{{row.Date}}{{sep}}{{row.Start_time}}{{sep}}{{row.Date}}{{sep}}{{row.End_time}}{{end_url}} {% endcapture %}

{% assign hv_base_url = 'https://helioviewer.org/?date='%} {% assign hv_end_url = '&imageScale=2.42044088&imageLayers=%5BSDO,AIA,171,1,100%5D&eventLayers=%5BFL,all,1%5D&eventLabels=true'%} {% capture hv_date %}{{row.Date | slice: 0,4}}{{'-'}}{{row.Date | slice: 4,2}}{{'-'}}{{row.Date | slice: 6,2}}{{'T'}}{{row.Start_time | slice:0,2}}{{':'}}{{row.Start_time | slice:2,2}}{{':'}}{{row.Start_time | slice: 4,2}}{% endcapture %} {% capture hv_full_url %}{{hv_base_url}}{{hv_date}}{{hv_end_url}} {% endcapture %}

{% endfor %}
Date GOES class Instr. Start time End time Wavelength ΔBIC S0 vs S1 ΔBIC S0 vs S2 ΔBIC S2 vs S1 Detection p0 p1 p2 P(s) Width Flags Plot Helioviewer
{{ row.Date }} {{row.GOES_class}} {{ row.Instrument}} {{row.Start_time}} {{row.End_time}} {{row.Wavelength}} {{row.dBIC_0v1 | round:1 }} {{row.dBIC_0v2 | round:1 }} {{row.dBIC_2v1 | round:1 }} {{row.Detection}} {{0.000}} {{prob_m0}} {{0.000}} {{prob_m1}} {{0.000}} {{prob_m2}} {{row.period}} {{row.width | round:2}} {{row.Flags}} Show Show
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js"></script> <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script> <script> $(document).ready(function() { $("#catalogue").dataTable( { paging: true, pageLength: 100, 'data-sort': true, order: [[ 0, "desc" ], [3, "desc"]], stateSave: true, searching: true }); }); </script>