Newer
Older
.. contents:: Table of Contents
:local:
Overview
--------
.. interface:: Corrections
:align: right
:width: 350
Provides correction routines for quasielastic, inelastic and diffraction
reductions.
Action Buttons
~~~~~~~~~~~~~~
?
Opens this help page.
Py
Exports a Python script which will replicate the processing done by the current tab.
Run
Runs the processing configured on the current tab.
Manage Directories
Opens the Manage Directories dialog allowing you to change your search directories
and default save directory and enable/disable data archive search.
Calculate Paalman Pings
-----------------------
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
Calculates absorption corrections in the Paalman & Pings absorption factors that
could be applied to the data when given information about the sample (and
optionally can) geometry.
Options
~~~~~~~
Input
Either a reduced file (*_red.nxs*) or workspace (*_red*) or an :math:`S(Q,
\omega)` file (*_sqw.nxs*) or workspace (*_sqw*).
Use Can
If checked allows you to select a workspace for the container in the format of
either a reduced file (*_red.nxs*) or workspace (*_red*) or an :math:`S(Q,
\omega)` file (*_sqw.nxs*) or workspace (*_sqw*).
Sample Shape
Sets the shape of the sample, this affects the options for the shape details
(see below).
Sample/Can Number Density
Density of the sample or container.
Sample/Can Chemical Formula
Chemical formula of the sample or can material. This must be provided in the
format expected by the :ref:`SetSampleMaterial <algm-SetSampleMaterial>`
algorithm.
Plot Output
Plots the :math:`A_{s,s}`, :math:`A_{s,sc}`, :math:`A_{c,sc}` and
:math:`A_{c,c}` workspaces as spectra plots.
Save Result
If enabled the result will be saved as a NeXus file in the default save
directory.
Shape Details
~~~~~~~~~~~~~
Depending on the shape of the sample different parameters for the sample
dimension are required and are detailed below.
Flat Plate
##########
.. interface:: Corrections
:widget: pgFlatPlate
The calculation for a flat plate geometry is performed by the
:ref:`FlatPlatePaalmanPingsCorrection <algm-FlatPlatePaalmanPingsCorrection>`
algorithm.
Sample Thickness
Thickness of sample in :math:`cm`.
Sample Angle
Sample angle in degrees.
Can Front Thickness
Thickness of front container in :math:`cm`.
Can Back Thickness
Thickness of back container in :math:`cm`.
Cylinder
########
.. interface:: Corrections
:widget: pgCylinder
The calculation for a cylindrical geometry is performed by the
:ref:`CylinderPaalmanPingsCorrection <algm-CylinderPaalmanPingsCorrection>`
algorithm, this algorithm is currently only available on Windows as it uses
FORTRAN code dependant of F2Py.
Sample Inner Radius
Radius of the inner wall of the sample in :math:`cm`.
Sample Outer Radius
Radius of the outer wall of the sample in :math:`cm`.
Container Outer Radius
Radius of outer wall of the container in :math:`cm`.
Beam Height
Height of incident beam :math:`cm`.
Beam Width
Width of incident beam in :math:`cm`.
Step Size
Step size used in calculation.
Annulus
#######
.. interface:: Corrections
:widget: pgAnnulus
The calculation for an annular geometry is performed by the
:ref:`CylinderPaalmanPingsCorrection <algm-CylinderPaalmanPingsCorrection>`
algorithm, this algorithm is currently only available on Windows as it uses
FORTRAN code dependant of F2Py.
The options here are the same as for Cylinder.
Background
~~~~~~~~~~
The main correction to be applied to neutron scattering data is that for
absorption both in the sample and its container, when present. For flat plate
geometry, the corrections can be analytical and have been discussed for example
by Carlile [1]. The situation for cylindrical geometry is more complex and
requires numerical integration. These techniques are well known and used in
liquid and amorphous diffraction, and are described in the ATLAS manual [2].
The absorption corrections use the formulism of Paalman and Pings [3] and
involve the attenuation factors :math:`A_{i,j}` where :math:`i` refers to
scattering and :math:`j` attenuation. For example, :math:`A_{s,sc}` is the
attenuation factor for scattering in the sample and attenuation in the sample
plus container. If the scattering cross sections for sample and container are
:math:`\Sigma_{s}` and :math:`\Sigma_{c}` respectively, then the measured
scattering from the empty container is :math:`I_{c} = \Sigma_{c}A_{c,c}` and
that from the sample plus container is :math:`I_{sc} = \Sigma_{s}A_{s,sc} +
\Sigma_{c}A_{c,sc}`, thus :math:`\Sigma_{s} = (I_{sc} - I_{c}A_{c,sc}/A_{c,c}) /
A_{s,sc}`.
References:
1. C J Carlile, Rutherford Laboratory report, RL-74-103 (1974)
2. A K Soper, W S Howells & A C Hannon, `RAL Report RAL-89-046 (1989) <http://wwwisis2.isis.rl.ac.uk/Disordered/Manuals/ATLAS/ATLAS%20manual%20v1.0%20Intro.pdf>`_
3. H H Paalman & C J Pings, `J Appl Phys 33 2635 (1962) <http://dx.doi.org/10.1063/1.1729034>`_
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
The Apply Corrections tab applies the corrections calculated in the Calculate
Corrections tab of the Indirect Data Analysis interface.
This uses the :ref:`ApplyPaalmanPingsCorrection
<algm-ApplyPaalmanPingsCorrection>` algorithm to apply absorption corrections in
the form of the Paalman & Pings correction factors. When *Use Can* is disabled
only the :math:`A_{s,s}` factor must be provided, when using a container the
additional factors must be provided: :math:`A_{c,sc}`, :math:`A_{s,sc}` and
:math:`A_{c,c}`.
Once run the corrected output and can correction is shown in the preview plot,
the Spectrum spin box can be used to scroll through each spectrum. Note that
when this plot shows the result of a calculation the X axis is always in
wavelength, however when data is initially selected the X axis unit matches that
of the sample workspace.
The input and container workspaces will be converted to wavelength (using
:ref:`ConvertUnits <algm-ConvertUnits>`) if they do not already have wavelength
as their X unit.
The binning of the sample, container and corrections factor workspace must all
match, if the sample and container do not match you will be given the option to
rebin (using :ref:`RebinToWorkspace <algm-RebinToWorkspace>`) the sample to
match the container, if the correction factors do not match you will be given
the option to interpolate (:ref:`SplineInterpolation
<algm-SplineInterpolation>`) the correction factor to match the sample.
Options
~~~~~~~
Input
Either a reduced file (*_red.nxs*) or workspace (*_red*) or an :math:`S(Q,
\omega)` file (*_sqw.nxs*) or workspace (*_sqw*).
Geometry
Sets the sample geometry (this must match the sample shape used when running
Calculate Corrections).
Use Can
If checked allows you to select a workspace for the container in the format of
either a reduced file (*_red.nxs*) or workspace (*_red*) or an :math:`S(Q,
\omega)` file (*_sqw.nxs*) or workspace (*_sqw*).
Scale Can by factor
Allows the container intensity to be scaled by a given scale factor before
being used in the corrections calculation.
Use Corrections
The Paalman & Pings correction factors to use in the calculation, note that
the file or workspace name must end in either *_flt_abs* or *_cyl_abs* for the
flat plate and cylinder geometries respectively.
Plot Output
Gives the option to create either a spectra or contour plot (or both) of the
corrected workspace.
Save Result
If enabled the result will be saved as a NeXus file in the default save
directory.
Absorption Corrections
----------------------
.. interface:: Corrections
:widget: tabAbsorptionCorrections
The Absorption Corrections tab provides a cross platform alternative to the
previous Calculate and Apply Corrections tabs.
Common Options
~~~~~~~~~~~~~~
Sample Input
Used to select the sample from either a file or a workspace already loaded
into Mantid.
Use Container
Used to enable or disable use of a container and selects one from either a
file or loaded workspace.
Shape
Select the shape of the sample (see specific geometry options below).
Number Density
Number density for either the sample or container.
Chemical Formula
Chemical formula for either the sample or container in the format expected by
:ref:`SetSampleMaterial <algm-SetSampleMaterial>`.
Use Container Corrections
Enables full container corrections, if disabled only a can subtraction will be
performed.
Scale
Scale factor to scale container input by.
Keep Correction Factors
If checked a :ref:`WorkspaceGroup` containing the correction factors will also
be created, this will have the suffix *_Factors*.
Plot Result
If checked the corrected workspace and correction factors will be plotted.
Save Result
If checked the corrected workspace and (if *Keep Correction Factors* is
checked) the correction factor workspace will be saved as a NeXus file in the
default save directory.
Flat Plate
~~~~~~~~~~
.. interface:: Corrections
:widget: pgAbsCorFlatPlate
Flat plate calculations are provided by the
:ref:`IndirectFlatPlateAbsorption <algm-IndirectFlatPlateAbsorption>` algorithm.
Sample Width
Width of the sample in :math:`cm`.
Sample Height
Height of the sample in :math:`cm`.
Sample Thickness
Thickness of the sample in :math:`cm`.
Container Front Thickness
Thickness of the front of the container in :math:`cm`.
Container Back Thickness
Thickness of the back of the container in :math:`cm`.
Element Size
Size of the square "chunks" to divide the frontal area of the sample into to
calculate corrections in :math:`cm`.
Annulus
~~~~~~~
.. interface:: Corrections
:widget: pgAbsCorAnnulus
Annulus calculations are provided by the :ref:`IndirectAnnulusAbsorption
<algm-IndirectAnnulusAbsorption>` algorithm.
Sample Inner Radius
Radius of the inner wall of the sample in :math:`cm`.
Sample Outer Radius
Radius of the outer wall of the sample in :math:`cm`.
Container Inner Radius
Radius of the inner wall of the container in :math:`cm`.
Container Outer Radius
Radius of the outer wall of the container in :math:`cm`.
Neutron Events
Number of events to use in the Monte Carlo simulation.
Cylinder
~~~~~~~~
.. interface:: Corrections
:widget: pgAbsCorCylinder
Cylinder calculations are provided by the
:ref:`IndirectCylinderAbsorption <algm-IndirectCylinderAbsorption>` algorithm.
Sample Radius
Radius of the outer wall of the sample in :math:`cm`.
Container Radius
Radius of the outer wall of the container in :math:`cm`.
Neutron Events
Number of events to use in the Monte Carlo simulation.
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
Container Subtraction
---------------------
.. interface:: Corrections
:widget: tabContainerSubtraction
The Container Subtraction Tab is used to remove the containers contribution to a run.
Once run the corrected output and can correction is shown in the preview plot, the Spectrum
spin box can be used to scroll through each spectrum. Note that when this plot shows the
result of a calculation the X axis is always in wavelength, however when data is initially
selected the X axis unit matches that of the sample workspace.
The input and container workspaces will be converted to wavelength (using
:ref:`ConvertUnits <algm-ConvertUnits>`) if they do not already have wavelength
as their X unit.
Options
~~~~~~~
Input Sample
Either a reduced file (_red.nxs) or workspace (_red) or an S(Q,\omega) file (_sqw.nxs) or workspace (_sqw) that represents the sample.
Input Container
Either a reduced file (_red.nxs) or workspace (_red) or an S(Q,\omega) file (_sqw.nxs) or workspace (_sqw) that represents the container.
Scale Can by Factor
Allows the container intensity to be scaled by a given scale factor before being used in the corrections calculation.
Plot Output
Gives the option to create either a spectra or contour plot (or both) of the corrected workspace.
Save Result
If enabled the result will be saved as a NeXus file in the default save directory.