1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
.. _tutorial-batch-fitting:
*************
Batch Fitting
*************
While GenX allowed fitting sequences of data by loading datafiles through the command line for a long time
the version 3.6.1 introduced a GUI interface for convenient fitting of a large number of datasets.
This is useful, for example, if the same sample or type of sample has been measured under different conditions
like temperature or magnetic field.
Build the model
***************
For this example you should create a neutron reflectivity model similar to :ref:`tutorial-neutron-sim` with
a **Si** substrate and around 1300 Å **SiO**. You can also load the example ``SuperAdam_SiO.hgx`` directly.
Download the example sequence of datafiles in :download:`SiO_sequence.zip<_attachments/batch_fitting/SiO_sequence.zip>`
and extract it to a folder on your computer. Set the data loader to ``orso`` or ``auto`` and load the first dataset
into your model and simulate.
The interface should look something like this:
.. image:: _attachments/batch_fitting/initial_model.png
Perform an initial refinement to this model with all parameters free. Then uncheck the fit for all parameters but
the SiO thickness and density:
.. image:: _attachments/batch_fitting/first_fit.png
Generate a batch sequence
*************************
Now you should open the batch dialog through the menu :menuselection:`File-->Batch dialog...`.
The dialog should show without any entries. Click on **Import Data...** and select all the extracted filed.
This should import 100 files and generate a list with filenames and batch index:
.. image:: _attachments/batch_fitting/batch_list.png
You can manually define a some kind of physical value (e.g. a temperature) to each dataset by editing the
second column. (This has to be a real number.)
With the meta data that is extracted from the ORSO datafile header it is also possible to automatically generate
this column from an entry in the header.
For this press the **Extract Value** button and select the correct parameter from the hirachy using a
double-click.
Only number values are allowed:
.. image:: _attachments/batch_fitting/select_metadata.png
Fit the batch sequence
**********************
Before starting the fit, make sure the optimizer parameters in :menuselection:`Settings-->Optimizer` are correct
for a performant refinement and define adequat breaking conditions. It is advisable to fit one of the
datasets to see how large to set the size of **Max. Generations** and possibly to define a
**parameter spread to stop**, e.g. 0.1 %.
Once you are happy with the configuration press the **Fit All** button on the batch fitting dialog.
This will start fitting from the first item and show dialogs with plots for each of the fitted parameters.
These plots will be updated after each successful fit and show the parameter value against the
sequence value (here "temperature").
The dataset that is currently being fitted is is shown in the table in red.
During the fit you should see something like this:
.. image:: _attachments/batch_fitting/running_fit.png
.. note::
The check box **Keep result values from last** will start the next dataset with the parameter results
from the previous one. Otherwise the values will be reset to the one used when starting the fits.
With **Adjust boundaries around last values** you can also ajust the min- and max-value settings
to be centered around the starting value. This can be useful in situations where you know that
a parameter will change significantly over the entire sequence but want to limit the range of variation
during a single fit for better convergence.
Final remarks
*************
The given data sequence should result in a flat density and thickness variation in the shape of a parabola:
.. image:: _attachments/batch_fitting/result.png
The table with the batch and fit parameters can be copied using **ctrl+C** and then pasted in a text file
or Excel table.
You can stop the batch fit at any point by using the **Stop** button, which will finish the last dataset unless
you press **Stop** again.
Any dataset in the batch stores its own parameters so you can investigate individual results by double-click on
the rown label, which will load that dataset into the GUI.
All batch datasts are stored in the .hgx file and can later be reviewd.
To regenerate the dataset parameter table and plots you can just select the last one in the sequence and press
**Fit From Here**.
Please let me know if you have good ideas how to improve the batch fitting facility.
|