Multi-Element Fluorescence Xray Spectra Generator
Project description
Multiel_spectra
Multi-element Spectra Generator
Multiel_spectra is a Python package designed for simulating fluorescence X-ray spectra. It enables the simulation of photon transmission through multiple material layers generated by a source spectrum and incorporates detector effects.
Name
Highly Scalable Multi-element Fluorescence X-ray Spectra Simulation.
Description
Multiel_spectra is a package that approximates all steps in an X-ray Fluorescence measurement. It simulates the entire photon path, starting from the X-ray source to the detector, and accounts for transmission through various elemental layers. The primary objective of this package is to generate more accurate approximations of computer-simulated X-ray spectra to closely resemble real X-ray detected spectra. These generated spectra are valuable for various applications, including training artificial neural networks for tasks such as automatic element detection and denoising.
Multiel_spectra encompasses the following key elements in its simulation:
-
Incident Spectra (Source Spectra): The incident spectra are simulated using the "spekpy" package, producing a tuple of arrays containing energy values (X) and spectrum fluence (Y). For detailed information, please refer to the "spekpy" documentation.
-
Fluorescence Spectra Transmission: Multiel_spectra models elements in layers, requiring prior knowledge of the elemental composition of the probe. This composition is defined by the position of each element and its relative abundance within the probe. The fluorescence spectra generated by the source spectra are accurately transmitted through these different layers, with the option to remove the outermost layer (usually air). It's worth noting that only air has thickness, while the other layers are assumed to have a fixed thickness of 1 mm.
-
Detector Effects: Multiel_spectra simulates various detector effects, including escape peaks, sum peaks, and detector efficiency.
Approximations
Currently, Multiel_spectra makes certain approximations in its simulations:
Source Spectra Transmission: The current simulation assumes that the same source spectra arrives at all elements in different layers. It doesn't differentiate the source spectra for individual elements.
Fluorescence Spectra Creation: While SpectraGen accurately transmits different fluorescence spectra through various layers, it does not simulate the creation of new spectra using these transmitted fluorescence spectra as sources. This could be a potential enhancement for future versions.
Photon Material Absorption: SpectraGen approximates photon material absorption using perfect composited materials, without considering impurities or introducing noise. Exploring more realistic absorption models could be beneficial for increased accuracy.
Required Libraries
Multiel_spectra relies on three main libraries:
Spekpy: A Python package used to simulate X-ray tube spectra, which serve as the incident spectra for generating X-ray fluorescence spectra.
Xraylarch: A Python package utilized to obtain mass attenuation coefficients for mixtures of compounds as a function of energy.
Scikit-beam: A Python package used to retrieve energies and cross sections for all X-ray lines in an element.
These libraries are integral to the functionality of Multiel_spectra. For further information you can refer to their documentation.
Installation
It is recommended to install and run the package in a virutal environment.
pip install multiel_spectra
For Dataset generation torch is needed, hence the installation must be:
pip install multiel_spectra[torch]
Setting the environment and related packages:
Spekpy and Scikit-beam (skbeam) are not included in the requirements but are neccesary for the package. If already not installed in your system we recommend installation through the following:
- Locate the files necessary for the installation included in the package: (typically something like /opt/conda/lib/python3.10/site-packages/multiel_spectra)
pip show multiel_spectra
- set conda environment named 'base'
- run: "python <#introduce_multiel_package_location>/install_skbeam.py" in conda base environment.
- run: "python <#introduce_multiel_package_location>/install spekpy.py" in conda base environment.
The order is important since usually the packages created outside the conda environment will not be linked into the environment.
link to official conda documentation: https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
Usage
#Generate the incident spectra
Prim, brem = ms.Primary_gen(30, 46, 0.1, "casim", "nist", 1, 9, "Mo", [('Be', 0.127), ('Air', 10)])
#Compute a multiel-spectra with high number of counts and low noise
final_spectra, present_peaks, els_perc = ms.spectra_gen(np.array([38,25,13,0,8,7]), Prim, brem, s_counts = 30000,n_counts = 30000,b_counts = 1000, c_counts = 1000, escape = True, sum = True, decal = True, char_r = 15, brem_r = 15,noise_f = 1000 )
Output:
The spectra is shown on blue, while on green are shown the elemental lines of the elements present on the spectra. Note that since spectra can be decalibrated the position of the peaks with respect the real energy position of the elemental lines may be displaced.
#Compute a multi-element spectra with low number of counts and high noise to signal ratio
final_spectra, present_peaks, els_perc = ms.spectra_gen(np.array([38,25,13,0,8,7]), Prim, brem, s_counts = 20,n_counts = 30,b_counts = 10, c_counts = 10, escape = True, sum = True, decal = True, char_r = 1, brem_r = 1,noise_f = 1, prop = "" )
Note that "Plot = True" by default and can be omitted, hence if a in interactive plot is not desired it must be explicitly be expressed in the input.
Interactive visualizations are provided trough Bokeh interface, but spectra histograms can be exported as arrays and used in other frameworks.
(quizás poner un link a un google colab notebook donde haga todo)
Support
Roadmap
-
3D photon path simulation
-
No approximation on transmission and excitation simulation
-
Material mix and impurities simulation
-
ANN element detection
-
ANN denoising
Contributing
Contact the autor for contributions or suggestions. Open contributions will soon be available.
Authors and acknowledgment
Thanks to the INFN-Firenze and Labec laboratory
License
MIT license.
Project status
Note: As of now, the project is in the final stages of developing the first working prototype. Development has been active and focused on achieving this milestone.
If you are interested in contributing to or maintaining this project, your involvement is welcome and highly appreciated. Whether you have ideas for improvements, want to help with documentation, or take on a more active role as a maintainer, your support can help ensure the project's continued success.
Feel free to reach out or submit pull requests if you'd like to get involved in shaping the future of this project.
Your update provides transparency about the project's current status and invites potential contributors or maintainers to participate in its development.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file multiel_spectra-0.1.0.0.0.tar.gz
.
File metadata
- Download URL: multiel_spectra-0.1.0.0.0.tar.gz
- Upload date:
- Size: 232.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8028f0a5ff9e2711af5b810b192ec39472886ab3afccdac8bd2a032b8ed3ffa |
|
MD5 | 43dabea2dcbe4d0acf125ace3717c76c |
|
BLAKE2b-256 | cc3a4b61fbe85674f8cfcd18e1b1715e625b4dee6cb193b48b88a9aa6115aba1 |
File details
Details for the file multiel_spectra-0.1.0.0.0-py3-none-any.whl
.
File metadata
- Download URL: multiel_spectra-0.1.0.0.0-py3-none-any.whl
- Upload date:
- Size: 38.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cdfc6e1a8b5b6a6ed973caf39f301811d717f1747249672263bcb0e757d8781 |
|
MD5 | 95fd49ba638a54ee31eef96173005f26 |
|
BLAKE2b-256 | f2698c42ee49182a64c6f0b5acb95944997793b5449ed1fd70f1f01c0f2c1f14 |