Full width half maximum
raponzoni
I am really new at IGOR (I've watched all video tutorials, and know the basics), but I have a fundamental doubt: I am adjusting a peak of my experimental data using three peaks. How do I get the value of FWHM for the total peak and not just for each peak used?
Thanks in advance por helping?
John Weeks
WaveMetrics, Inc.
support@wavemetrics.com
June 12, 2013 at 04:47 pm - Permalink
In this case, you have to measure the FWHM of the sum peak, it cannot be obtained from a theoretical equation. To measure it, assume your sum peak is in a wave called sumpeakwave. Then ...
* find the x-position of your sum peak (operation FindAPeak --> V_peakP)
* find the height of your sum peak (height = sumpeakwave[V_peakP])
* find the values in sumpeakwave that are just above half of the height
(operation FindLevels with level = height/2 --> xvalue1, xvalue2)
* calculate the FWHM = abs(xvalue2 - xvalue1)
--
J. J. Weimer
Chemistry / Chemical & Materials Engineering, UAHuntsville
June 13, 2013 at 05:52 am - Permalink
1) Find the height of your shape: Subtract the baseline from the maximum. In simple cases, this can be achieved by wavemax(fitresult)-wavemin(fitresult).
2) Use FindLevel to find the half maximum on the right and left side of your shape (make sure to use height/2 + baseline as input). Use the /R=(start, end) or /EDGE parameter to search for the two crossing values.
3) The distance between x1 and x2 will be your FWHM. Keep in mind that this is just a numerically estimated value.
June 13, 2013 at 06:08 am - Permalink