HeliumAnalyserEfficiency v1¶
Summary¶
Calculates the efficiency of a He3 analyser.
Properties¶
Name |
Direction |
Type |
Default |
Description |
---|---|---|---|---|
InputWorkspace |
Input |
WorkspaceGroup |
Mandatory |
Input group workspace to use for polarization calculation |
SpinStates |
Input |
string |
11,10,01,00 |
Order of individual flipper configurations in the input group workspace, e.g. “01,11,00,10” |
PXD |
Input |
number |
12 |
Gas pressure in bar multiplied by cell length in metres |
PXDError |
Input |
number |
0 |
Error in gas pressure multiplied by cell length |
StartX |
Input |
number |
1.75 |
Lower boundary of wavelength range to use for fitting |
EndX |
Input |
number |
8 |
Upper boundary of wavelength range to use for fitting |
IgnoreFitQualityError |
Input |
boolean |
False |
Whether the algorithm should ignore a poor chi-squared (fit cost value) of greater than 1 and therefore not throw an error |
OutputWorkspace |
Output |
Mandatory |
Helium analyzer efficiency as a function of wavelength |
|
OutputFitCurves |
Output |
The name of the matrix workspace containing the calculated fit curve, the original data, and the difference between the two. |
||
OutputFitParameters |
Output |
The name of the table workspace containing the fit parameter results. |
Description¶
Takes a normalised group workspace and combines this with the cell path length multiplied by the gas pressure (PXD
)
to calculate the efficiency of the analyser. The input workspace must be a group of four single spectrum histogram workspaces, each
representing the transmission of a known spin state as specified by the SpinStates
parameter.
If the transmission of the wanted spin state is
The efficiency of the analyser cell is given by
If our four periods are PXD
, and
To calculate the error, PXDError
. The covariance between
where
If
As the number of histogram bins used in the fit increases,
Usage¶
Example - Calculate Analyser Efficiency
wsPara = CreateSampleWorkspace('Histogram', Function='User Defined', UserDefinedFunction='name=UserFunction,Formula=0.5*exp(-0.0733*12*x*(1-0.9))',XUnit='Wavelength', xMin='1',XMax='8', BinWidth='1', NumBanks='1', BankPixelWidth='1')
wsPara1 = CloneWorkspace(wsPara)
wsAnti = CreateSampleWorkspace('Histogram', Function='User Defined', UserDefinedFunction='name=UserFunction,Formula=0.5*exp(-0.0733*12*x*(1+0.9))',XUnit='Wavelength', xMin='1',XMax='8', BinWidth='1', NumBanks='1', BankPixelWidth='1')
wsAnti1 = CloneWorkspace(wsAnti)
grp = GroupWorkspaces([wsPara,wsAnti,wsPara1,wsAnti1])
eff = HeliumAnalyserEfficiency(grp, SpinStates='11,01,00,10')
print('Efficiency at ' + str(mtd['eff'].dataX(0)[0]) + ' Å = ' + str(mtd['eff'].dataY(0)[0]))
print('Error in efficiency at ' + str(mtd['eff'].dataX(0)[0]) + ' Å = ' + str(mtd['eff'].dataE(0)[0]))
Output:
Efficiency at 1.0 Å = ...
Error in efficiency at 1.0 Å = ...
References¶
Categories: AlgorithmIndex | SANS\PolarizationCorrections
Source¶
C++ header: HeliumAnalyserEfficiency.h
C++ source: HeliumAnalyserEfficiency.cpp