PyPartMC 2.1.2__cp315-cp315-win_amd64.whl

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 (91) hide show
  1. PyPartMC/_PyPartMC.pyd +0 -0
  2. PyPartMC/__generate_si.py +37 -0
  3. PyPartMC/__init__.py +78 -0
  4. PyPartMC/cmake/PyPartMCConfig.cmake +65 -0
  5. PyPartMC/include/PyPartMC/aero_binned.hpp +117 -0
  6. PyPartMC/include/PyPartMC/aero_data.hpp +283 -0
  7. PyPartMC/include/PyPartMC/aero_dist.hpp +85 -0
  8. PyPartMC/include/PyPartMC/aero_mode.hpp +359 -0
  9. PyPartMC/include/PyPartMC/aero_particle.hpp +275 -0
  10. PyPartMC/include/PyPartMC/aero_state.hpp +664 -0
  11. PyPartMC/include/PyPartMC/bin_grid.hpp +143 -0
  12. PyPartMC/include/PyPartMC/camp_core.hpp +31 -0
  13. PyPartMC/include/PyPartMC/condense.hpp +35 -0
  14. PyPartMC/include/PyPartMC/env_state.hpp +161 -0
  15. PyPartMC/include/PyPartMC/gas_data.hpp +105 -0
  16. PyPartMC/include/PyPartMC/gas_state.hpp +129 -0
  17. PyPartMC/include/PyPartMC/getters.hpp +55 -0
  18. PyPartMC/include/PyPartMC/input_guard.hpp +155 -0
  19. PyPartMC/include/PyPartMC/json_resource.hpp +363 -0
  20. PyPartMC/include/PyPartMC/output.hpp +96 -0
  21. PyPartMC/include/PyPartMC/photolysis.hpp +29 -0
  22. PyPartMC/include/PyPartMC/pmc_resource.hpp +42 -0
  23. PyPartMC/include/PyPartMC/rand.hpp +12 -0
  24. PyPartMC/include/PyPartMC/run_exact.hpp +34 -0
  25. PyPartMC/include/PyPartMC/run_exact_opt.hpp +46 -0
  26. PyPartMC/include/PyPartMC/run_part.hpp +110 -0
  27. PyPartMC/include/PyPartMC/run_part_opt.hpp +72 -0
  28. PyPartMC/include/PyPartMC/run_sect.hpp +34 -0
  29. PyPartMC/include/PyPartMC/run_sect_opt.hpp +54 -0
  30. PyPartMC/include/PyPartMC/scenario.hpp +220 -0
  31. PyPartMC/include/PyPartMC/si.hpp +118 -0
  32. PyPartMC/include/PyPartMC/util.hpp +22 -0
  33. PyPartMC/include/PyPartMC.hpp +28 -0
  34. PyPartMC/include/aero_data_parameters.hpp +27 -0
  35. PyPartMC/include/bpstd/detail/string_view.inl +925 -0
  36. PyPartMC/include/bpstd/string_view.hpp +498 -0
  37. PyPartMC/include/gas_data_parameters.hpp +14 -0
  38. PyPartMC/include/nanobind_json/nanobind_json.h +226 -0
  39. PyPartMC/include/nlohmann/adl_serializer.hpp +55 -0
  40. PyPartMC/include/nlohmann/byte_container_with_subtype.hpp +103 -0
  41. PyPartMC/include/nlohmann/detail/abi_macros.hpp +100 -0
  42. PyPartMC/include/nlohmann/detail/conversions/from_json.hpp +497 -0
  43. PyPartMC/include/nlohmann/detail/conversions/to_chars.hpp +1118 -0
  44. PyPartMC/include/nlohmann/detail/conversions/to_json.hpp +446 -0
  45. PyPartMC/include/nlohmann/detail/exceptions.hpp +257 -0
  46. PyPartMC/include/nlohmann/detail/hash.hpp +129 -0
  47. PyPartMC/include/nlohmann/detail/input/binary_reader.hpp +3009 -0
  48. PyPartMC/include/nlohmann/detail/input/input_adapters.hpp +492 -0
  49. PyPartMC/include/nlohmann/detail/input/json_sax.hpp +727 -0
  50. PyPartMC/include/nlohmann/detail/input/lexer.hpp +1633 -0
  51. PyPartMC/include/nlohmann/detail/input/parser.hpp +519 -0
  52. PyPartMC/include/nlohmann/detail/input/position_t.hpp +37 -0
  53. PyPartMC/include/nlohmann/detail/iterators/internal_iterator.hpp +35 -0
  54. PyPartMC/include/nlohmann/detail/iterators/iter_impl.hpp +751 -0
  55. PyPartMC/include/nlohmann/detail/iterators/iteration_proxy.hpp +242 -0
  56. PyPartMC/include/nlohmann/detail/iterators/iterator_traits.hpp +61 -0
  57. PyPartMC/include/nlohmann/detail/iterators/json_reverse_iterator.hpp +130 -0
  58. PyPartMC/include/nlohmann/detail/iterators/primitive_iterator.hpp +132 -0
  59. PyPartMC/include/nlohmann/detail/json_custom_base_class.hpp +39 -0
  60. PyPartMC/include/nlohmann/detail/json_pointer.hpp +988 -0
  61. PyPartMC/include/nlohmann/detail/json_ref.hpp +78 -0
  62. PyPartMC/include/nlohmann/detail/macro_scope.hpp +482 -0
  63. PyPartMC/include/nlohmann/detail/macro_unscope.hpp +45 -0
  64. PyPartMC/include/nlohmann/detail/meta/call_std/begin.hpp +17 -0
  65. PyPartMC/include/nlohmann/detail/meta/call_std/end.hpp +17 -0
  66. PyPartMC/include/nlohmann/detail/meta/cpp_future.hpp +171 -0
  67. PyPartMC/include/nlohmann/detail/meta/detected.hpp +70 -0
  68. PyPartMC/include/nlohmann/detail/meta/identity_tag.hpp +21 -0
  69. PyPartMC/include/nlohmann/detail/meta/is_sax.hpp +159 -0
  70. PyPartMC/include/nlohmann/detail/meta/std_fs.hpp +29 -0
  71. PyPartMC/include/nlohmann/detail/meta/type_traits.hpp +795 -0
  72. PyPartMC/include/nlohmann/detail/meta/void_t.hpp +24 -0
  73. PyPartMC/include/nlohmann/detail/output/binary_writer.hpp +1838 -0
  74. PyPartMC/include/nlohmann/detail/output/output_adapters.hpp +147 -0
  75. PyPartMC/include/nlohmann/detail/output/serializer.hpp +988 -0
  76. PyPartMC/include/nlohmann/detail/string_concat.hpp +146 -0
  77. PyPartMC/include/nlohmann/detail/string_escape.hpp +72 -0
  78. PyPartMC/include/nlohmann/detail/value_t.hpp +118 -0
  79. PyPartMC/include/nlohmann/json.hpp +5258 -0
  80. PyPartMC/include/nlohmann/json_fwd.hpp +75 -0
  81. PyPartMC/include/nlohmann/ordered_map.hpp +359 -0
  82. PyPartMC/include/nlohmann/thirdparty/hedley/hedley.hpp +2045 -0
  83. PyPartMC/include/nlohmann/thirdparty/hedley/hedley_undef.hpp +158 -0
  84. PyPartMC/include/output_parameters.hpp +25 -0
  85. PyPartMC/include/tcb/span.hpp +617 -0
  86. PyPartMC/include/tl/optional.hpp +2062 -0
  87. PyPartMC/lib/libpartmclib.a +0 -0
  88. pypartmc-2.1.2.dist-info/METADATA +494 -0
  89. pypartmc-2.1.2.dist-info/RECORD +91 -0
  90. pypartmc-2.1.2.dist-info/WHEEL +5 -0
  91. pypartmc-2.1.2.dist-info/licenses/LICENSE +674 -0
