moose-spectra 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- moose_spectra-0.2.0/.gitignore +175 -0
- moose_spectra-0.2.0/LICENSE +7 -0
- moose_spectra-0.2.0/PKG-INFO +161 -0
- moose_spectra-0.2.0/README.md +122 -0
- moose_spectra-0.2.0/_version.py +16 -0
- moose_spectra-0.2.0/docs/Theory.md +0 -0
- moose_spectra-0.2.0/docs/assets/moose.svg +72 -0
- moose_spectra-0.2.0/docs/citing.md +52 -0
- moose_spectra-0.2.0/docs/examples/CN/370-400nm_9ns_calib.txt +510 -0
- moose_spectra-0.2.0/docs/examples/Moose_fitting_backends.ipynb +147 -0
- moose_spectra-0.2.0/docs/examples/Multiple_species.ipynb +807 -0
- moose_spectra-0.2.0/docs/examples/N2SPS/20220302_s01_sig.cam +1026 -0
- moose_spectra-0.2.0/docs/examples/N2SPS/calc_N2C_spectrum_Trot1200_Tvib3000_slit0.1.txt +40013 -0
- moose_spectra-0.2.0/docs/examples/bokeh.ipynb +990 -0
- moose_spectra-0.2.0/docs/examples/dask.ipynb +993 -0
- moose_spectra-0.2.0/docs/examples/matplotlib.ipynb +810 -0
- moose_spectra-0.2.0/docs/examples/plotly.ipynb +699 -0
- moose_spectra-0.2.0/docs/examples.md +34 -0
- moose_spectra-0.2.0/docs/gen_ref_pages.py +32 -0
- moose_spectra-0.2.0/docs/get_started.md +64 -0
- moose_spectra-0.2.0/docs/index.md +39 -0
- moose_spectra-0.2.0/docs/javascripts/mathjax.js +20 -0
- moose_spectra-0.2.0/mkdocs.yml +100 -0
- moose_spectra-0.2.0/pyproject.toml +65 -0
- moose_spectra-0.2.0/src/Moose/FitUtil.py +63 -0
- moose_spectra-0.2.0/src/Moose/Simulation.py +304 -0
- moose_spectra-0.2.0/src/Moose/__init__.py +20 -0
- moose_spectra-0.2.0/src/Moose/data/C2_swan.db +0 -0
- moose_spectra-0.2.0/src/Moose/data/C2_swan_J300.db +0 -0
- moose_spectra-0.2.0/src/Moose/data/CNBX.db +0 -0
- moose_spectra-0.2.0/src/Moose/data/N2CB.db +0 -0
- moose_spectra-0.2.0/src/Moose/data/N2PlusBX.db +0 -0
- moose_spectra-0.2.0/src/Moose/data/NHAX.db +0 -0
- moose_spectra-0.2.0/src/Moose/data/NOBX.db +0 -0
- moose_spectra-0.2.0/src/Moose/data/OHAX.db +0 -0
- moose_spectra-0.2.0/src/Moose/data/data_sources.txt +59 -0
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py,cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# poetry
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
102
|
+
#poetry.lock
|
|
103
|
+
|
|
104
|
+
# pdm
|
|
105
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
106
|
+
#pdm.lock
|
|
107
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
108
|
+
# in version control.
|
|
109
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
110
|
+
.pdm.toml
|
|
111
|
+
|
|
112
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
113
|
+
__pypackages__/
|
|
114
|
+
|
|
115
|
+
# Celery stuff
|
|
116
|
+
celerybeat-schedule
|
|
117
|
+
celerybeat.pid
|
|
118
|
+
|
|
119
|
+
# SageMath parsed files
|
|
120
|
+
*.sage.py
|
|
121
|
+
|
|
122
|
+
# Environments
|
|
123
|
+
.env
|
|
124
|
+
.venv
|
|
125
|
+
env/
|
|
126
|
+
venv/
|
|
127
|
+
ENV/
|
|
128
|
+
env.bak/
|
|
129
|
+
venv.bak/
|
|
130
|
+
|
|
131
|
+
# Spyder project settings
|
|
132
|
+
.spyderproject
|
|
133
|
+
.spyproject
|
|
134
|
+
|
|
135
|
+
# Rope project settings
|
|
136
|
+
.ropeproject
|
|
137
|
+
|
|
138
|
+
# mkdocs documentation
|
|
139
|
+
/site
|
|
140
|
+
|
|
141
|
+
# mypy
|
|
142
|
+
.mypy_cache/
|
|
143
|
+
.dmypy.json
|
|
144
|
+
dmypy.json
|
|
145
|
+
|
|
146
|
+
# Pyre type checker
|
|
147
|
+
.pyre/
|
|
148
|
+
|
|
149
|
+
# pytype static type analyzer
|
|
150
|
+
.pytype/
|
|
151
|
+
|
|
152
|
+
# Cython debug symbols
|
|
153
|
+
cython_debug/
|
|
154
|
+
|
|
155
|
+
# PyCharm
|
|
156
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
157
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
158
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
159
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
160
|
+
#.idea/
|
|
161
|
+
|
|
162
|
+
# (local) backup files, either manual or e.g. by notepad++
|
|
163
|
+
*.bak
|
|
164
|
+
|
|
165
|
+
# Jupyter notebooks
|
|
166
|
+
*.ipynb
|
|
167
|
+
|
|
168
|
+
# testing files
|
|
169
|
+
/test
|
|
170
|
+
|
|
171
|
+
# hatchling versio info
|
|
172
|
+
_version.py
|
|
173
|
+
|
|
174
|
+
# include the example notebooks
|
|
175
|
+
!/docs/examples/*.ipynb
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright <2022> <Antoine Salden>
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: moose-spectra
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: A package to simulate diatomic optical emission spectra relying on line-by-line databases compiled for MassiveOES
|
|
5
|
+
Project-URL: Source, https://github.com/AntoineTUE/Moose
|
|
6
|
+
Project-URL: Documentation, https://antoinetue.github.io/Moose/
|
|
7
|
+
Author-email: Antoine Salden <t.p.w.salden@tue.nl>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Requires-Dist: numpy
|
|
15
|
+
Requires-Dist: pandas
|
|
16
|
+
Requires-Dist: scipy
|
|
17
|
+
Provides-Extra: all
|
|
18
|
+
Requires-Dist: moose-spectra[docs]; extra == 'all'
|
|
19
|
+
Requires-Dist: moose-spectra[examples]; extra == 'all'
|
|
20
|
+
Requires-Dist: moose-spectra[fit]; extra == 'all'
|
|
21
|
+
Provides-Extra: docs
|
|
22
|
+
Requires-Dist: mkdocs-gen-files; extra == 'docs'
|
|
23
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin; extra == 'docs'
|
|
24
|
+
Requires-Dist: mkdocs-jupyter; extra == 'docs'
|
|
25
|
+
Requires-Dist: mkdocs-literate-nav; extra == 'docs'
|
|
26
|
+
Requires-Dist: mkdocs-material; extra == 'docs'
|
|
27
|
+
Requires-Dist: mkdocs-section-index; extra == 'docs'
|
|
28
|
+
Requires-Dist: mkdocstrings; extra == 'docs'
|
|
29
|
+
Requires-Dist: mkdocstrings-python; extra == 'docs'
|
|
30
|
+
Provides-Extra: examples
|
|
31
|
+
Requires-Dist: ipywidgets; extra == 'examples'
|
|
32
|
+
Requires-Dist: matplotlib; extra == 'examples'
|
|
33
|
+
Requires-Dist: moose-spectra[fit]; extra == 'examples'
|
|
34
|
+
Requires-Dist: panel; extra == 'examples'
|
|
35
|
+
Requires-Dist: plotly; extra == 'examples'
|
|
36
|
+
Provides-Extra: fit
|
|
37
|
+
Requires-Dist: lmfit; extra == 'fit'
|
|
38
|
+
Description-Content-Type: text/markdown
|
|
39
|
+
|
|
40
|
+
# Moose: Molecular optical emission spectroscopy for Python
|
|
41
|
+
Welcome to `Moose`, a python package for simulating optical emission spectra for diatomic molecules.
|
|
42
|
+
|
|
43
|
+
`Moose` was born out of a need to fit rotational and vibrational temperatures for a large set of data.
|
|
44
|
+
|
|
45
|
+
For this it uses *line-by-line databases*, assuming a Boltzmann distribution for rotational and/or vibrational temperatures.
|
|
46
|
+
|
|
47
|
+
On top of that `Moose` is intended to be *minimal*: it provides you some basic tools to do just that, simulate some spectra.
|
|
48
|
+
|
|
49
|
+
It is up to you to read and sanitize experimental data, that you would like to fit based on these simulations, for instance.
|
|
50
|
+
|
|
51
|
+
Put differently, `Moose` is aimed at helping you: you can integrate and adapt it to your workflow, rather than the reverse.
|
|
52
|
+
|
|
53
|
+
To get a better grasp of how it works under the hood, see the online documentation for [code reference](https://antoinetue.github.io/Moose/reference/Moose/Simulation/) and [examples](https://antoinetue.github.io/Moose/examples/).
|
|
54
|
+
|
|
55
|
+
## Supported bands
|
|
56
|
+
Since `Moose` reuses the databases from [MassiveOES](https://bitbucket.org/OES_muni/massiveoes), it supports the same bands for fitting.
|
|
57
|
+
Details can be found in [data_sources.txt](./Moose/data/data_sources.txt), and the [page with information on citing](https://antoinetue.github.io/Moose/citing/).
|
|
58
|
+
|
|
59
|
+
| **Molecule** | **Band** |
|
|
60
|
+
| --- | --- |
|
|
61
|
+
| OH | A-X |
|
|
62
|
+
| N2+ | B-X |
|
|
63
|
+
| NH | A-X |
|
|
64
|
+
| NO | B-X |
|
|
65
|
+
| N2 | C-B |
|
|
66
|
+
| C2 | Swan |
|
|
67
|
+
| CN | B-X |
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
## Dependencies
|
|
71
|
+
The following packages are dependencies to be able to use `Moose`.
|
|
72
|
+
Version numbers are just indications of the package versions that were used to develop the code, your mileage may vary using either older or newer versions.
|
|
73
|
+
Furthermore, even though the project does not import by default `lmfit` and contains no functions that specifically rely on it, the code contains convenience functions that were specifically written for usage with the `lmfit.Model` and `lmfit.Parameters` classes.
|
|
74
|
+
If `lmfit` is installed in the active enironment, some additional convenience function will be imported.
|
|
75
|
+
|
|
76
|
+
These dependencies will be installed when you install `Moose` using `pip`.
|
|
77
|
+
|
|
78
|
+
| **Package** | **Version** |
|
|
79
|
+
|---|---|
|
|
80
|
+
| Numpy | >= 1.21.5 |
|
|
81
|
+
| Pandas | >= 1.4.0 |
|
|
82
|
+
| scipy | >= 1.7.3 |
|
|
83
|
+
| *lmfit* (optional) | >= *1.2.0* |
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## Installation
|
|
89
|
+
`Moose` can be installed by first downloading/cloning the package with `git`.
|
|
90
|
+
|
|
91
|
+
Once you have a copy, you can install it using `pip` from the project directory.
|
|
92
|
+
|
|
93
|
+
To simply install `Moose` itself, running the following suffices:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
pip install .
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Installing `Moose` with additional optional dependencies is described on the [documentation page on getting started](https://antoinetue.github.io/Moose/get_started/).
|
|
100
|
+
|
|
101
|
+
## Basic usage
|
|
102
|
+
A basic example demonstrating the usage is as follows.
|
|
103
|
+
It assumes that there is a `pandas` DataFrame (called `data`) containing several spectra normalized on the interval (0,1), with the first column being a shared wavelength axis.
|
|
104
|
+
It is important that the wavelength range over which we query the database (`wl_interval`), is larger than the experimental range plus the possible shift (`mu`) between simulation and experiment.
|
|
105
|
+
|
|
106
|
+
Extending the fitting over multiple cores/processes can be done by using for instance the excellent [Dask](https://dask.org/) library, via i.e. `client.map`.
|
|
107
|
+
More elaborate examples are available via the [online documentation](https://antoinetue.github.io/Moose/examples/).
|
|
108
|
+
|
|
109
|
+
```python
|
|
110
|
+
import Moose, lmfit
|
|
111
|
+
|
|
112
|
+
wl_interval = (320,345) # Wavelength interval over which to simulate the spectrum
|
|
113
|
+
db = Moose.query_DB('N2CB.db', wl_interval)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
# Create the lmfit.Model and lmfit.Parameters object needed for the fit.
|
|
117
|
+
model = lmfit.Model(Moose.model_for_fit, sim_db=db)
|
|
118
|
+
params = lmfit.create_params(**Moose.default_params)
|
|
119
|
+
# Or use some default suggested parameters for thermal fitting, i.e. T_rot==T_vib
|
|
120
|
+
# params = lmfit.create_params(**Moose.thermal_default_params)
|
|
121
|
+
|
|
122
|
+
# Perform the fit
|
|
123
|
+
fits = []
|
|
124
|
+
for col in data.columns[1:]:
|
|
125
|
+
fits.append(model.Fit(data[col].values, x=data['Wavelength'].values, params=params))
|
|
126
|
+
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
## Copyright notice from MassiveOES
|
|
131
|
+
|
|
132
|
+
The original software is massiveOES developed by the Masaryk University available from: https://bitbucket.org/OES_muni/massiveoes.
|
|
133
|
+
|
|
134
|
+
### Publications
|
|
135
|
+
|
|
136
|
+
VORÁČ, Jan; SYNEK, Petr; PROCHÁZKA, Vojtěch; HODER, Tomáš. State-by-state emission spectra fitting for non-equilibrium plasmas: OH spectra of surface barrier discharge at argon/water interface. Journal of Physics D: Applied Physics. 2017, 50(29), 294002. DOI: https://doi.org/10.1088/1361-6463/aa7570.
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
VORÁČ, Jan; SYNEK, Petr; POTOČŇÁKOVÁ, Lucia; HNILICA, Jaroslav; KUDRLE, Vít. Batch processing of overlapping molecular spectra as a tool for spatio-temporal diagnostics of power modulated microwave plasma jet. Plasma Sources Science and Technology 26.2 (2017), 025010. DOI: https://doi.org/10.1088/1361-6595/aa51f0.
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
#### Original sources for databases
|
|
143
|
+
| Database | Source | DOI |
|
|
144
|
+
| --- | --- | --- |
|
|
145
|
+
| OHAX |J. Luque and D.R. Crosley, J. Chem. Phys., 109, 439 (1998) | https://dx.doi.org/10.1088/0022-3727/39/17/015 |
|
|
146
|
+
| OHAX | L.R. Williams and D.R. Crosley, J. Chem. Phys, 104, 6507 (1996) | https://doi.org/10.1063/1.471371 |
|
|
147
|
+
| N$_2^+$BX | J. Luque and D.R. Crosley, “LIFBASE: Database and Spectral Simulation Program (Version 1.5) ”, SRI International Report MP 99-009 (1999). | |
|
|
148
|
+
| NHAX | Western C 2016 PGOPHER—a program for simulating rotational structure, Version 9.0.100, University of Bristol | |
|
|
149
|
+
| NHAX | Ram R and Bernath P 2010 J. Mol. Spectrosc. 260 115–9 | https://doi.org/10.1016/j.jms.2010.01.006 |
|
|
150
|
+
| NHAX | Lents J 1973 J. Quant. Spectrosc. Radiat. Transfer 13 297–310 | https://doi.org/10.1016/0022-4073(73)90061-7 |
|
|
151
|
+
| NHAX | Seong J, Park J K and Sun H 1994 Chem. Phys. Lett. 228 443–50 | https://doi.org/10.1016/j.jms.2010.01.006 |
|
|
152
|
+
| NOBX | J. Luque and D.R. Crosley, “LIFBASE: Database and Spectral Simulation Program (Version 1.5) ”, SRI International Report MP 99-009 (1999). | |
|
|
153
|
+
| N$_2$CB | Nassar H, Pellerin S, Musiol K, Martinie O, Pellerin N and Cormier J 2004. Phys. D: Appl. Phys. 37 1904 | https://doi.org/10.1088/0022-3727/37/14/005 |
|
|
154
|
+
| N$_2$CB | Laux C O and Kruger C H 1992 J. Quant. Spectrosc. Radiat. Transfer 48 9–24 | https://doi.org/10.1016/0022-4073(92)90003-M |
|
|
155
|
+
| N$_2$CB | Faure G and Shko’nik S 1998 J. Phys. D: Appl. Phys. 31 1212 | https://doi.org/10.1088/0022-3727/31/10/013 |
|
|
156
|
+
| C$_2$ Swan | James S.A. Brooke and Peter F. Bernath and Timothy W. Schmidt and George B. Bacskay; Journal of Quantitative Spectroscopy and Radiative Transfer; 2013 | https://doi.org/10.1016/j.jqsrt.2013.02.025 |
|
|
157
|
+
| C$_2$ Swan | Carbone, Emile and D'Isa, Federico and Hecimovic, Ante and Fantz, Ursel; PSST; 2020; | https://doi.org/10.1088/1361-6595/ab74b4 |
|
|
158
|
+
|
|
159
|
+
# License information
|
|
160
|
+
This project is licensed under the MIT license.
|
|
161
|
+
See [LICENSE](./LICENSE).
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
# Moose: Molecular optical emission spectroscopy for Python
|
|
2
|
+
Welcome to `Moose`, a python package for simulating optical emission spectra for diatomic molecules.
|
|
3
|
+
|
|
4
|
+
`Moose` was born out of a need to fit rotational and vibrational temperatures for a large set of data.
|
|
5
|
+
|
|
6
|
+
For this it uses *line-by-line databases*, assuming a Boltzmann distribution for rotational and/or vibrational temperatures.
|
|
7
|
+
|
|
8
|
+
On top of that `Moose` is intended to be *minimal*: it provides you some basic tools to do just that, simulate some spectra.
|
|
9
|
+
|
|
10
|
+
It is up to you to read and sanitize experimental data, that you would like to fit based on these simulations, for instance.
|
|
11
|
+
|
|
12
|
+
Put differently, `Moose` is aimed at helping you: you can integrate and adapt it to your workflow, rather than the reverse.
|
|
13
|
+
|
|
14
|
+
To get a better grasp of how it works under the hood, see the online documentation for [code reference](https://antoinetue.github.io/Moose/reference/Moose/Simulation/) and [examples](https://antoinetue.github.io/Moose/examples/).
|
|
15
|
+
|
|
16
|
+
## Supported bands
|
|
17
|
+
Since `Moose` reuses the databases from [MassiveOES](https://bitbucket.org/OES_muni/massiveoes), it supports the same bands for fitting.
|
|
18
|
+
Details can be found in [data_sources.txt](./Moose/data/data_sources.txt), and the [page with information on citing](https://antoinetue.github.io/Moose/citing/).
|
|
19
|
+
|
|
20
|
+
| **Molecule** | **Band** |
|
|
21
|
+
| --- | --- |
|
|
22
|
+
| OH | A-X |
|
|
23
|
+
| N2+ | B-X |
|
|
24
|
+
| NH | A-X |
|
|
25
|
+
| NO | B-X |
|
|
26
|
+
| N2 | C-B |
|
|
27
|
+
| C2 | Swan |
|
|
28
|
+
| CN | B-X |
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## Dependencies
|
|
32
|
+
The following packages are dependencies to be able to use `Moose`.
|
|
33
|
+
Version numbers are just indications of the package versions that were used to develop the code, your mileage may vary using either older or newer versions.
|
|
34
|
+
Furthermore, even though the project does not import by default `lmfit` and contains no functions that specifically rely on it, the code contains convenience functions that were specifically written for usage with the `lmfit.Model` and `lmfit.Parameters` classes.
|
|
35
|
+
If `lmfit` is installed in the active enironment, some additional convenience function will be imported.
|
|
36
|
+
|
|
37
|
+
These dependencies will be installed when you install `Moose` using `pip`.
|
|
38
|
+
|
|
39
|
+
| **Package** | **Version** |
|
|
40
|
+
|---|---|
|
|
41
|
+
| Numpy | >= 1.21.5 |
|
|
42
|
+
| Pandas | >= 1.4.0 |
|
|
43
|
+
| scipy | >= 1.7.3 |
|
|
44
|
+
| *lmfit* (optional) | >= *1.2.0* |
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
## Installation
|
|
50
|
+
`Moose` can be installed by first downloading/cloning the package with `git`.
|
|
51
|
+
|
|
52
|
+
Once you have a copy, you can install it using `pip` from the project directory.
|
|
53
|
+
|
|
54
|
+
To simply install `Moose` itself, running the following suffices:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
pip install .
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Installing `Moose` with additional optional dependencies is described on the [documentation page on getting started](https://antoinetue.github.io/Moose/get_started/).
|
|
61
|
+
|
|
62
|
+
## Basic usage
|
|
63
|
+
A basic example demonstrating the usage is as follows.
|
|
64
|
+
It assumes that there is a `pandas` DataFrame (called `data`) containing several spectra normalized on the interval (0,1), with the first column being a shared wavelength axis.
|
|
65
|
+
It is important that the wavelength range over which we query the database (`wl_interval`), is larger than the experimental range plus the possible shift (`mu`) between simulation and experiment.
|
|
66
|
+
|
|
67
|
+
Extending the fitting over multiple cores/processes can be done by using for instance the excellent [Dask](https://dask.org/) library, via i.e. `client.map`.
|
|
68
|
+
More elaborate examples are available via the [online documentation](https://antoinetue.github.io/Moose/examples/).
|
|
69
|
+
|
|
70
|
+
```python
|
|
71
|
+
import Moose, lmfit
|
|
72
|
+
|
|
73
|
+
wl_interval = (320,345) # Wavelength interval over which to simulate the spectrum
|
|
74
|
+
db = Moose.query_DB('N2CB.db', wl_interval)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
# Create the lmfit.Model and lmfit.Parameters object needed for the fit.
|
|
78
|
+
model = lmfit.Model(Moose.model_for_fit, sim_db=db)
|
|
79
|
+
params = lmfit.create_params(**Moose.default_params)
|
|
80
|
+
# Or use some default suggested parameters for thermal fitting, i.e. T_rot==T_vib
|
|
81
|
+
# params = lmfit.create_params(**Moose.thermal_default_params)
|
|
82
|
+
|
|
83
|
+
# Perform the fit
|
|
84
|
+
fits = []
|
|
85
|
+
for col in data.columns[1:]:
|
|
86
|
+
fits.append(model.Fit(data[col].values, x=data['Wavelength'].values, params=params))
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
## Copyright notice from MassiveOES
|
|
92
|
+
|
|
93
|
+
The original software is massiveOES developed by the Masaryk University available from: https://bitbucket.org/OES_muni/massiveoes.
|
|
94
|
+
|
|
95
|
+
### Publications
|
|
96
|
+
|
|
97
|
+
VORÁČ, Jan; SYNEK, Petr; PROCHÁZKA, Vojtěch; HODER, Tomáš. State-by-state emission spectra fitting for non-equilibrium plasmas: OH spectra of surface barrier discharge at argon/water interface. Journal of Physics D: Applied Physics. 2017, 50(29), 294002. DOI: https://doi.org/10.1088/1361-6463/aa7570.
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
VORÁČ, Jan; SYNEK, Petr; POTOČŇÁKOVÁ, Lucia; HNILICA, Jaroslav; KUDRLE, Vít. Batch processing of overlapping molecular spectra as a tool for spatio-temporal diagnostics of power modulated microwave plasma jet. Plasma Sources Science and Technology 26.2 (2017), 025010. DOI: https://doi.org/10.1088/1361-6595/aa51f0.
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
#### Original sources for databases
|
|
104
|
+
| Database | Source | DOI |
|
|
105
|
+
| --- | --- | --- |
|
|
106
|
+
| OHAX |J. Luque and D.R. Crosley, J. Chem. Phys., 109, 439 (1998) | https://dx.doi.org/10.1088/0022-3727/39/17/015 |
|
|
107
|
+
| OHAX | L.R. Williams and D.R. Crosley, J. Chem. Phys, 104, 6507 (1996) | https://doi.org/10.1063/1.471371 |
|
|
108
|
+
| N$_2^+$BX | J. Luque and D.R. Crosley, “LIFBASE: Database and Spectral Simulation Program (Version 1.5) ”, SRI International Report MP 99-009 (1999). | |
|
|
109
|
+
| NHAX | Western C 2016 PGOPHER—a program for simulating rotational structure, Version 9.0.100, University of Bristol | |
|
|
110
|
+
| NHAX | Ram R and Bernath P 2010 J. Mol. Spectrosc. 260 115–9 | https://doi.org/10.1016/j.jms.2010.01.006 |
|
|
111
|
+
| NHAX | Lents J 1973 J. Quant. Spectrosc. Radiat. Transfer 13 297–310 | https://doi.org/10.1016/0022-4073(73)90061-7 |
|
|
112
|
+
| NHAX | Seong J, Park J K and Sun H 1994 Chem. Phys. Lett. 228 443–50 | https://doi.org/10.1016/j.jms.2010.01.006 |
|
|
113
|
+
| NOBX | J. Luque and D.R. Crosley, “LIFBASE: Database and Spectral Simulation Program (Version 1.5) ”, SRI International Report MP 99-009 (1999). | |
|
|
114
|
+
| N$_2$CB | Nassar H, Pellerin S, Musiol K, Martinie O, Pellerin N and Cormier J 2004. Phys. D: Appl. Phys. 37 1904 | https://doi.org/10.1088/0022-3727/37/14/005 |
|
|
115
|
+
| N$_2$CB | Laux C O and Kruger C H 1992 J. Quant. Spectrosc. Radiat. Transfer 48 9–24 | https://doi.org/10.1016/0022-4073(92)90003-M |
|
|
116
|
+
| N$_2$CB | Faure G and Shko’nik S 1998 J. Phys. D: Appl. Phys. 31 1212 | https://doi.org/10.1088/0022-3727/31/10/013 |
|
|
117
|
+
| C$_2$ Swan | James S.A. Brooke and Peter F. Bernath and Timothy W. Schmidt and George B. Bacskay; Journal of Quantitative Spectroscopy and Radiative Transfer; 2013 | https://doi.org/10.1016/j.jqsrt.2013.02.025 |
|
|
118
|
+
| C$_2$ Swan | Carbone, Emile and D'Isa, Federico and Hecimovic, Ante and Fantz, Ursel; PSST; 2020; | https://doi.org/10.1088/1361-6595/ab74b4 |
|
|
119
|
+
|
|
120
|
+
# License information
|
|
121
|
+
This project is licensed under the MIT license.
|
|
122
|
+
See [LICENSE](./LICENSE).
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# file generated by setuptools_scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
TYPE_CHECKING = False
|
|
4
|
+
if TYPE_CHECKING:
|
|
5
|
+
from typing import Tuple, Union
|
|
6
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
7
|
+
else:
|
|
8
|
+
VERSION_TUPLE = object
|
|
9
|
+
|
|
10
|
+
version: str
|
|
11
|
+
__version__: str
|
|
12
|
+
__version_tuple__: VERSION_TUPLE
|
|
13
|
+
version_tuple: VERSION_TUPLE
|
|
14
|
+
|
|
15
|
+
__version__ = version = '0.2.0'
|
|
16
|
+
__version_tuple__ = version_tuple = (0, 2, 0)
|
|
File without changes
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 403.47 143.51">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1, .cls-2, .cls-3 {
|
|
6
|
+
isolation: isolate;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.cls-4, .cls-5, .cls-6, .cls-3 {
|
|
10
|
+
stroke-width: 0px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.cls-4, .cls-7 {
|
|
14
|
+
fill: none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.cls-2 {
|
|
18
|
+
opacity: .3;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.cls-5 {
|
|
22
|
+
fill: #888;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.cls-6 {
|
|
26
|
+
fill: #d3d3d3;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.cls-8 {
|
|
30
|
+
clip-path: url(#clippath);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.cls-7 {
|
|
34
|
+
stroke: #a61e24;
|
|
35
|
+
stroke-miterlimit: 10;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.cls-3 {
|
|
39
|
+
fill: url(#linear-gradient);
|
|
40
|
+
opacity: .9;
|
|
41
|
+
}
|
|
42
|
+
</style>
|
|
43
|
+
<linearGradient id="linear-gradient" x1=".5" y1="71.78" x2="402.83" y2="71.78" gradientTransform="translate(0 143.97) scale(1 -1)" gradientUnits="userSpaceOnUse">
|
|
44
|
+
<stop offset="0" stop-color="#21409a"/>
|
|
45
|
+
<stop offset=".42" stop-color="#156b36"/>
|
|
46
|
+
<stop offset="1" stop-color="#ed1c24"/>
|
|
47
|
+
</linearGradient>
|
|
48
|
+
<clipPath id="clippath">
|
|
49
|
+
<polygon class="cls-4" points="398.42 125.64 396.83 125.11 396.03 124.94 394.04 124.93 392.45 124.81 390.06 124.81 388.07 124.64 386.87 124.6 382.09 124.13 378.91 123.3 377.71 122.87 376.92 122.43 375.72 121.55 374.53 120.4 373.73 119.35 372.93 117.89 372.14 115.76 371.34 112.48 370.54 107.04 369.75 97.51 368.95 81.38 368.15 57.7 366.96 18.86 366.56 9.63 366.16 3.76 365.76 1.36 365.36 1.98 364.97 4.79 364.57 8.85 363.37 21.71 362.58 27.98 361.78 32.49 360.98 35.96 359.79 40.24 357 48.91 355.01 54.52 352.22 61.86 350.23 66.62 347.84 71.89 345.45 76.68 343.46 80.32 341.46 83.53 339.87 85.81 338.68 87.29 337.48 88.49 336.68 89.11 335.89 89.5 335.49 89.58 335.09 89.54 334.69 89.35 334.29 88.95 333.9 88.28 333.5 87.22 333.1 85.65 332.7 83.41 331.9 76.29 330.71 59.15 329.91 47.47 329.51 43.27 329.12 40.71 328.72 39.86 328.32 40.5 327.92 42.23 326.73 49.78 325.93 54.21 325.13 57.58 324.34 60.24 322.74 64.58 320.75 69.36 318.36 74.61 315.97 79.42 313.18 84.43 310.79 88.32 308.4 91.83 306.41 94.47 304.82 96.28 303.62 97.47 302.43 98.39 301.63 98.81 301.23 98.91 300.84 98.89 300.44 98.73 300.04 98.4 299.64 97.82 299.24 96.94 298.45 94.04 297.25 87.45 296.45 83.6 296.06 82.47 295.66 82.01 295.26 82.2 294.86 82.9 293.27 87.55 292.47 89.52 291.67 91.11 290.48 93.01 288.49 95.72 284.11 100.76 280.52 104.39 278.13 106.49 276.14 107.9 274.94 108.62 274.15 108.95 273.35 109.16 272.55 109.22 272.16 109.14 271.76 108.94 271.36 108.59 270.56 107.31 269.37 104.28 268.57 102.4 268.17 101.84 267.78 101.61 267.38 101.73 266.98 102.12 265.39 104.69 264.59 105.81 263.79 106.71 262.6 107.73 257.82 110.87 254.63 112.8 253.83 113.17 253.04 113.35 252.24 113.32 251.84 113.18 251.44 112.92 250.65 112.03 249.85 110.75 249.05 109.56 248.66 109.18 248.26 109.01 247.86 109.05 245.07 111.79 243.48 113.25 241.88 114.43 240.69 115.09 239.49 115.55 237.9 115.97 233.52 117.49 231.53 118.54 230.33 119.12 229.54 119.37 226.75 119.59 224.76 120.08 223.56 120.2 222.76 120.29 220.77 121.07 219.98 121.34 219.18 121.5 218.38 121.53 217.19 121.38 216.39 121.32 215.59 121.45 214.4 121.75 213.6 121.76 212.41 121.67 210.02 122.35 209.22 122.43 207.23 121.86 206.43 121.77 204.84 122.23 204.04 122.31 202.85 122.09 202.05 122.08 200.86 122.46 200.06 122.62 199.66 122.59 199.26 122.47 198.07 121.75 197.27 121.37 196.87 121.32 196.48 121.38 195.68 121.7 194.88 121.94 194.48 121.94 193.69 121.75 192.89 121.6 192.49 121.64 191.7 121.93 190.9 122.2 190.5 122.2 190.1 122.07 188.51 120.78 188.11 120.56 187.71 120.49 187.31 120.56 186.92 120.7 186.12 120.95 185.72 120.93 184.92 120.57 184.13 120.14 183.73 120.07 182.14 120.78 181.74 120.86 181.34 120.79 180.54 120.27 179.75 119.73 179.35 119.64 178.95 119.67 178.55 119.81 177.75 120.04 177.36 119.98 176.96 119.76 176.16 118.94 175.36 118.12 174.97 117.9 174.57 117.85 173.37 118.13 171.78 117.87 171.38 117.92 169.79 119.19 169.39 119.32 168.99 119.18 168.59 118.76 167.8 117.3 167 115.81 166.6 115.31 166.2 115 165.01 114.59 164.21 114.38 163.81 114.44 163.41 114.7 162.62 115.76 161.82 116.84 161.42 117.08 161.02 117.02 160.63 116.66 160.23 116.06 159.43 114.42 158.24 111.96 157.44 110.79 157.04 110.47 156.64 110.43 156.25 110.68 155.45 111.84 154.65 113 154.25 113.28 153.86 113.27 153.46 112.97 152.66 111.67 151.86 109.72 151.07 107.83 150.67 107.2 150.27 106.9 149.87 106.97 149.47 107.35 148.68 108.61 147.88 109.75 147.48 110.09 147.08 110.22 146.69 110.08 146.29 109.59 145.89 108.68 145.49 107.29 144.3 101.58 143.9 100.11 143.5 99.36 143.1 99.46 142.7 100.38 141.91 103.78 141.11 107.15 140.71 108.09 140.31 108.27 139.91 107.58 137.92 95.38 137.52 93.66 137.13 93.05 136.73 93.58 135.53 98.79 135.13 100.22 134.74 100.89 134.34 100.71 133.94 99.72 133.14 96.18 132.35 92.59 131.95 91.47 131.55 90.95 131.15 90.97 130.35 91.73 129.96 91.95 129.56 91.8 127.96 88.52 127.57 87.99 126.37 87.75 125.97 87.34 125.57 86.42 124.38 81.74 123.98 80.52 123.58 79.89 123.18 79.85 122.39 80.68 121.99 80.93 121.59 80.74 121.19 80.02 120.79 78.81 119.6 73.78 118.8 70.95 118.4 70.08 118.01 69.56 117.61 69.26 116.81 68.59 116.01 67.3 115.22 65.61 114.42 63.02 113.23 56.07 112.83 54.16 112.43 53.44 112.03 54.33 111.63 56.86 110.84 65 110.04 72.66 109.64 75.18 109.24 76.82 108.84 77.81 108.45 78.41 108.05 78.79 107.65 79.05 106.06 79.46 105.26 79.87 104.46 80.63 103.67 81.36 103.27 81.44 102.87 81.19 102.47 80.58 101.68 78.8 101.28 78.11 100.88 77.84 100.48 78.1 100.08 78.84 98.49 83.46 97.69 86.14 96.9 89.78 96.1 93.28 95.7 94.28 95.3 94.51 94.9 93.91 94.51 92.56 91.72 75.83 90.92 71.8 90.52 70.43 90.12 69.63 89.73 69.42 89.33 69.68 88.53 70.8 88.13 71.1 87.73 70.9 87.34 70.02 86.94 68.43 86.14 63.8 85.34 59.24 84.95 57.98 84.55 57.92 84.15 59.29 83.75 62.15 82.56 76.21 81.76 84.39 81.36 86.73 80.96 87.7 80.56 87.42 79.37 82.75 78.97 81.64 78.57 81.51 78.17 82.51 77.38 86.92 76.58 91.39 76.18 92.57 75.78 92.8 75.39 92.07 74.99 90.48 73.39 79.9 73 77.87 72.6 76.78 72.2 76.71 70.61 81.68 70.21 82.61 69.81 83.09 69.41 83.09 69.01 82.58 68.61 81.45 68.22 79.62 66.62 67.91 66.22 65.8 65.83 64.88 65.43 65.27 64.23 70.92 63.83 72.19 63.44 72.25 63.04 70.93 61.44 59.2 61.05 57.15 60.65 55.94 59.45 54.63 58.66 52.89 57.86 50.93 56.66 49.66 56.27 48.76 54.27 35.67 53.88 33.66 53.48 32.52 53.08 32.15 52.28 32.23 51.88 31.7 51.49 30.23 51.09 27.65 49.5 10.81 48.7 3.58 48.3 1.67 47.9 1.59 47.5 3.8 47.11 8.41 45.91 31.16 45.11 44.32 44.72 48.5 44.32 51.27 43.92 53.06 41.53 59.35 40.73 61.06 40.33 61.55 39.94 61.76 39.54 61.73 38.74 61.42 38.34 61.41 37.94 61.71 37.55 62.46 37.15 63.74 36.35 67.91 33.96 86.55 32.77 95.31 31.97 99.57 31.57 100.96 31.17 101.81 30.77 102.12 30.38 101.94 29.98 101.37 29.18 99.26 28.38 95.95 27.59 91.42 26.39 83.12 24 62.36 23.21 56.33 22.81 54.42 22.41 53.54 22.01 53.7 21.61 54.75 21.21 56.34 20.42 59.44 20.02 60.29 19.62 60.58 19.22 60.53 18.82 60.58 18.43 61.25 18.03 63.07 17.63 66.36 17.23 71.17 16.04 90.83 15.24 102.83 14.44 111.07 14.04 113.84 13.65 115.94 13.25 117.51 12.85 118.69 12.45 119.58 12.05 120.26 11.26 121.22 10.06 122.27 8.87 123.17 8.07 123.62 7.27 123.89 5.68 124.09 4.88 124.26 3.29 124.86 2.09 125.24 .5 125.54 .5 143.01 402.83 143.01 398.42 125.64"/>
|
|
50
|
+
</clipPath>
|
|
51
|
+
</defs>
|
|
52
|
+
<g class="cls-2">
|
|
53
|
+
<path class="cls-5" d="m96.47,135.34c-3.67,0-10.06,0-13.54.28v-2.91h2.26c7.24,0,7.43-1.03,7.43-4.42v-53.95h-.09l-23.12,59.5c-.38,1.03-.66,1.79-1.69,1.79-.94,0-1.41-.85-1.88-2.07l-22.65-58.46h-.09v50.66c0,2.54,0,6.96,9.68,6.96v2.91l-11-.28-11,.28v-2.91c9.68,0,9.68-4.42,9.68-6.96v-47c0-3.38-.19-4.42-7.43-4.42h-2.26v-2.91h15.88c2.16,0,2.44,0,3.29,2.07l20.4,52.64,20.58-52.92c.66-1.69.66-1.79,3.1-1.79h15.88v2.91h-2.26c-7.24,0-7.43,1.03-7.43,4.42v49.53c0,3.38.19,4.42,7.43,4.42h2.26v2.91c-3.48-.28-9.78-.28-13.44-.28Z"/>
|
|
54
|
+
<path class="cls-5" d="m149.96,137.69c-16.73,0-31.21-14.66-31.21-33.93s14.38-34.4,31.21-34.4,31.3,15.23,31.3,34.4-14.19,33.93-31.3,33.93Zm0-65.98c-7.8,0-21.52,6.39-21.52,30.74s12.6,32.8,21.62,32.8,21.52-7.9,21.52-32.8-13.44-30.74-21.62-30.74Z"/>
|
|
55
|
+
<path class="cls-5" d="m223.09,137.69c-16.73,0-31.21-14.66-31.21-33.93s14.38-34.4,31.21-34.4,31.3,15.23,31.3,34.4-14.19,33.93-31.3,33.93Zm0-65.98c-7.8,0-21.53,6.39-21.53,30.74s12.6,32.8,21.62,32.8,21.52-7.9,21.52-32.8-13.44-30.74-21.62-30.74Z"/>
|
|
56
|
+
<path class="cls-5" d="m288.14,137.69c-8.37,0-14.38-3.38-17.29-6.58-3.1,4.98-3.38,5.36-3.38,5.36-.66,1.03-.75,1.22-1.41,1.22-1.03,0-1.03-.66-1.03-2.26v-18.8c0-1.69,0-2.35,1.22-2.35.28,0,1.03,0,1.13.94.09,3.38.38,9.4,5.83,14.47,4.98,4.61,12.12,5.08,14.85,5.08,7.9,0,12.6-6.77,12.6-13.44,0-3.1-.94-6.2-2.91-8.65-2.63-3.48-5.45-4.14-7.99-4.79-6.58-1.6-11.37-2.73-12.41-3.1-7.33-2.54-12.31-9.4-12.31-17.2,0-9.96,7.9-18.23,18.33-18.23,8.37,0,12.22,3.85,15.04,6.58l3.29-5.36c.66-1.13.75-1.22,1.41-1.22,1.03,0,1.03.66,1.03,2.26v18.89c0,1.79,0,2.26-1.22,2.26-1.03,0-1.03-.56-1.13-1.13-.56-4.23-2.63-19.65-18.33-19.65-7.33,0-12.41,5.73-12.41,12.31,0,5.45,3.67,10.53,9.49,11.94l12.03,2.91c7.9,1.88,14.1,9.59,14.1,18.99,0,10.34-7.52,19.55-18.52,19.55Z"/>
|
|
57
|
+
<path class="cls-5" d="m369.36,135.62h-54.24v-2.91h2.26c7.24,0,7.43-1.03,7.43-4.42v-49.25c0-3.38-.19-4.42-7.43-4.42h-2.26v-2.91h52.92l2.63,21.15h-2.35c-1.5-13.06-4.04-18.23-18.42-18.23h-12.12c-4.42,0-4.61.66-4.61,3.76v22.56h8.46c9.12,0,10.15-2.91,10.15-11h2.35v24.91h-2.35c0-7.99-1.03-11-10.15-11h-8.46v25.1c0,3.1.19,3.76,4.61,3.76h12.5c16.17,0,18.33-6.86,20.68-21.34h2.35l-3.95,24.25Z"/>
|
|
58
|
+
</g>
|
|
59
|
+
<polygon class="cls-3" points="398.42 125.64 396.83 125.11 396.03 124.94 394.04 124.93 392.45 124.81 390.06 124.81 388.07 124.64 386.87 124.6 382.09 124.13 378.91 123.3 377.71 122.87 376.92 122.43 375.72 121.55 374.53 120.4 373.73 119.35 372.93 117.89 372.14 115.76 371.34 112.48 370.54 107.04 369.75 97.51 368.95 81.38 368.15 57.7 366.96 18.86 366.56 9.63 366.16 3.76 365.76 1.36 365.36 1.98 364.97 4.79 364.57 8.85 363.37 21.71 362.58 27.98 361.78 32.49 360.98 35.96 359.79 40.24 357 48.91 355.01 54.52 352.22 61.86 350.23 66.62 347.84 71.89 345.45 76.68 343.46 80.32 341.46 83.53 339.87 85.81 338.68 87.29 337.48 88.49 336.68 89.11 335.89 89.5 335.49 89.58 335.09 89.54 334.69 89.35 334.29 88.95 333.9 88.28 333.5 87.22 333.1 85.65 332.7 83.41 331.9 76.29 330.71 59.15 329.91 47.47 329.51 43.27 329.12 40.71 328.72 39.86 328.32 40.5 327.92 42.23 326.73 49.78 325.93 54.21 325.13 57.58 324.34 60.24 322.74 64.58 320.75 69.36 318.36 74.61 315.97 79.42 313.18 84.43 310.79 88.32 308.4 91.83 306.41 94.47 304.82 96.28 303.62 97.47 302.43 98.39 301.63 98.81 301.23 98.91 300.84 98.89 300.44 98.73 300.04 98.4 299.64 97.82 299.24 96.94 298.45 94.04 297.25 87.45 296.45 83.6 296.06 82.47 295.66 82.01 295.26 82.2 294.86 82.9 293.27 87.55 292.47 89.52 291.67 91.11 290.48 93.01 288.49 95.72 284.11 100.76 280.52 104.39 278.13 106.49 276.14 107.9 274.94 108.62 274.15 108.95 273.35 109.16 272.55 109.22 272.16 109.14 271.76 108.94 271.36 108.59 270.56 107.31 269.37 104.28 268.57 102.4 268.17 101.84 267.78 101.61 267.38 101.73 266.98 102.12 265.39 104.69 264.59 105.81 263.79 106.71 262.6 107.73 257.82 110.87 254.63 112.8 253.83 113.17 253.04 113.35 252.24 113.32 251.84 113.18 251.44 112.92 250.65 112.03 249.85 110.75 249.05 109.56 248.66 109.18 248.26 109.01 247.86 109.05 245.07 111.79 243.48 113.25 241.88 114.43 240.69 115.09 239.49 115.55 237.9 115.97 233.52 117.49 231.53 118.54 230.33 119.12 229.54 119.37 226.75 119.59 224.76 120.08 223.56 120.2 222.76 120.29 220.77 121.07 219.98 121.34 219.18 121.5 218.38 121.53 217.19 121.38 216.39 121.32 215.59 121.45 214.4 121.75 213.6 121.76 212.41 121.67 210.02 122.35 209.22 122.43 207.23 121.86 206.43 121.77 204.84 122.23 204.04 122.31 202.85 122.09 202.05 122.08 200.86 122.46 200.06 122.62 199.66 122.59 199.26 122.47 198.07 121.75 197.27 121.37 196.87 121.32 196.48 121.38 195.68 121.7 194.88 121.94 194.48 121.94 193.69 121.75 192.89 121.6 192.49 121.64 191.7 121.93 190.9 122.2 190.5 122.2 190.1 122.07 188.51 120.78 188.11 120.56 187.71 120.49 187.31 120.56 186.92 120.7 186.12 120.95 185.72 120.93 184.92 120.57 184.13 120.14 183.73 120.07 182.14 120.78 181.74 120.86 181.34 120.79 180.54 120.27 179.75 119.73 179.35 119.64 178.95 119.67 178.55 119.81 177.75 120.04 177.36 119.98 176.96 119.76 176.16 118.94 175.36 118.12 174.97 117.9 174.57 117.85 173.37 118.13 171.78 117.87 171.38 117.92 169.79 119.19 169.39 119.32 168.99 119.18 168.59 118.76 167.8 117.3 167 115.81 166.6 115.31 166.2 115 165.01 114.59 164.21 114.38 163.81 114.44 163.41 114.7 162.62 115.76 161.82 116.84 161.42 117.08 161.02 117.02 160.63 116.66 160.23 116.06 159.43 114.42 158.24 111.96 157.44 110.79 157.04 110.47 156.64 110.43 156.25 110.68 155.45 111.84 154.65 113 154.25 113.28 153.86 113.27 153.46 112.97 152.66 111.67 151.86 109.72 151.07 107.83 150.67 107.2 150.27 106.9 149.87 106.97 149.47 107.35 148.68 108.61 147.88 109.75 147.48 110.09 147.08 110.22 146.69 110.08 146.29 109.59 145.89 108.68 145.49 107.29 144.3 101.58 143.9 100.11 143.5 99.36 143.1 99.46 142.7 100.38 141.91 103.78 141.11 107.15 140.71 108.09 140.31 108.27 139.91 107.58 137.92 95.38 137.52 93.66 137.13 93.05 136.73 93.58 135.53 98.79 135.13 100.22 134.74 100.89 134.34 100.71 133.94 99.72 133.14 96.18 132.35 92.59 131.95 91.47 131.55 90.95 131.15 90.97 130.35 91.73 129.96 91.95 129.56 91.8 127.96 88.52 127.57 87.99 126.37 87.75 125.97 87.34 125.57 86.42 124.38 81.74 123.98 80.52 123.58 79.89 123.18 79.85 122.39 80.68 121.99 80.93 121.59 80.74 121.19 80.02 120.79 78.81 119.6 73.78 118.8 70.95 118.4 70.08 118.01 69.56 117.61 69.26 116.81 68.59 116.01 67.3 115.22 65.61 114.42 63.02 113.23 56.07 112.83 54.16 112.43 53.44 112.03 54.33 111.63 56.86 110.84 65 110.04 72.66 109.64 75.18 109.24 76.82 108.84 77.81 108.45 78.41 108.05 78.79 107.65 79.05 106.06 79.46 105.26 79.87 104.46 80.63 103.67 81.36 103.27 81.44 102.87 81.19 102.47 80.58 101.68 78.8 101.28 78.11 100.88 77.84 100.48 78.1 100.08 78.84 98.49 83.46 97.69 86.14 96.9 89.78 96.1 93.28 95.7 94.28 95.3 94.51 94.9 93.91 94.51 92.56 91.72 75.83 90.92 71.8 90.52 70.43 90.12 69.63 89.73 69.42 89.33 69.68 88.53 70.8 88.13 71.1 87.73 70.9 87.34 70.02 86.94 68.43 86.14 63.8 85.34 59.24 84.95 57.98 84.55 57.92 84.15 59.29 83.75 62.15 82.56 76.21 81.76 84.39 81.36 86.73 80.96 87.7 80.56 87.42 79.37 82.75 78.97 81.64 78.57 81.51 78.17 82.51 77.38 86.92 76.58 91.39 76.18 92.57 75.78 92.8 75.39 92.07 74.99 90.48 73.39 79.9 73 77.87 72.6 76.78 72.2 76.71 70.61 81.68 70.21 82.61 69.81 83.09 69.41 83.09 69.01 82.58 68.61 81.45 68.22 79.62 66.62 67.91 66.22 65.8 65.83 64.88 65.43 65.27 64.23 70.92 63.83 72.19 63.44 72.25 63.04 70.93 61.44 59.2 61.05 57.15 60.65 55.94 59.45 54.63 58.66 52.89 57.86 50.93 56.66 49.66 56.27 48.76 54.27 35.67 53.88 33.66 53.48 32.52 53.08 32.15 52.28 32.23 51.88 31.7 51.49 30.23 51.09 27.65 49.5 10.81 48.7 3.58 48.3 1.67 47.9 1.59 47.5 3.8 47.11 8.41 45.91 31.16 45.11 44.32 44.72 48.5 44.32 51.27 43.92 53.06 41.53 59.35 40.73 61.06 40.33 61.55 39.94 61.76 39.54 61.73 38.74 61.42 38.34 61.41 37.94 61.71 37.55 62.46 37.15 63.74 36.35 67.91 33.96 86.55 32.77 95.31 31.97 99.57 31.57 100.96 31.17 101.81 30.77 102.12 30.38 101.94 29.98 101.37 29.18 99.26 28.38 95.95 27.59 91.42 26.39 83.12 24 62.36 23.21 56.33 22.81 54.42 22.41 53.54 22.01 53.7 21.61 54.75 21.21 56.34 20.42 59.44 20.02 60.29 19.62 60.58 19.22 60.53 18.82 60.58 18.43 61.25 18.03 63.07 17.63 66.36 17.23 71.17 16.04 90.83 15.24 102.83 14.44 111.07 14.04 113.84 13.65 115.94 13.25 117.51 12.85 118.69 12.45 119.58 12.05 120.26 11.26 121.22 10.06 122.27 8.87 123.17 8.07 123.62 7.27 123.89 5.68 124.09 4.88 124.26 3.29 124.86 2.09 125.24 .5 125.54 .5 143.01 402.83 143.01 398.42 125.64"/>
|
|
60
|
+
<g>
|
|
61
|
+
<g class="cls-8">
|
|
62
|
+
<g class="cls-1">
|
|
63
|
+
<path class="cls-6" d="m96.47,135.34c-3.67,0-10.06,0-13.54.28v-2.91h2.26c7.24,0,7.43-1.03,7.43-4.42v-53.95h-.09l-23.12,59.5c-.38,1.03-.66,1.79-1.69,1.79-.94,0-1.41-.85-1.88-2.07l-22.65-58.46h-.09v50.66c0,2.54,0,6.96,9.68,6.96v2.91l-11-.28-11,.28v-2.91c9.68,0,9.68-4.42,9.68-6.96v-47c0-3.38-.19-4.42-7.43-4.42h-2.26v-2.91h15.88c2.16,0,2.44,0,3.29,2.07l20.4,52.64,20.58-52.92c.66-1.69.66-1.79,3.1-1.79h15.88v2.91h-2.26c-7.24,0-7.43,1.03-7.43,4.42v49.53c0,3.38.19,4.42,7.43,4.42h2.26v2.91c-3.48-.28-9.78-.28-13.44-.28Z"/>
|
|
64
|
+
<path class="cls-6" d="m149.96,137.69c-16.73,0-31.21-14.66-31.21-33.93s14.38-34.4,31.21-34.4,31.3,15.23,31.3,34.4-14.19,33.93-31.3,33.93Zm0-65.98c-7.8,0-21.52,6.39-21.52,30.74s12.6,32.8,21.62,32.8,21.52-7.9,21.52-32.8-13.44-30.74-21.62-30.74Z"/>
|
|
65
|
+
<path class="cls-6" d="m223.09,137.69c-16.73,0-31.21-14.66-31.21-33.93s14.38-34.4,31.21-34.4,31.3,15.23,31.3,34.4-14.19,33.93-31.3,33.93Zm0-65.98c-7.8,0-21.53,6.39-21.53,30.74s12.6,32.8,21.62,32.8,21.52-7.9,21.52-32.8-13.44-30.74-21.62-30.74Z"/>
|
|
66
|
+
<path class="cls-6" d="m288.14,137.69c-8.37,0-14.38-3.38-17.29-6.58-3.1,4.98-3.38,5.36-3.38,5.36-.66,1.03-.75,1.22-1.41,1.22-1.03,0-1.03-.66-1.03-2.26v-18.8c0-1.69,0-2.35,1.22-2.35.28,0,1.03,0,1.13.94.09,3.38.38,9.4,5.83,14.47,4.98,4.61,12.12,5.08,14.85,5.08,7.9,0,12.6-6.77,12.6-13.44,0-3.1-.94-6.2-2.91-8.65-2.63-3.48-5.45-4.14-7.99-4.79-6.58-1.6-11.37-2.73-12.41-3.1-7.33-2.54-12.31-9.4-12.31-17.2,0-9.96,7.9-18.23,18.33-18.23,8.37,0,12.22,3.85,15.04,6.58l3.29-5.36c.66-1.13.75-1.22,1.41-1.22,1.03,0,1.03.66,1.03,2.26v18.89c0,1.79,0,2.26-1.22,2.26-1.03,0-1.03-.56-1.13-1.13-.56-4.23-2.63-19.65-18.33-19.65-7.33,0-12.41,5.73-12.41,12.31,0,5.45,3.67,10.53,9.49,11.94l12.03,2.91c7.9,1.88,14.1,9.59,14.1,18.99,0,10.34-7.52,19.55-18.52,19.55Z"/>
|
|
67
|
+
<path class="cls-6" d="m369.36,135.62h-54.24v-2.91h2.26c7.24,0,7.43-1.03,7.43-4.42v-49.25c0-3.38-.19-4.42-7.43-4.42h-2.26v-2.91h52.92l2.63,21.15h-2.35c-1.5-13.06-4.04-18.23-18.42-18.23h-12.12c-4.42,0-4.61.66-4.61,3.76v22.56h8.46c9.12,0,10.15-2.91,10.15-11h2.35v24.91h-2.35c0-7.99-1.03-11-10.15-11h-8.46v25.1c0,3.1.19,3.76,4.61,3.76h12.5c16.17,0,18.33-6.86,20.68-21.34h2.35l-3.95,24.25Z"/>
|
|
68
|
+
</g>
|
|
69
|
+
</g>
|
|
70
|
+
<polygon id="SVGID" class="cls-7" points="398.42 125.64 396.83 125.11 396.03 124.94 394.04 124.93 392.45 124.81 390.06 124.81 388.07 124.64 386.87 124.6 382.09 124.13 378.91 123.3 377.71 122.87 376.92 122.43 375.72 121.55 374.53 120.4 373.73 119.35 372.93 117.89 372.14 115.76 371.34 112.48 370.54 107.04 369.75 97.51 368.95 81.38 368.15 57.7 366.96 18.86 366.56 9.63 366.16 3.76 365.76 1.36 365.36 1.98 364.97 4.79 364.57 8.85 363.37 21.71 362.58 27.98 361.78 32.49 360.98 35.96 359.79 40.24 357 48.91 355.01 54.52 352.22 61.86 350.23 66.62 347.84 71.89 345.45 76.68 343.46 80.32 341.46 83.53 339.87 85.81 338.68 87.29 337.48 88.49 336.68 89.11 335.89 89.5 335.49 89.58 335.09 89.54 334.69 89.35 334.29 88.95 333.9 88.28 333.5 87.22 333.1 85.65 332.7 83.41 331.9 76.29 330.71 59.15 329.91 47.47 329.51 43.27 329.12 40.71 328.72 39.86 328.32 40.5 327.92 42.23 326.73 49.78 325.93 54.21 325.13 57.58 324.34 60.24 322.74 64.58 320.75 69.36 318.36 74.61 315.97 79.42 313.18 84.43 310.79 88.32 308.4 91.83 306.41 94.47 304.82 96.28 303.62 97.47 302.43 98.39 301.63 98.81 301.23 98.91 300.84 98.89 300.44 98.73 300.04 98.4 299.64 97.82 299.24 96.94 298.45 94.04 297.25 87.45 296.45 83.6 296.06 82.47 295.66 82.01 295.26 82.2 294.86 82.9 293.27 87.55 292.47 89.52 291.67 91.11 290.48 93.01 288.49 95.72 284.11 100.76 280.52 104.39 278.13 106.49 276.14 107.9 274.94 108.62 274.15 108.95 273.35 109.16 272.55 109.22 272.16 109.14 271.76 108.94 271.36 108.59 270.56 107.31 269.37 104.28 268.57 102.4 268.17 101.84 267.78 101.61 267.38 101.73 266.98 102.12 265.39 104.69 264.59 105.81 263.79 106.71 262.6 107.73 257.82 110.87 254.63 112.8 253.83 113.17 253.04 113.35 252.24 113.32 251.84 113.18 251.44 112.92 250.65 112.03 249.85 110.75 249.05 109.56 248.66 109.18 248.26 109.01 247.86 109.05 245.07 111.79 243.48 113.25 241.88 114.43 240.69 115.09 239.49 115.55 237.9 115.97 233.52 117.49 231.53 118.54 230.33 119.12 229.54 119.37 226.75 119.59 224.76 120.08 223.56 120.2 222.76 120.29 220.77 121.07 219.98 121.34 219.18 121.5 218.38 121.53 217.19 121.38 216.39 121.32 215.59 121.45 214.4 121.75 213.6 121.76 212.41 121.67 210.02 122.35 209.22 122.43 207.23 121.86 206.43 121.77 204.84 122.23 204.04 122.31 202.85 122.09 202.05 122.08 200.86 122.46 200.06 122.62 199.66 122.59 199.26 122.47 198.07 121.75 197.27 121.37 196.87 121.32 196.48 121.38 195.68 121.7 194.88 121.94 194.48 121.94 193.69 121.75 192.89 121.6 192.49 121.64 191.7 121.93 190.9 122.2 190.5 122.2 190.1 122.07 188.51 120.78 188.11 120.56 187.71 120.49 187.31 120.56 186.92 120.7 186.12 120.95 185.72 120.93 184.92 120.57 184.13 120.14 183.73 120.07 182.14 120.78 181.74 120.86 181.34 120.79 180.54 120.27 179.75 119.73 179.35 119.64 178.95 119.67 178.55 119.81 177.75 120.04 177.36 119.98 176.96 119.76 176.16 118.94 175.36 118.12 174.97 117.9 174.57 117.85 173.37 118.13 171.78 117.87 171.38 117.92 169.79 119.19 169.39 119.32 168.99 119.18 168.59 118.76 167.8 117.3 167 115.81 166.6 115.31 166.2 115 165.01 114.59 164.21 114.38 163.81 114.44 163.41 114.7 162.62 115.76 161.82 116.84 161.42 117.08 161.02 117.02 160.63 116.66 160.23 116.06 159.43 114.42 158.24 111.96 157.44 110.79 157.04 110.47 156.64 110.43 156.25 110.68 155.45 111.84 154.65 113 154.25 113.28 153.86 113.27 153.46 112.97 152.66 111.67 151.86 109.72 151.07 107.83 150.67 107.2 150.27 106.9 149.87 106.97 149.47 107.35 148.68 108.61 147.88 109.75 147.48 110.09 147.08 110.22 146.69 110.08 146.29 109.59 145.89 108.68 145.49 107.29 144.3 101.58 143.9 100.11 143.5 99.36 143.1 99.46 142.7 100.38 141.91 103.78 141.11 107.15 140.71 108.09 140.31 108.27 139.91 107.58 137.92 95.38 137.52 93.66 137.13 93.05 136.73 93.58 135.53 98.79 135.13 100.22 134.74 100.89 134.34 100.71 133.94 99.72 133.14 96.18 132.35 92.59 131.95 91.47 131.55 90.95 131.15 90.97 130.35 91.73 129.96 91.95 129.56 91.8 127.96 88.52 127.57 87.99 126.37 87.75 125.97 87.34 125.57 86.42 124.38 81.74 123.98 80.52 123.58 79.89 123.18 79.85 122.39 80.68 121.99 80.93 121.59 80.74 121.19 80.02 120.79 78.81 119.6 73.78 118.8 70.95 118.4 70.08 118.01 69.56 117.61 69.26 116.81 68.59 116.01 67.3 115.22 65.61 114.42 63.02 113.23 56.07 112.83 54.16 112.43 53.44 112.03 54.33 111.63 56.86 110.84 65 110.04 72.66 109.64 75.18 109.24 76.82 108.84 77.81 108.45 78.41 108.05 78.79 107.65 79.05 106.06 79.46 105.26 79.87 104.46 80.63 103.67 81.36 103.27 81.44 102.87 81.19 102.47 80.58 101.68 78.8 101.28 78.11 100.88 77.84 100.48 78.1 100.08 78.84 98.49 83.46 97.69 86.14 96.9 89.78 96.1 93.28 95.7 94.28 95.3 94.51 94.9 93.91 94.51 92.56 91.72 75.83 90.92 71.8 90.52 70.43 90.12 69.63 89.73 69.42 89.33 69.68 88.53 70.8 88.13 71.1 87.73 70.9 87.34 70.02 86.94 68.43 86.14 63.8 85.34 59.24 84.95 57.98 84.55 57.92 84.15 59.29 83.75 62.15 82.56 76.21 81.76 84.39 81.36 86.73 80.96 87.7 80.56 87.42 79.37 82.75 78.97 81.64 78.57 81.51 78.17 82.51 77.38 86.92 76.58 91.39 76.18 92.57 75.78 92.8 75.39 92.07 74.99 90.48 73.39 79.9 73 77.87 72.6 76.78 72.2 76.71 70.61 81.68 70.21 82.61 69.81 83.09 69.41 83.09 69.01 82.58 68.61 81.45 68.22 79.62 66.62 67.91 66.22 65.8 65.83 64.88 65.43 65.27 64.23 70.92 63.83 72.19 63.44 72.25 63.04 70.93 61.44 59.2 61.05 57.15 60.65 55.94 59.45 54.63 58.66 52.89 57.86 50.93 56.66 49.66 56.27 48.76 54.27 35.67 53.88 33.66 53.48 32.52 53.08 32.15 52.28 32.23 51.88 31.7 51.49 30.23 51.09 27.65 49.5 10.81 48.7 3.58 48.3 1.67 47.9 1.59 47.5 3.8 47.11 8.41 45.91 31.16 45.11 44.32 44.72 48.5 44.32 51.27 43.92 53.06 41.53 59.35 40.73 61.06 40.33 61.55 39.94 61.76 39.54 61.73 38.74 61.42 38.34 61.41 37.94 61.71 37.55 62.46 37.15 63.74 36.35 67.91 33.96 86.55 32.77 95.31 31.97 99.57 31.57 100.96 31.17 101.81 30.77 102.12 30.38 101.94 29.98 101.37 29.18 99.26 28.38 95.95 27.59 91.42 26.39 83.12 24 62.36 23.21 56.33 22.81 54.42 22.41 53.54 22.01 53.7 21.61 54.75 21.21 56.34 20.42 59.44 20.02 60.29 19.62 60.58 19.22 60.53 18.82 60.58 18.43 61.25 18.03 63.07 17.63 66.36 17.23 71.17 16.04 90.83 15.24 102.83 14.44 111.07 14.04 113.84 13.65 115.94 13.25 117.51 12.85 118.69 12.45 119.58 12.05 120.26 11.26 121.22 10.06 122.27 8.87 123.17 8.07 123.62 7.27 123.89 5.68 124.09 4.88 124.26 3.29 124.86 2.09 125.24 .5 125.54 .5 143.01 402.83 143.01 398.42 125.64"/>
|
|
71
|
+
</g>
|
|
72
|
+
</svg>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Citing Moose
|
|
2
|
+
`Moose` is made publicly available via it's `git` repository.
|
|
3
|
+
|
|
4
|
+
To make it easier to cite and reference, it also has a `DOI`, provided via [Zenodo](https://zenodo.org).
|
|
5
|
+
|
|
6
|
+
Whenever a new version is released, this will be automatically updated to Zenodo.
|
|
7
|
+
|
|
8
|
+
Therefore, the recommended way of citing it is as follows:
|
|
9
|
+
|
|
10
|
+
```bibtex
|
|
11
|
+
@software{
|
|
12
|
+
author = {Salden, Antoine},
|
|
13
|
+
title = {Moose: Molecular Optical Emission Simulation in python},
|
|
14
|
+
url = {https://doi.org/xxx-xxx},
|
|
15
|
+
version = {}
|
|
16
|
+
}
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## Copyright notice from MassiveOES
|
|
21
|
+
|
|
22
|
+
The original software is massiveOES developed by the Masaryk University available from: [https://bitbucket.org/OES_muni/massiveoes](https://bitbucket.org/OES_muni/massiveoes).
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Publications introducing MassiveOES
|
|
26
|
+
|
|
27
|
+
!!! info
|
|
28
|
+
VORÁČ, Jan; SYNEK, Petr; PROCHÁZKA, Vojtěch; HODER, Tomáš. State-by-state emission spectra fitting for non-equilibrium plasmas: OH spectra of surface barrier discharge at argon/water interface. Journal of Physics D: Applied Physics. 2017, 50(29), 294002. DOI: [10.1088/1361-6463/aa7570](https://doi.org/10.1088/1361-6463/aa7570).
|
|
29
|
+
|
|
30
|
+
!!! info
|
|
31
|
+
VORÁČ, Jan; SYNEK, Petr; POTOČŇÁKOVÁ, Lucia; HNILICA, Jaroslav; KUDRLE, Vít. Batch processing of overlapping molecular spectra as a tool for spatio-temporal diagnostics of power modulated microwave plasma jet. Plasma Sources Science and Technology 26.2 (2017), 025010. DOI: [10.1088/1361-6595/aa51f0](https://doi.org/10.1088/1361-6595/aa51f0).
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# Original sources for databases
|
|
35
|
+
| Database | Source | DOI |
|
|
36
|
+
| --- | --- | --- |
|
|
37
|
+
| OHAX |J. Luque and D.R. Crosley, J. Chem. Phys., 109, 439 (1998) | <https://doi.org/10.1063/1.476582> |
|
|
38
|
+
| OHAX | L.R. Williams and D.R. Crosley, J. Chem. Phys, 104, 6507 (1996) | <https://doi.org/10.1063/1.471371> |
|
|
39
|
+
| OHAX | Kristen L. Steffens, Jorge Luque, Jay B. Jeffries, David R. Crosley; J. Chem. Phys. 15 April 1997; 106 (15): 6262–6267. | <https://doi.org/10.1063/1.473644> |
|
|
40
|
+
| N$_2^+$BX | J. Luque and D.R. Crosley, “LIFBASE: Database and Spectral Simulation Program (Version 1.5) ”, SRI International Report MP 99-009 (1999). | |
|
|
41
|
+
| NHAX | Western C 2016 PGOPHER—a program for simulating rotational structure, Version 9.0.100, University of Bristol | |
|
|
42
|
+
| NHAX | Ram R and Bernath P 2010 J. Mol. Spectrosc. 260 115–9 | <https://doi.org/10.1016/j.jms.2010.01.006> |
|
|
43
|
+
| NHAX | Lents J 1973 J. Quant. Spectrosc. Radiat. Transfer 13 297–310 | <https://doi.org/10.1016/0022-4073(73)90061-7> |
|
|
44
|
+
| NHAX | Seong J, Park J K and Sun H 1994 Chem. Phys. Lett. 228 443–50 | <https://doi.org/10.1016/j.jms.2010.01.006> |
|
|
45
|
+
| NOBX | J. Luque and D.R. Crosley, “LIFBASE: Database and Spectral Simulation Program (Version 1.5) ”, SRI International Report MP 99-009 (1999). | |
|
|
46
|
+
| N$_2$CB | Nassar H, Pellerin S, Musiol K, Martinie O, Pellerin N and Cormier J 2004. Phys. D: Appl. Phys. 37 1904 | <https://doi.org/10.1088/0022-3727/37/14/005> |
|
|
47
|
+
| N$_2$CB | Laux C O and Kruger C H 1992 J. Quant. Spectrosc. Radiat. Transfer 48 9–24 | <https://doi.org/10.1016/0022-4073(92)90003-M> |
|
|
48
|
+
| N$_2$CB | Faure G and Shko’nik S 1998 J. Phys. D: Appl. Phys. 31 1212 | <https://doi.org/10.1088/0022-3727/31/10/013> |
|
|
49
|
+
| C$_2$ Swan | James S.A. Brooke and Peter F. Bernath and Timothy W. Schmidt and George B. Bacskay; Journal of Quantitative Spectroscopy and Radiative Transfer; 2013 | <https://doi.org/10.1016/j.jqsrt.2013.02.025> |
|
|
50
|
+
| C$_2$ Swan | Carbone, Emile and D'Isa, Federico and Hecimovic, Ante and Fantz, Ursel; PSST; 2020; | <https://doi.org/10.1088/1361-6595/ab74b4> |
|
|
51
|
+
| CNBX | Carbone, Emile and D'Isa, Federico and Hecimovic, Ante and Fantz, Ursel; PSST; 2020; | <https://doi.org/10.1088/1361-6595/ab74b4> |
|
|
52
|
+
|