Python library for pressure calculation based on ruby fluorescence spectrum. Apart from standard capabilities includes a simple tkinter-based GUI. Available for Python 3.6+ under the MIT License.
Since pRuby requires specific versions of python and some popular
packages such as numpy
, it is recommended to use it in a virtual
environment in order to avoid version conflicts.
Virtual environment can be usually created using
virtualenvwrapper
or
virtualenvwrapper-win
in the command line:
$ mkvirtualenv -p /path/to/python3.6+ pRuby-venv
Afterwards, the package can bo either installed via PyPI,
where it is available under the name pruby
:
$ pip install pruby
In order to evaluate pressure with pRuby, import and work with
the PressureCalculator
object. A general routine might include:
- Importing the pressure calculator
- Preparing the pressure calculator
- Reading in a ruby fluorescence spectrum
- Calculating pressure based on the R1 position
- Printing the result
- Choosing a place to plot a spectrum
- Plotting the spectrum
This routine can be performed in pRuby using the following commands:
from pruby import PressureCalculator
calc = PressureCalculator()
calc.read('/path/to/ruby/spectrum.txt')
calc.calculate_p_from_r1
print(calc.p)
calc.output_path = '/path/to/plotted/spectrum.png'
calc.draw()
Of course, selected steps can be omitted, reorganised, or repeated at will.
Instead of reading an actual spectrum, position of r1 peak can be assigned
manually by setting the value of calc.r1
. Pressure can be calculated
based on r1, but r1 can be calculated based on current pressure as well.
If output_path
is not provided, calling calc.draw()
will show a plot
in a pop-up matplotlib
window instead. In particular, calling draw()
multiple times will overlay the spectra.
The same capabilities can be accessed via simple tkinter GUI,
which is functional on all popular systems, although some of its capabilities
were proved to be limited on Microsoft Windows. In order to run the graphical
interface, execute the pRuby_GUI.py
script (if you downloaded it from github)
or start the interface from the level of package using:
from pruby import gui
gui.run()
pRuby GUI provides a simple, minimalistic GUI with the following functionality:
- Data - import, draw and handle reference for ruby fluorescence data.
- Import - Import ruby fluorescence data from .txt file, fit the peaks according to selected peakhunt method and recalculate R1 and p values.
- Draw - Draw imported data file as well as fitted curve and found peak position. Multiple plots will be drawn on the same canvas if it stays open.
- To reference - Export current R1, t and p1 values as a new reference.
- From reference - Import R1, r and p1 data from previously saved reference.
- Draw on import - Toggle this option on in order to automatically draw every imported data on the active canvas.
- Methods - switch between the strategies to affect the engine
of underlaying calculator and change the behaviour of program.
- Reading strategies
- Raw spectrum txt - when reading the spectrum, expect a raw txt file with two columns containing a sequences of x and y values only.
- Metadata spectrum txt - same as above, but ignore every line which can not be interpreted (default).
- Single value txt - expect only a single line with r1 value.
- Backfitting strategies
- Linear Huber - estimate the background using linear function fitting with Huber sigmas (large deviations from the line - peaks - are ignored).
- Linear Satelite - estimate the background using linear function fitting with unit sigmas to 1 nm ranges of edge-most data only.
- No background fitting - do not fit any background - assume bg of 0.
- Peakfitting strategies
- Gauss - find the positions of R1 and R2 using two independent Gaussian function centered around each of them and fit to a very small amount of data. Very robust approach, but can be inaccurate (default).
- Pseudovoigt - find the position of R1 and R2 using a sum of two Gaussian and two Lorentzian functions, centred pairwise on each of the peaks. Most precise method for handling sharp, good quality signals.
- Camel - find the positions of R1 and R2 by fitting a sum of three Gaussian curves to data: one for R1, one for R1, one low between them. Intended fot bad quaility data with heavily overlapping peaks, which can not be determined correctly using other approaches.
- No peak fitting - do not fit any curve to model peak in spectrum. To be used with Single value txt and No background fitting.
- Correcting strategies
- Vos R1 - correct for temperature difference accorging to the R1 equation put forward in 1991 by Vos et al. See doi:10.1063/1.348903 (default).
- Ragan R1 - correct for temperature difference accorging to equation put forward in 1992 by Ragan et al. See doi:10.1063/1.351951.
- No t correction - don't correct for temperature difference.
- Translating strategies
- Jacobsen - translate R1 position to pressure according to equation for helium pressure media put forward in 2008 by Jacobsen et al. See doi:10.2138/am.2008.2988.
- Liu - translate R1 position to pressure according to equation put forward in 2013 by Liu et al. See doi:10.1088/1674-1056/22/5/056201.
- Mao - translate R1 position to pressure according to equation put forward in 1986 by Mao et al. See doi:10.1029/JB091iB05p04673.
- Piermarini - translate R1 position to pressure according to equation put forward in 1975 by Piermarini et al. See doi:10.1063/1.321957.
- Ruby2020 - translate R1 position to pressure using equation put forward in 2020 by the International Practical Pressure Scale Task Group. See doi:10.1080/08957959.2020.1791107 (default).
- Wei - translate R1 position to pressure according to equation put forward in 2011 by Wei et al. See doi:10.1063/1.3624618.
- Drawing strategies
- Simple - draws spectrum with as little details as possible to increase clarity, e.g. when overlaying multiple spectra.
- Complex - draw the same elements as Simple, but additionally plot background profile, fitting range, and determined R2 value as well.
- Single line - minimalistic; draw only a single vertical line at R1.
- Reading strategies
- ? - Show basic information about the program
These and some other behaviour options are available and can be selected from the package
level as well, by modyfying the engine
attribute of a PressureCalculator
.
For example, the temperature correction can be turned off therein using:
calc.engine.set_strategy(correcting='None')
Each of the six strategies (reading
, backfitting
, peakfitting
,
correcting
, translating
, and drawing
) can be changed independently
or together by providing its name, as listed in the table above.
This software is made by Daniel Tchoń, and distributed under an MIT license. It is in development and all tips, suggestions, or contributions are welcome and can be sent here. If you have utilised pRuby in academic work, please let me know! If the tools find a wider use, a dedicated paper will be published.