Binary file
@@ -0,0 +1,494 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyPartMC
3
+ Version: 2.1.2
4
+ Summary: Python interface to PartMC
5
+ Author-Email: "https://github.com/open-atmos/PyPartMC/graphs/contributors" <nriemer@illinois.edu>
6
+ License-Expression: GPL-3.0
7
+ Project-URL: Documentation, https://open-atmos.github.io/PyPartMC
8
+ Project-URL: Source, https://github.com/open-atmos/PyPartMC/
9
+ Project-URL: Tracker, https://github.com/open-atmos/PyPartMC/issues
10
+ Requires-Python: >=3.9
11
+ Requires-Dist: numpy
12
+ Requires-Dist: nanobind
13
+ Provides-Extra: tests
14
+ Requires-Dist: pytest; extra == "tests"
15
+ Requires-Dist: pytest-order; extra == "tests"
16
+ Provides-Extra: examples
17
+ Requires-Dist: matplotlib!=3.10.0; extra == "examples"
18
+ Requires-Dist: ipywidgets; extra == "examples"
19
+ Requires-Dist: voila; extra == "examples"
20
+ Requires-Dist: open-atmos-jupyter-utils; extra == "examples"
21
+ Requires-Dist: PySDM; extra == "examples"
22
+ Requires-Dist: PyMieScatt; extra == "examples"
23
+ Requires-Dist: SciPy; extra == "examples"
24
+ Requires-Dist: dustpy; platform_system != "Windows" and extra == "examples"
25
+ Description-Content-Type: text/markdown
26
+
27
+ ![logo](https://raw.githubusercontent.com/wiki/open-atmos/PyPartMC/logo.svg)
28
+
29
+ # PyPartMC
30
+
31
+ PyPartMC is a Python interface to [PartMC](https://lagrange.mechse.illinois.edu/partmc/),
32
+ a particle-resolved Monte-Carlo code for atmospheric aerosol simulation.
33
+ Development of PyPartMC has been intended to remove limitations to the use of Fortran-implemented PartMC.
34
+ PyPartMC facilitates the dissemination of computational research results by streamlining independent execution
35
+ of PartMC simulations (also during peer-review processes).
36
+ Additionally, the ability to easily package examples, simple simulations, and results in a web-based notebook
37
+ allows PyPartMC to support the efforts of many members of the scientific community, including researchers,
38
+ instructors, and students, with nominal software and hardware requirements.
39
+
40
+ Documentation of PyPartMC is hosted at https://open-atmos.github.io/PyPartMC.
41
+ PyPartMC is implemented in C++ and it also constitutes a C++ API to the PartMC Fortran internals (see the C++ example below).
42
+ The Python API can facilitate using PartMC from other environments than Python and C++ - see, e.g., Julia and Matlab examples below.
43
+
44
+ For an outline of the project, rationale, architecture, and features, refer to: [D'Aquino et al., 2024 (SoftwareX)](https://doi.org/10.1016/j.softx.2023.101613) (please cite if PyPartMC is used in your research).
45
+ For a list of talks and other relevant resources, please see [project Wiki](https://github.com/open-atmos/PyPartMC/wiki/).
46
+ If interested in contributing to PyPartMC, please have a look a the [notes for developers](https://github.com/open-atmos/PyPartMC/tree/main/CONTRIBUTING.md).
47
+
48
+ [![US Funding](https://img.shields.io/static/v1?label=US%20DOE%20Funding%20by&color=267c32&message=ASR&logoWidth=25&logo=image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAQCAMAAAA25D/gAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAASFBMVEVOTXyyIjRDQnNZWINZWITtzdFUU4BVVIFVVYHWiZM9PG/KZnNXVoJaWYT67/FKSXhgX4hgX4lcW4VbWoX03uHQeIN2VXj///9pZChlAAAAAWJLR0QXC9aYjwAAAAd0SU1FB+EICRMGJV+KCCQAAABdSURBVBjThdBJDoAgEETRkkkZBBX0/kd11QTTpH1/STqpAAwWBkobSlkGbt0o5xmEfqxDZJB2Q6XMoBwnVSbTylWp0hi42rmbwTOYPDfR5Kc+07IIUQQvghX9THsBHcES8/SiF0kAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTctMDgtMDlUMTk6MDY6MzcrMDA6MDCX1tBgAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE3LTA4LTA5VDE5OjA2OjM3KzAwOjAw5oto3AAAAABJRU5ErkJggg==)](https://asr.science.energy.gov/) [![PL Funding](https://img.shields.io/static/v1?label=PL%20Funding%20by&color=d21132&message=NCN&logoWidth=25&logo=image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAYAAACpUE5eAAAABmJLR0QA/wD/AP+gvaeTAAAAKUlEQVQ4jWP8////fwYqAiZqGjZqIHUAy4dJS6lqIOMdEZvRZDPcDQQAb3cIaY1Sbi4AAAAASUVORK5CYII=)](https://www.ncn.gov.pl/?language=en)
49
+
50
+ [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html)
51
+ [![Copyright](https://img.shields.io/static/v1?label=Copyright&color=249fe2&message=UIUC&)](https://atmos.illinois.edu/)
52
+ [![tests+pypi](https://github.com/open-atmos/PyPartMC/actions/workflows/buildwheels.yml/badge.svg)](https://github.com/open-atmos/PyPartMC/actions/workflows/buildwheels.yml)
53
+ [![API docs](https://shields.mitmproxy.org/badge/docs-pdoc.dev-brightgreen.svg)](https://open-atmos.github.io/PyPartMC/)
54
+ [![codecov](https://codecov.io/gh/open-atmos/PyPartMC/graph/badge.svg?token=27IK9ZIQXE)](https://codecov.io/gh/open-atmos/PyPartMC)
55
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7662635.svg)](https://doi.org/10.5281/zenodo.7662635)
56
+ [![PyPI version](https://badge.fury.io/py/PyPartMC.svg)](https://pypi.org/p/PyPartMC)
57
+ [![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
58
+ [![pyOpenSci Peer-Reviewed](https://pyopensci.org/badges/peer-reviewed.svg)](https://github.com/pyOpenSci/software-review/issues/179)
59
+
60
+ [![Python 3](https://img.shields.io/static/v1?label=Python&logo=Python&color=3776AB&message=3)](https://www.python.org/)
61
+ [![Linux OK](https://img.shields.io/static/v1?label=Linux&logo=Linux&color=yellow&message=%E2%9C%93)](https://en.wikipedia.org/wiki/Linux)
62
+ [![macOS OK](https://img.shields.io/static/v1?label=macOS&logo=Apple&color=silver&message=%E2%9C%93)](https://en.wikipedia.org/wiki/macOS)
63
+ [![Windows OK](https://img.shields.io/static/v1?label=Windows&logo=Windows&color=white&message=%E2%9C%93)](https://en.wikipedia.org/wiki/Windows)
64
+ [![Jupyter](https://img.shields.io/static/v1?label=Jupyter&logo=Jupyter&color=f37626&message=%E2%9C%93)](https://jupyter.org/)
65
+
66
+ ## Installation
67
+
68
+ ### Using the command-line `pip` tool (also applies to conda environments)
69
+ ```bash
70
+ pip install PyPartMC
71
+ ```
72
+
73
+ Note that, depending on the environment (OS, hardware, Python version), the pip-install invocation
74
+ may either trigger a download of a pre-compiled binary, or trigger compilation of PyPartMC.
75
+ In the latter case, a Fortran compiler and some development tools includiong CMake, m4 and perl
76
+ are required (while all non-Python dependencies are included in the PyPartMC source archive).
77
+ In both cases, all Python dependencies will be resolved by pip.
78
+
79
+ ### In a Jupyter notebook cell (also on Colab or jupyter-hub instances)
80
+
81
+ ```python
82
+ ! pip install PyPartMC
83
+ import PyPartMC
84
+ ```
85
+
86
+ #### Jupyter notebooks with examples
87
+ Note: clicking the badges below redirects to cloud-computing platforms. The mybinder.org links allow anonymous execution, Google Colab requires logging in with a Google account, ARM JupyerHub requires logging in with an ARM account (and directing Jupyter to a particular notebook within the `examples` folder).
88
+
89
+ The example notebooks feature additional dependencies that can be installed with:
90
+ ```bash
91
+ pip install PyPartMC[examples]
92
+ ```
93
+
94
+ - Urban plume scenario demo (as in [PartMC](https://github.com/compdyn/partmc/tree/master/scenarios/1_urban_plume)):
95
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/particle_simulation.ipynb)
96
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/particle_simulation.ipynb)
97
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/particle_simulation.ipynb)
98
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
99
+ - Chamber simulation example from Barrel Study ([Tian el al., 2017](https://doi.org/10.1080/02786826.2017.1311988)):
100
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/chamber.ipynb)
101
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/chamber.ipynb)
102
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/chamber.ipynb)
103
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
104
+ - Dry-Wet Particle Size Equilibration with PartMC and PySDM:
105
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/lognorm_ex.ipynb)
106
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/lognorm_ex.ipynb)
107
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/lognorm_ex.ipynb)
108
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
109
+ [![Voila](https://img.shields.io/static/v1?label=Voil%C3%A0&logo=jupyter&color=teal&message=web+app)](https://mybinder.org/v2/gh/open-atmos/PyPartMC/main?urlpath=voila%2Frender%2Fexamples%2Flognorm_ex.ipynb)
110
+ - Simulation output processing example (loading from netCDF files using PyPartMC):
111
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/process_simulation_output.ipynb)
112
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/process_simulation_output.ipynb)
113
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/process_simulation_output.ipynb)
114
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
115
+ - Optical properties calculation using external Python package ([PyMieScatt](https://pymiescatt.readthedocs.io/en/latest/)):
116
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/mie_optical.ipynb)
117
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/mie_optical.ipynb)
118
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/mie_optical.ipynb)
119
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
120
+ - Cloud parcel example featuring supersaturation-evolution-coupled CCN activation and drop growth:
121
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/cloud_parcel.ipynb)
122
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/cloud_parcel.ipynb)
123
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/cloud_parcel.ipynb)
124
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
125
+ - Immersion freezing example:
126
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/immersion_freezing.ipynb)
127
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/immersion_freezing.ipynb)
128
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/immersion_freezing.ipynb)
129
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
130
+ - Coagulation model intercomparison for additive (Golovin) kernel with: PyPartMC, [PySDM](https://open-atmos.github.io/PySDM), [Droplets.jl](https://github.com/emmacware/droplets.jl) and [dustpy](https://stammler.github.io/dustpy/):
131
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/additive_coag_comparison.ipynb)
132
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/additive_coag_comparison.ipynb)
133
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/additive_coag_comparison.ipynb)
134
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
135
+ - Particle simulation with multiphase chemistry handled using [CAMP](https://doi.org/10.5194/gmd-15-3663-2022) (without coagulation):
136
+ [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyPartMC/blob/main/examples/particle_simulation_with_camp.ipynb.ipynb)
137
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/particle_simulation_with_camp.ipynb)
138
+ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/particle_simulation_with_camp.ipynb)
139
+ [![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
140
+
141
+ ## Features
142
+
143
+ - works on Linux, macOS and Windows (compatibility assured with [CI builds](https://github.com/open-atmos/PyPartMC/blob/main/.github/workflows/buildwheels.yml))
144
+ - hassle-free installation using `pip` (prior PartMC installation **not needed**)
145
+ - works out of the box on [mybinder.org](https://mybinder.org/), [Google Colab](colab.research.google.com/) and alike
146
+ - ships with [a set of examples](https://github.com/open-atmos/PyPartMC/tree/main/examples) maintained in a form of Jupyter notebooks
147
+ - Pythonic API (but retaining PartMC jargon) incl. Python GC deallocation of Fortran objects
148
+ - specification of parameters using native Python datatypes (lists, dicts) in place of PartMC spec files
149
+ - code snippets in README depicting how to use PyPartMC from Python, C++, Julia and Matlab (also executed on CI)
150
+ - auto-generated [API docs on the web](https://open-atmos.github.io/PyPartMC/)
151
+ - support for [de]serialization of selected wrapped structures using JSON
152
+ - based on [unmodified PartMC code](https://github.com/open-atmos/PyPartMC/tree/main/gitmodules)
153
+ - does not use or require shell or any pre-installed libraries
154
+ - aiming at 100% [unit test coverage](https://github.com/open-atmos/PyPartMC/tree/main/tests)
155
+
156
+ ## Usage examples
157
+
158
+ The listings below depict how the identical task of randomly sampling particles from an aerosol size distribution in PartMC can be
159
+ done in different programming languages.
160
+
161
+ For a Fortran equivalent of the Python, C++, Julia and Matlab programs below, see the [`readme_fortran` folder](https://github.com/open-atmos/PyPartMC/tree/main/readme_fortran).
162
+
163
+ #### Python
164
+
165
+ ```Python
166
+ import numpy as np
167
+
168
+ import PyPartMC as ppmc
169
+ from PyPartMC import si
170
+
171
+ aero_data = ppmc.AeroData((
172
+ # [density, ions in solution, molecular weight, kappa, abifm_m, abifm_c]
173
+ {"OC": [1000 *si.kg/si.m**3, 0, 1e-3 *si.kg/si.mol, 0.001, 0, 0]},
174
+ {"BC": [1800 *si.kg/si.m**3, 0, 1e-3 *si.kg/si.mol, 0, 0 , 0]},
175
+ ))
176
+
177
+ aero_dist = ppmc.AeroDist(
178
+ aero_data,
179
+ [{
180
+ "cooking": {
181
+ "mass_frac": [{"OC": [1]}],
182
+ "diam_type": "geometric",
183
+ "mode_type": "log_normal",
184
+ "num_conc": 3200 / si.cm**3,
185
+ "geom_mean_diam": 8.64 * si.nm,
186
+ "log10_geom_std_dev": 0.28,
187
+ },
188
+ "diesel": {
189
+ "mass_frac": [{"OC": [0.3]}, {"BC": [0.7]}],
190
+ "diam_type": "geometric",
191
+ "mode_type": "log_normal",
192
+ "num_conc": 2900 / si.cm**3,
193
+ "geom_mean_diam": 50 * si.nm,
194
+ "log10_geom_std_dev": 0.24,
195
+ }
196
+ }],
197
+ )
198
+
199
+ n_part = 100
200
+ aero_state = ppmc.AeroState(aero_data, n_part, "nummass_source")
201
+ aero_state.dist_sample(aero_dist)
202
+ print(np.dot(aero_state.masses(), aero_state.num_concs), "# kg/m3")
203
+ ```
204
+
205
+ #### C++
206
+
207
+ Note that `pip install PyPartMC` also installs C++ header files as well as CMake package configuration file for PyPartMC.
208
+ No other dependencies are needed to use PyPartMC from C++, and using it in the way exemplified below works by
209
+ linking against the PyPartMC binary library file, but without involving the Python interpretter at runtime.
210
+
211
+ ```cpp
212
+ #include <iostream>
213
+ #include <memory>
214
+ #include <numeric>
215
+
216
+ #include "PyPartMC.hpp"
217
+ #include "PyPartMC/si.hpp"
218
+
219
+ int main() {
220
+ auto aero_data = std::make_shared<AeroData>(nlohmann::json({
221
+ { {"OC", {1000.0 * si::kg / (si::m * si::m * si::m), 0.0, 1e-3 * si::kg / si::mol, 0.001, 0.0, 0.0}} },
222
+ { {"BC", {1800.0 * si::kg / (si::m * si::m * si::m), 0.0, 1e-3 * si::kg / si::mol, 0.0, 0.0, 0.0}} }
223
+ }));
224
+
225
+ auto aero_dist = AeroDist(
226
+ aero_data,
227
+ nlohmann::ordered_json::array({
228
+ nlohmann::ordered_json::object({
229
+ {"cooking", {
230
+ {"mass_frac", nlohmann::ordered_json::array({ nlohmann::ordered_json::object({{"OC", {1.0}}}) }) },
231
+ {"diam_type", "geometric"},
232
+ {"mode_type", "log_normal"},
233
+ {"num_conc", 3200.0 / (si::cm * si::cm * si::cm)},
234
+ {"geom_mean_diam", 8.64 * si::nm},
235
+ {"log10_geom_std_dev", 0.28}
236
+ }},
237
+ {"diesel", {
238
+ {"mass_frac", nlohmann::ordered_json::array({ nlohmann::ordered_json::object({{"OC", {0.3}}}), nlohmann::ordered_json::object({{"BC", {0.7}}}) }) },
239
+ {"diam_type", "geometric"},
240
+ {"mode_type", "log_normal"},
241
+ {"num_conc", 2900.0 / (si::cm * si::cm * si::cm)},
242
+ {"geom_mean_diam", 50.0 * si::nm},
243
+ {"log10_geom_std_dev", 0.24}
244
+ }}
245
+ })
246
+ })
247
+ );
248
+
249
+ int n_part = 100;
250
+ auto aero_state = AeroState(aero_data, n_part, "nummass_source");
251
+
252
+ AeroState::dist_sample(aero_state, aero_dist, 1.0, 0.0, true, true);
253
+
254
+ auto masses = AeroState::masses(aero_state, {}, {});
255
+ auto num_concs = AeroState::num_concs(aero_state);
256
+
257
+ double total_mass = std::inner_product(
258
+ std::begin(num_concs), std::end(num_concs),
259
+ std::begin(masses),
260
+ 0.0
261
+ );
262
+
263
+ std::cout << std::scientific << total_mass << " # kg/m3\n";
264
+
265
+ return 0;
266
+ }
267
+ ```
268
+
269
+ What can be compiled using CMake with the following CMakeLists.txt:
270
+
271
+ ```cmake
272
+ cmake_minimum_required(VERSION 3.22)
273
+ project(AeroSimulation LANGUAGES CXX)
274
+
275
+ enable_testing()
276
+ set(CMAKE_CXX_STANDARD 17)
277
+
278
+ find_package(Python 3.8 REQUIRED COMPONENTS Interpreter)
279
+ execute_process(
280
+ COMMAND ${Python_EXECUTABLE} -c "import PyPartMC, pathlib; print(pathlib.Path(PyPartMC.cmake_dir()).as_posix())"
281
+ OUTPUT_VARIABLE PYPARTMC_CMAKE_DIR
282
+ OUTPUT_STRIP_TRAILING_WHITESPACE
283
+ )
284
+ set(PyPartMC_DIR "${PYPARTMC_CMAKE_DIR}")
285
+
286
+ find_package(PyPartMC REQUIRED)
287
+
288
+ add_executable(my_test test.cpp)
289
+ target_link_libraries(my_test PRIVATE PyPartMC::PyPartMC)
290
+ pypartmc_setup_runtime(my_test)
291
+
292
+ add_test(NAME maketest COMMAND my_test)
293
+ ```
294
+
295
+ #### Julia (using [PyCall.jl](https://github.com/JuliaPy/PyCall.jl))
296
+
297
+ ```Julia
298
+ using Pkg
299
+ Pkg.add("PyCall")
300
+
301
+ using PyCall
302
+ ppmc = pyimport("PyPartMC")
303
+ si = ppmc["si"]
304
+
305
+ aero_data = ppmc.AeroData((
306
+ # (density, ions in solution, molecular weight, kappa, abifm_m, abifm_c)
307
+ Dict("OC"=>(1000 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0.001, 0, 0)),
308
+ Dict("BC"=>(1800 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0, 0, 0))
309
+ ))
310
+
311
+ aero_dist = ppmc.AeroDist(aero_data, (
312
+ Dict(
313
+ "cooking" => Dict(
314
+ "mass_frac" => (Dict("OC" => (1,)),),
315
+ "diam_type" => "geometric",
316
+ "mode_type" => "log_normal",
317
+ "num_conc" => 3200 / si.cm^3,
318
+ "geom_mean_diam" => 8.64 * si.nm,
319
+ "log10_geom_std_dev" => .28,
320
+ ),
321
+ "diesel" => Dict(
322
+ "mass_frac" => (Dict("OC" => (.3,)), Dict("BC" => (.7,))),
323
+ "diam_type" => "geometric",
324
+ "mode_type" => "log_normal",
325
+ "num_conc" => 2900 / si.cm^3,
326
+ "geom_mean_diam" => 50 * si.nm,
327
+ "log10_geom_std_dev" => .24,
328
+ )
329
+ ),
330
+ ))
331
+
332
+ n_part = 100
333
+ aero_state = ppmc.AeroState(aero_data, n_part, "nummass_source")
334
+ aero_state.dist_sample(aero_dist)
335
+ print(aero_state.masses()'aero_state.num_concs, "# kg/m3")
336
+ ```
337
+
338
+ #### Matlab (using [Matlab's built-in Python interface](https://www.mathworks.com/help/matlab/python-language.html))
339
+
340
+ notes (see the `readme_matlab` job definition in [PyPartMC CI workflow](https://github.com/open-atmos/PyPartMC/blob/main/.github/workflows/buildwheels.yml) for an example on how to achieve it on Ubuntu):
341
+ - Matlab ships with convenience copies of C, C++ and Fortran runtime libraries which are `dlopened()` by default; one way to make PyPartMC OK with it is to [pip-]install by compiling from source using the very same version of GCC that Matlab borrowed these libraries from (e.g., [GCC 9 for Matlab R2022a, etc](https://www.mathworks.com/support/requirements/supported-compilers-linux.html));
342
+ - Matlab needs to [use the same Python interpretter/venv](https://www.mathworks.com/support/requirements/python-compatibility.html) as the pip invocation used to install PyPartMC;
343
+
344
+ ````Matlab
345
+ ppmc = py.importlib.import_module('PyPartMC');
346
+ si = py.importlib.import_module('PyPartMC').si;
347
+
348
+ aero_data = ppmc.AeroData(py.tuple({ ...
349
+ py.dict(pyargs("OC", py.tuple({1000 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0.001, 0, 0}))), ...
350
+ py.dict(pyargs("BC", py.tuple({1800 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0, 0, 0}))) ...
351
+ }));
352
+
353
+ aero_dist = ppmc.AeroDist(aero_data, py.tuple({ ...
354
+ py.dict(pyargs( ...
355
+ "cooking", py.dict(pyargs( ...
356
+ "mass_frac", py.tuple({py.dict(pyargs("OC", py.tuple({1})))}), ...
357
+ "diam_type", "geometric", ...
358
+ "mode_type", "log_normal", ...
359
+ "num_conc", 3200 / si.cm^3, ...
360
+ "geom_mean_diam", 8.64 * si.nm, ...
361
+ "log10_geom_std_dev", .28 ...
362
+ )), ...
363
+ "diesel", py.dict(pyargs( ...
364
+ "mass_frac", py.tuple({ ...
365
+ py.dict(pyargs("OC", py.tuple({.3}))), ...
366
+ py.dict(pyargs("BC", py.tuple({.7}))), ...
367
+ }), ...
368
+ "diam_type", "geometric", ...
369
+ "mode_type", "log_normal", ...
370
+ "num_conc", 2900 / si.cm^3, ...
371
+ "geom_mean_diam", 50 * si.nm, ...
372
+ "log10_geom_std_dev", .24 ...
373
+ )) ...
374
+ )) ...
375
+ }));
376
+
377
+ n_part = 100;
378
+ aero_state = ppmc.AeroState(aero_data, n_part, "nummass_source");
379
+ aero_state.dist_sample(aero_dist);
380
+ masses = cell(aero_state.masses());
381
+ num_concs = cell(aero_state.num_concs);
382
+ fprintf('%g # kg/m3\n', dot([masses{:}], [num_concs{:}]))
383
+ ````
384
+
385
+ #### usage in other projects
386
+
387
+ PyPartMC is used within the [test workflow of the PySDM project](https://github.com/atmos-cloud-sim-uj/PySDM/tree/main/tests/smoke_tests/box/partmc).
388
+
389
+ ## Other packages with relevant feature scope
390
+
391
+ - [aerosolGDEFoam](https://openaerosol.sourceforge.io/): OpenFOAM CFD-coupled aerosol dynamics including nucleation, coagulation, and surface growth
392
+ - [AIOMFAC and AIOMFAC-web](http://web.archive.org/web/20250730204937/https://www.aiomfac.caltech.edu/): Fortran-implemented aerosol thermodynamic model for calculation of activity coefficients in organic-inorganic mixtures – from simple binary solutions to complex multicomponent systems
393
+ - [DustPy](https://stammler.github.io/dustpy/): Python package for modelling dust evolution in protoplanetary disks (differences: focus on astrophysical applications vs. atmospheric aerosol)
394
+ - [multilayerpy](https://github.com/tintin554/multilayerpy): kinetic multi-layer model for aerosol particles and films
395
+ - [PyBox](https://pybox.readthedocs.io): aerosol simulation model featuring gas and particle chamistry (differences: PyBox focuses on chemical mechanisms; PyPartMC is an interface to PartMC which focuses on physics - e.g., collisions of aerosol particles - while chemical processes are handled with external software, e.g., CAMP or MOSAIC)
396
+ - [PyCHAM](https://github.com/simonom/PyCHAM): CHemistry with Aerosol Microphysics in Python Box Model for modelling of indoor environments, including aerosol chambers
397
+ - [PySDM](https://open-atmos.github.io/PySDM): particle-based Monte-Carlo aerosol-cloud simulation package (differences: PySDM focuses on growth and breakup processes relevant to cloud droplets; PyPartMC focuses on processes relevant to air pollutants and their chemical and physical transformations)
398
+ - [SSH-aerosol](https://github.com/sshaerosol/ssh-aerosol): C++/Fortran package for simulating evolution of primary and secondary atmospheric aerosols
399
+
400
+ ## FAQ
401
+ - Q: How to install PyPartMC with MOSAIC enabled?
402
+ A: Installation can be done using `pip`, however, `pip` needs to be instructed not to use binary packages available at pypi.org but rather to compile from source (pip will download the source from pip.org), and the path to compiled MOSAIC library needs to be provided at compile-time; the following command should convey it:
403
+ ```bash
404
+ MOSAIC_HOME=<<PATH_TO_MOSAIC_LIB>> pip install --force-reinstall --no-binary=PyPartMC PyPartMC
405
+ ```
406
+
407
+ - Q: Why `pip install PyPartMC` triggers compilation on my brand new Apple machine, while it quickly downloads and installs binary packages when executed on older Macs, Windows or Linux?
408
+ A: We are providing binary wheels on PyPI for Apple-silicon (arm64) machines for selected macOS version made available by Github. In case the macOS version you are using is newer, compilation from source is triggered.
409
+
410
+ - Q: Why some of the constructors expect data to be passed as **lists of single-entry dictionaries** instead of multi-element dictionaries?
411
+ A: This is intentional and related with PartMC relying on the order of elements within spec-file input; while Python dictionaries preserve ordering (insertion order), JSON format does not, and we intend to make these data structures safe to be [de]serialized using JSON.
412
+
413
+ - Q: How to check the version of PartMC that PyPartMC was compiled against?
414
+ A: Version numbers of compile-time dependencies of PyPartMC, including PartMC, can be accessed as follows:
415
+ ```Python
416
+ import PyPartMC
417
+ PyPartMC.__versions_of_build_time_dependencies__['PartMC']
418
+ ```
419
+
420
+ - Q: Why m4 and perl are required at compile time?
421
+ A: PyPartMC includes parts of netCDF and HDF5 codebases which depend on m4 and perl, respectively, for generating source files before compilation.
422
+
423
+ ## Troubleshooting
424
+
425
+ #### Common installation issues
426
+ ```
427
+ error: [Errno 2] No such file or directory: 'cmake'
428
+ ```
429
+ Try rerunning after installing CMake, e.g., using `apt-get install cmake` (Ubuntu/Debian), `brew install cmake` (homebrew on macOS) or using [MSYS2](https://www.msys2.org/docs/cmake/) on Windows.
430
+
431
+ ```
432
+ No CMAKE_Fortran_COMPILER could be found.
433
+ ```
434
+ Try installing a Fortran compiler (e.g., `brew reinstall gcc` with Homebrew on macOS or using [MSYS2](https://packages.msys2.org/package/mingw-w64-x86_64-gcc-fortran?repo=mingw64) on Windows).
435
+
436
+ ```
437
+ Could not find NC_M4 using the following names: m4, m4.exe
438
+ ```
439
+ Try installing `m4` (e.g., using [MSYS2](https://packages.msys2.org/package/m4?repo=msys&variant=x86_64) on Windows).
440
+
441
+ ## Acknowledgement and citations
442
+
443
+ We would greatly appreciate citation of the PartMC model description paper (Riemer et al., 2009)
444
+ and the PyPartMC description paper (D’Aquino et al., 2024) if PyPartMC was used in your study.
445
+ The citations are:
446
+ - Riemer, N., M. West, R. A. Zaveri, R. C. Easter: Simulating the evolution of soot
447
+ mixing-state with a particle-resolved aerosol model
448
+ J. Geophys. Res., 114, D09202, 2009, DOI: [10.1029/2008JD011073](https://doi.org/10.1029/2008JD011073)
449
+ - D’Aquino, Z., S. Arabas, J. H. Curtis, A. Vaishnav, N. Riemer, M. West: PyPartMC: A
450
+ pythonic interfact to a particle-resolved, Monte Carlo aerosol simulation framework
451
+ SoftwareX, 25, 101613, 2024, DOI: [10.1016/j.softx.2023.101613](https://doi.org/10.1016/j.softx.2023.101613)
452
+
453
+ The following paragraph provides a more substantial description of PartMC (text released into the public domain and can be freely copied by anyone for any purpose):
454
+
455
+ > PartMC is a stochastic, particle-resolved aerosol box model. It tracks the
456
+ composition of many computational particles (10<sup>4</sup> to 10<sup>6</sup>) within a well-mixed air
457
+ volume, each represented by a composition vector that evolves based on physical
458
+ and chemical processes. The physical processes—including Brownian coagulation,
459
+ new particle formation, emissions, dilution, and deposition—are simulated using a
460
+ stochastic Monte Carlo approach via a Poisson process while chemical processes are
461
+ simulated deterministically for each computational particle. The weighted flow
462
+ algorithm (DeVille, Riemer, and West, 2011, 2019) enhances efficiency and reduces
463
+ ensemble variance. Detailed numerical methods are described in Riemer et al.
464
+ (2009), DeVille et al. (2011, 2019), and Curtis et al. (2016). PartMC is open-source
465
+ under the GNU GPL v2 and available at
466
+ [github.com/compdyn/partmc](https://github.com/compdyn/partmc).
467
+ >
468
+ > References:
469
+ > - Curtis, J. H., M. D. Michelotti, N. Riemer, M. T. Heath, M. West: Accelerated
470
+ simulation of stochastic particle removal processes in particle-resolved aerosol
471
+ models, J. Computational Phys., 322, 21-32, 2016, DOI: [10.1016/j.jcp.2016.06.029](https://doi.org/10.1016/j.jcp.2016.06.029)
472
+ > - DeVille, L., N. Riemer, M. West, Convergence of a generalized weighted flow
473
+ algorithm for stochastic particle coagulation, J. Computational Dynamics, 6, 69-94,
474
+ 2019, DOI: [10.3934/jcd.2019003](https://doi.org/10.3934/jcd.2019003)
475
+ > - DeVille, R. E. L., N. Riemer, M. West, The Weighted Flow Algorithm (WFA) for
476
+ stochastic particle coagulation, J. Computational Phys., 230, 8427-8451, 2011,
477
+ DOI: [10.1016/j.jcp.2011.07.027](https://doi.org/10.1016/j.jcp.2011.07.027)
478
+ > - Riemer, N., M. West, R. A. Zaveri, R. C. Easter, Simulating the evolution of soot
479
+ mixing-state with a particle-resolved aerosol model, J. Geophys. Res., 114, D09202,
480
+ 2009., DOI: [10.1029/2008JD011073](https://doi.org/10.1029/2008JD011073)
481
+
482
+ ## Credits
483
+
484
+ #### PyPartMC:
485
+
486
+ authors: [PyPartMC developers](https://github.com/open-atmos/PyPartMC/graphs/contributors)
487
+ funding: [US Department of Energy Atmospheric System Research programme](https://asr.science.energy.gov/), [Polish National Science Centre](https://ncn.gov.pl/en)
488
+ copyright: [University of Illinois at Urbana-Champaign](https://atmos.illinois.edu/)
489
+ licence: [GPL v3](https://www.gnu.org/licenses/gpl-3.0.en.html)
490
+
491
+ #### PartMC:
492
+ authors: [Nicole Riemer](https://www.atmos.uiuc.edu/~nriemer/), [Matthew West](https://lagrange.mechse.illinois.edu/mwest/), [Jeff Curtis](https://publish.illinois.edu/jcurtis2/) et al.
493
+ licence: [GPL v2](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html) or later
494
+
@@ -0,0 +1,91 @@
1
+ PyPartMC/__generate_si.py,sha256=lK50lLa_NDp9E49fc--sjP0rBAqU1uJMxkA3x4XHiO8,813
2
+ PyPartMC/__init__.py,sha256=B5D2ZRXG25q8xZOdEbRD466FHLPgKEAgV43qfP1XQoE,2920
3
+ PyPartMC/_PyPartMC.pyd,sha256=UdosA5tbBThnR_el5xe6TrSjZpJkt_Y1HiowNikRhkI,10086400
4
+ PyPartMC/cmake/PyPartMCConfig.cmake,sha256=3IHucnPRbFfRkUSPypkh9wU5zoq34oX5HmLkDIFbXfA,1933
5
+ PyPartMC/include/aero_data_parameters.hpp,sha256=gmyWvl_TBM7VTSX7nT16AGA5vubBFcIoPmQQ9rT5V3k,451
6
+ PyPartMC/include/bpstd/detail/string_view.inl,sha256=arFu7B4aK991xV9-94NEElMgW_EM4osj5CGODsb_TTE,30229
7
+ PyPartMC/include/bpstd/string_view.hpp,sha256=J6cn-odJSgpreVNxdYbE_z6NTAAYR8HAbQyuD-hZ2-M,20754
8
+ PyPartMC/include/gas_data_parameters.hpp,sha256=uag5jHbusSfjfCMtMorGzWOBUCBehOdh36NzBinG75Q,213
9
+ PyPartMC/include/nanobind_json/nanobind_json.h,sha256=MK6VQjq3TJtmtWTUIcbDB2BV6NtVl6N4IploMSnzmOw,8489
10
+ PyPartMC/include/nlohmann/adl_serializer.hpp,sha256=GmA4-TyJtNZbtMWgAI_RoqAYjVyjBhff8Xj0O2LUB-w,2334
11
+ PyPartMC/include/nlohmann/byte_container_with_subtype.hpp,sha256=15lLIneeHY-eps5fqKHbKffZAurmJTkX24EdkpgiUIE,3636
12
+ PyPartMC/include/nlohmann/detail/abi_macros.hpp,sha256=dsL7UqklzUfcyiuHKClnx4uAB4YwNbAbJASKIsVpY58,3907
13
+ PyPartMC/include/nlohmann/detail/conversions/from_json.hpp,sha256=0jJWiYiI7tpZFlXOo3yuJF7Dt1BpbmRiN-LKatBuYjQ,19377
14
+ PyPartMC/include/nlohmann/detail/conversions/to_chars.hpp,sha256=qI8jRSOYbtdf63FnZUwpHorllRG0AegrOTroq18q1Yg,39680
15
+ PyPartMC/include/nlohmann/detail/conversions/to_json.hpp,sha256=d2KeYdwY2YULlchCYj2fdZ5cDDUkm0J-0kx9B_QCAuY,16720
16
+ PyPartMC/include/nlohmann/detail/exceptions.hpp,sha256=8SxJMvt7ApnwLEnhqsuuE_ID6f617V02MVMiX3kDTAM,9524
17
+ PyPartMC/include/nlohmann/detail/hash.hpp,sha256=QxGQLNTH_76slsnRenfJeqw1rmGb_a_MKUJf4wUKH_0,4145
18
+ PyPartMC/include/nlohmann/detail/input/binary_reader.hpp,sha256=zcXcpiUvo6bJtbgoNOp3_plzVw2lSZ-tj1Bk-YG8nbA,106155
19
+ PyPartMC/include/nlohmann/detail/input/input_adapters.hpp,sha256=gDLSzbpXW3WseJcftZCmiZICRqjoOEoTkQ26_fmKP9M,17894
20
+ PyPartMC/include/nlohmann/detail/input/json_sax.hpp,sha256=e4UecgNCWmf62ZtCOrUdZhKocYCrNRrtaq4fj3BN3jo,22147
21
+ PyPartMC/include/nlohmann/detail/input/lexer.hpp,sha256=-0T8uxzrPLrX-5PQNvCv7gaISOnm1mVJU9xqyRJA2D8,56202
22
+ PyPartMC/include/nlohmann/detail/input/parser.hpp,sha256=KfyfJ2eW-vvBO9D6P_eso2kGHKroWBcJXZ3vd22rq7I,20180
23
+ PyPartMC/include/nlohmann/detail/input/position_t.hpp,sha256=-ATNnH7eOEhaFOPbi-FOHVAuyPuIv08BmeiQyr90I6U,995
24
+ PyPartMC/include/nlohmann/detail/iterators/internal_iterator.hpp,sha256=mj-GcsxRNAI5ugQ-_WqTXFmqb9WO6aQrDj1UhgtQRtk,1106
25
+ PyPartMC/include/nlohmann/detail/iterators/iter_impl.hpp,sha256=3dhLAJFc2yIalefC4dGfsbUJ8Tb41IDW3PP6PJ7ZCRc,24797
26
+ PyPartMC/include/nlohmann/detail/iterators/iteration_proxy.hpp,sha256=EM4bEZ3Z_lmINc4uCOQYoNuHrzWyo4zaO_VXNUM_R8Q,8480
27
+ PyPartMC/include/nlohmann/detail/iterators/iterator_traits.hpp,sha256=jaEN_pyopAenygq4wkRKeg4qbKq4onhvEWwkY0IgbNY,1818
28
+ PyPartMC/include/nlohmann/detail/iterators/json_reverse_iterator.hpp,sha256=A4V0iJqrZ6-CCkCVEv9dELydvw8ShLH6BlgebGNSTJI,3991
29
+ PyPartMC/include/nlohmann/detail/iterators/primitive_iterator.hpp,sha256=31HullOYWDjotm9q8mnA5Qb8YcPB-nLk1ccQ8-PXQZs,3359
30
+ PyPartMC/include/nlohmann/detail/json_custom_base_class.hpp,sha256=I8FdhY0rqGjyDIRoI3soSPUiFDNuICZnQqkVBPwgfNs,1217
31
+ PyPartMC/include/nlohmann/detail/json_pointer.hpp,sha256=7Hip3WbCjnN67GcmO2VuvW7vOIKqpBy3EMQUsK9snSU,38131
32
+ PyPartMC/include/nlohmann/detail/json_ref.hpp,sha256=x8xpEeJfMHiJWzf2L04nnskHC2YhcIXJctcQNFf-O9U,1889
33
+ PyPartMC/include/nlohmann/detail/macro_scope.hpp,sha256=4ILCYFUYzbGWzQiHQg843_huvsINSYu5heAH8DbP-NA,44121
34
+ PyPartMC/include/nlohmann/detail/macro_unscope.hpp,sha256=SKap4TkEEnHe2B7ThPAIQqgFhEbllBhPqXzvaIc1sbM,1297
35
+ PyPartMC/include/nlohmann/detail/meta/call_std/begin.hpp,sha256=uLu0j-mbwiE5o-2oND_eBgUB-V2bXkZoU3oj_0Tl5Zg,470
36
+ PyPartMC/include/nlohmann/detail/meta/call_std/end.hpp,sha256=dPnA7QrjLB4EKgdXB2v64wvxRDZlZ_P5-FHfcNC0080,468
37
+ PyPartMC/include/nlohmann/detail/meta/cpp_future.hpp,sha256=YTq-qgfl0FtjZ4qADLubqBQVoKwqi_yNfRZnFKyu1nU,5349
38
+ PyPartMC/include/nlohmann/detail/meta/detected.hpp,sha256=eNsrA8fSRP1S0pGVfaeybRnfaXy2wd4TwYTepJCvvyU,2179
39
+ PyPartMC/include/nlohmann/detail/meta/identity_tag.hpp,sha256=LU9AwpAV1Tf0a25B2nc-8lFmecH2mhCuDUGubH0Vozk,547
40
+ PyPartMC/include/nlohmann/detail/meta/is_sax.hpp,sha256=CaKuC3UL3Su85287_hCEaF8wlOB4fJtV9VyBI9xKuMs,7119
41
+ PyPartMC/include/nlohmann/detail/meta/std_fs.hpp,sha256=Buh6P-Y3DcUQnyHuqGTObmr63MNJC9PoN8xDwGN4K44,795
42
+ PyPartMC/include/nlohmann/detail/meta/type_traits.hpp,sha256=0MBGcCb6x5YVimWlSiDWShJK1ljSQ5vp0y6tUkvWibE,30249
43
+ PyPartMC/include/nlohmann/detail/meta/void_t.hpp,sha256=4k2h63JQ55U5MsnM7-5UyiF7a4Wi2QgsPCE1cuUMIks,621
44
+ PyPartMC/include/nlohmann/detail/output/binary_writer.hpp,sha256=zITRxjz02Wxhn31-qw6DT-GEP6NZtBxGYq2nQ_EXud0,72990
45
+ PyPartMC/include/nlohmann/detail/output/output_adapters.hpp,sha256=tns1Xt_KWYqbjtQulGuBfKNPtr-CXOdP-ihuDg3dmX0,4214
46
+ PyPartMC/include/nlohmann/detail/output/serializer.hpp,sha256=lLmh0iAtu_FXCeohcUnLOZVWyYQ0F8oaLam134TDwVQ,41151
47
+ PyPartMC/include/nlohmann/detail/string_concat.hpp,sha256=IpbijRm22tRF3mvwIkumu1_8-UwjGamq7jSjZAzk3EQ,6097
48
+ PyPartMC/include/nlohmann/detail/string_escape.hpp,sha256=jFyZeNvzTUxdfPFBocTM-BZiResMri6_jf1bb4Zf_l8,2240
49
+ PyPartMC/include/nlohmann/detail/value_t.hpp,sha256=loJEdZkwNFKx7swn5ctgU2MCdGVWYv7Xizu2fQHKVoU,4444
50
+ PyPartMC/include/nlohmann/json.hpp,sha256=rvk4DAkRertpReUB0sJtx19J_4MeL-_u1ctbBUokYEk,203876
51
+ PyPartMC/include/nlohmann/json_fwd.hpp,sha256=0Wuh8M__29ik5JHQUzBgwjxyyBqQHKhw5PdZ70jW4i8,2616
52
+ PyPartMC/include/nlohmann/ordered_map.hpp,sha256=J34x5P2Y0Te0XPrtUfvXEUwAad4ut21Zew07hWmtX5I,12051
53
+ PyPartMC/include/nlohmann/thirdparty/hedley/hedley.hpp,sha256=i728R7k1xcUHHin2lfy7B-S1KQATm4Q_XMl9dgvTRHc,88113
54
+ PyPartMC/include/nlohmann/thirdparty/hedley/hedley_undef.hpp,sha256=aoltLN-7TLp2D8wtEEAuSPPlUXPLOkL07NkxU1x0gtg,5658
55
+ PyPartMC/include/output_parameters.hpp,sha256=FiRalhC-YTGl9krd-bUs5WqF8gTTLFdMeKZl3jUFe-4,469
56
+ PyPartMC/include/PyPartMC/aero_binned.hpp,sha256=TeU_yy9ALpYYp6hiSmpeJOQSbUDGry89ZhGFU-0xnPA,3408
57
+ PyPartMC/include/PyPartMC/aero_data.hpp,sha256=ZtqQYvbGUGJFfFSLEGW_NfDNH6263rGT-q_8ro6mP20,8977
58
+ PyPartMC/include/PyPartMC/aero_dist.hpp,sha256=tlen_obfI9tVNUb-Ds4OUTcj5RyekWwSNlsB7WixgFE,2499
59
+ PyPartMC/include/PyPartMC/aero_mode.hpp,sha256=7r5ZFP6p_mUXK-fByKX3gPXIYRXjv_qq_IzzceikUR0,10906
60
+ PyPartMC/include/PyPartMC/aero_particle.hpp,sha256=cebstNIlqu1xQVUKs0moqvG46Km1ljWixxewNeZF4O0,13718
61
+ PyPartMC/include/PyPartMC/aero_state.hpp,sha256=5HaYICWKBZ2ydaOCMeSA2SOUBeLoWrOoipcT4juk3kw,18528
62
+ PyPartMC/include/PyPartMC/bin_grid.hpp,sha256=nZrUEjsceoRuNcattdpebQsCBbGvRSgBX6QCI7jmTCs,3808
63
+ PyPartMC/include/PyPartMC/camp_core.hpp,sha256=AKllEo05v14SEnxf1qdnEh8GRWMwfcU2A2uCF4UQ-vQ,1206
64
+ PyPartMC/include/PyPartMC/condense.hpp,sha256=HM9zXLLo7MbtkX7NhC4tUv15rzBVwobl--glEeFmfbI,1143
65
+ PyPartMC/include/PyPartMC/env_state.hpp,sha256=cl7_RDGatp-tEnVz3mtNaq6Tuvoo8xFr7UUW1m4shHA,6742
66
+ PyPartMC/include/PyPartMC/gas_data.hpp,sha256=EZ1d3TtdbCsaGsCsEExY1SyjxNXTIq_3fMXnwzI4N08,3482
67
+ PyPartMC/include/PyPartMC/gas_state.hpp,sha256=DfnbCezdVWOTNSdw6jRgC13PUTZzCqN-HqJlyDQ516o,4230
68
+ PyPartMC/include/PyPartMC/getters.hpp,sha256=Uy-0ZoyDLYep2yqSsOO_O2kGSQUdyQLjMq_x_xvae2s,2323
69
+ PyPartMC/include/PyPartMC/input_guard.hpp,sha256=h4muAMolYlr-dHg3uFMN25SZlNxLX2M_HTNRltxhNMg,4167
70
+ PyPartMC/include/PyPartMC/json_resource.hpp,sha256=YGSY-gBbmzhqISY0vP63doKpRm3N0sa4Bav8XjYjHoU,11283
71
+ PyPartMC/include/PyPartMC/output.hpp,sha256=zwvwm2qvUrjnbwh2nQCT2iBUxGrvIrpA5WP89iyASiQ,2814
72
+ PyPartMC/include/PyPartMC/photolysis.hpp,sha256=PzBbBgxcPqkWWMBrleLKdsOh1wzwqCYtgqKu8hch3PY,1132
73
+ PyPartMC/include/PyPartMC/pmc_resource.hpp,sha256=1ebZmJ8MrcmHWmnGOc43_1jl1KUjB5nFa0l6poyVPhM,1169
74
+ PyPartMC/include/PyPartMC/rand.hpp,sha256=ax6OoBpeTnsaPLWghbZpQtUEvIlTwt2qiNQVBQuv0WM,717
75
+ PyPartMC/include/PyPartMC/run_exact.hpp,sha256=aT83ZRlNYjtFwbsyipNBxNrtmtOiAZroEx98cvnOmqY,1127
76
+ PyPartMC/include/PyPartMC/run_exact_opt.hpp,sha256=jmcfHBtzHV2hhpNdx_NEDCVm8-20osz1CXGDr_Ko8h8,1690
77
+ PyPartMC/include/PyPartMC/run_part.hpp,sha256=ac0RbpdngMh8LO2BOzhPcJhsKm1qNHyyZiijO8QNeLY,2797
78
+ PyPartMC/include/PyPartMC/run_part_opt.hpp,sha256=RsY5SITO4m4Lwys4YL7CVPdWbZn6k7dzOFpeVpLHExo,2702
79
+ PyPartMC/include/PyPartMC/run_sect.hpp,sha256=r4snsVpyQy250bcDgdEbqX5YssTHQpv_xucdGTr_9qg,1122
80
+ PyPartMC/include/PyPartMC/run_sect_opt.hpp,sha256=SrjDYa1xKFwgs1wcC6REG5o_BiBXv2qkpw7h8uS_9cg,1935
81
+ PyPartMC/include/PyPartMC/scenario.hpp,sha256=xE1RpGUhQM1BM0KAmK1Tr7qchgVZMUgglXgWx0YN3so,7381
82
+ PyPartMC/include/PyPartMC/si.hpp,sha256=9lp2qekrYoRpAvsgnShEYGJH6eIlALLAf0zPeBxgxlo,4080
83
+ PyPartMC/include/PyPartMC/util.hpp,sha256=BtF15jziLLXf1Lmu4R5gaw5CWUEDbSyiEJax0Trh3lI,993
84
+ PyPartMC/include/PyPartMC.hpp,sha256=jjwx8m4zswp5TCAoE3QNH48srErhpMeTGwJHRlb6upU,965
85
+ PyPartMC/include/tcb/span.hpp,sha256=eWtU2z61iWTm3TiNUpcctH0SNVM1T41Jy5x1uc8L8lY,18782
86
+ PyPartMC/include/tl/optional.hpp,sha256=CC0jwBXaCF4AHbc8JEu6rUyf4Xy6ObZGOL8Lg8WtsFc,75646
87
+ PyPartMC/lib/libpartmclib.a,sha256=wOByZgph3Cy2M5Sn-ahnesDZ68kzu53A3q576qjj_9g,1044360
88
+ pypartmc-2.1.2.dist-info/METADATA,sha256=_vuWlstp0Rg0ZrDiOVPV3rWnYItKoAWaquiRUcuTZ6k,32600
89
+ pypartmc-2.1.2.dist-info/WHEEL,sha256=zRSxk0lFSz9yrcoNCqCgDrmWhvhsSyignczP3ORAtmA,105
90
+ pypartmc-2.1.2.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
91
+ pypartmc-2.1.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: scikit-build-core 1.0.3
3
+ Root-Is-Purelib: false
4
+ Tag: cp315-cp315-win_amd64
5
+