integral_breadth
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| integral_breadth [2018/03/19 08:05] – rowlesmr3 | integral_breadth [2025/09/19 15:18] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Integral Breadth ====== | ||
| + | |||
| + | The integral breadth is an alternative definition of a peak width; it is the width of a rectangle with the same height as the peak. | ||
| + | |||
| + | There are some macros below that give the IB of a peak given its parameters. | ||
| + | |||
| + | See also [[peak_shapes]]. | ||
| + | |||
| + | Macro by: Matthew Rowles. | ||
| + | |||
| + | |||
| + | <code topas> | ||
| + | '' | ||
| + | '' | ||
| + | macro & Integral_Breadth_PV(& | ||
| + | { | ||
| + | fwhm / (lor (2/Pi) + (1-lor) 2 Sqrt(Ln(2)/ | ||
| + | } | ||
| + | |||
| + | macro & Integral_Breadth_G(& | ||
| + | { | ||
| + | fwhm / (2 Sqrt(Ln(2)/ | ||
| + | } | ||
| + | |||
| + | macro & Integral_Breadth_L(& | ||
| + | { | ||
| + | fwhm / (2/Pi) | ||
| + | } | ||
| + | |||
| + | macro & Integral_Breadth_PVII(& | ||
| + | { | ||
| + | (fwhm Sqrt(Pi) Gamma_Approx(m-0.5)) / (2 Sqrt(2^(1/ | ||
| + | } | ||
| + | </ | ||