pyelq 1.1.0__tar.gz → 1.1.1__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.
Files changed (32) hide show
  1. {pyelq-1.1.0 → pyelq-1.1.1}/PKG-INFO +1 -1
  2. {pyelq-1.1.0 → pyelq-1.1.1}/pyproject.toml +1 -1
  3. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/gas_species.py +22 -0
  4. {pyelq-1.1.0 → pyelq-1.1.1}/LICENSE.md +0 -0
  5. {pyelq-1.1.0 → pyelq-1.1.1}/LICENSES/Apache-2.0.txt +0 -0
  6. {pyelq-1.1.0 → pyelq-1.1.1}/README.md +0 -0
  7. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/__init__.py +0 -0
  8. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/component/__init__.py +0 -0
  9. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/component/background.py +0 -0
  10. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/component/component.py +0 -0
  11. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/component/error_model.py +0 -0
  12. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/component/offset.py +0 -0
  13. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/component/source_model.py +0 -0
  14. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/coordinate_system.py +0 -0
  15. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/data_access/__init__.py +0 -0
  16. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/data_access/data_access.py +0 -0
  17. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/dispersion_model/__init__.py +0 -0
  18. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/dispersion_model/gaussian_plume.py +0 -0
  19. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/dlm.py +0 -0
  20. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/meteorology.py +0 -0
  21. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/model.py +0 -0
  22. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/plotting/__init__.py +0 -0
  23. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/plotting/plot.py +0 -0
  24. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/preprocessing.py +0 -0
  25. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/sensor/__init__.py +0 -0
  26. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/sensor/beam.py +0 -0
  27. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/sensor/satellite.py +0 -0
  28. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/sensor/sensor.py +0 -0
  29. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/source_map.py +0 -0
  30. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/support_functions/__init__.py +0 -0
  31. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/support_functions/post_processing.py +0 -0
  32. {pyelq-1.1.0 → pyelq-1.1.1}/src/pyelq/support_functions/spatio_temporal_interpolation.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyelq
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: Package for detection, localization and quantification code.
5
5
  License: Apache-2.0
6
6
  Keywords: gas dispersion,emission,detection,localization,quantification
@@ -8,7 +8,7 @@ build-backend = "poetry.core.masonry.api"
8
8
 
9
9
  [tool.poetry]
10
10
  name = "pyelq"
11
- version = "1.1.0"
11
+ version = "1.1.1"
12
12
  description = "Package for detection, localization and quantification code."
13
13
  authors = ["Bas van de Kerkhof", "Matthew Jones", "David Randell"]
14
14
  homepage = "https://sede-open.github.io/pyELQ/"
@@ -230,3 +230,25 @@ class NO2(GasSpecies):
230
230
 
231
231
  global_background = 0
232
232
  half_life = 12
233
+
234
+
235
+ @dataclass
236
+ class H2(GasSpecies):
237
+ """Defines the properties of H2."""
238
+
239
+ @property
240
+ def name(self):
241
+ """Str: Name of gas."""
242
+ return "Hydrogen"
243
+
244
+ @property
245
+ def molar_mass(self):
246
+ """Float: Molar Mass [g/mol]."""
247
+ return 2.01568
248
+
249
+ @property
250
+ def formula(self):
251
+ """Str: Chemical formula of gas."""
252
+ return "H2"
253
+
254
+ global_background = 0.5
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes