A set of tools for importing data from the LXcat project.
Project description
LXcat data parser
A set of tools developed at the High Voltage Lab (HVL) of ETH Zurich, for reading/writing electron scattering cross sections data, in a format compatible with the LXcat project (www.lxcat.net).
To load an electron scattering cross section set:
>>> import lxcat_data_parser as ldp >>> data = ldp.CrossSectionSet("N2_data.txt")
The loaded set can be modified and saved again (here the ELASTIC cross section is multiplied by 10):
>>> for cross_section in data.cross_sections: >>> if cross_section.type == ldp.CrossSectionTypes.ELASTIC: >>> cross_section.data["cross section"] *= 10 >>> data.write("N2_data_rescaled.txt")
CROSS SECTION DATA FORMAT
Description of the data format taken from www.lxcat.net. In downloaded files, each collision process is defined by a block consisting of:
1st line: Keyword in capitals indicating the type of the collision. Possible collision types are ELASTIC, EFFECTIVE, EXCITATION, IONIZATION, or ATTACHMENT (capital letters required, key words are case sensitive), where “ELASTIC” is used to denote the elastic momentum transfer cross section and where “EFFECTIVE” denotes the total momentum transfer cross section (sum of elastic momentum transfer and total inelastic cross sections). The latter is useful for solving the Boltzmann equation in the 2-term approximation.
2nd line: Name of the target particle species. This name is a character string, freely chosen by the user, e.g. “Ar”. Optionally for excitation processes, the name of the corresponding excited state can be specified on the same line, separated from the first name either by arrow “->” (dash + greater than) or by double-head arrow “<->” (less than + dash + greater than), e.g. “Ar -> Ar*” and “Ar <-> Ar*”, respectively. In the later case BOLSIG+ will automatically define the inverse superelastic process, constructing the superelastic cross-section by detailed balancing, and considering the indicated excited state as the target. In this case, the ratio of statistical weights must be input in the 3rd line (see below). Alternatively, superelastic collisions could be defined explicitly as excitation collisions with a negative electron energy loss with user input cross sections and species name, “Ar*”, for example.
3rd line: For elastic and effective collisions, the ratio of the electron mass to the target particle mass. For excitation or ionization collisions, the electron energy loss (nominally the threshold energy) in eV. For attachment, the 3rd line is missing. In case of an excitation process where an excited state has been indicated on the 2nd line using double-head arrow “<->”, the 3rd line must specify also ratio of the statistical weights of the final state to the initial state as the second parameter in 3rd line this is needed by BOLSIG+ to calculate the de-excitation cross-section.
from 4th line (optionally): User comments and reference information, maximum 100 lines. The only constraint on format is that these comment lines must not start with a number.
Finally: Table of the cross section as a function of energy. The table starts and ends by a line of dashes “——” (at least 5), and has otherwise two numbers per line: the energy in eV and the cross section in m2.
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 Distributions
Built Distribution
Hashes for lxcat_data_parser-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d545846a872ec6b102284fd11dfca0765acaa846c57c20a5653c8b482759adb5 |
|
MD5 | f46393d85157ff398f431790139f2bbc |
|
BLAKE2b-256 | 4094b0a33b9b097df7fefba93862f7ac32ef96d3dea9251b1d487b437f315a76 |