PyPartMC 2.0.0rc6__cp312-cp312-macosx_13_0_x86_64.whl → 2.0.0rc8__cp312-cp312-macosx_13_0_x86_64.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.
Potentially problematic release.
This version of PyPartMC might be problematic. Click here for more details.
- PyPartMC/_PyPartMC.abi3.so +0 -0
- {pypartmc-2.0.0rc6.dist-info → pypartmc-2.0.0rc8.dist-info}/METADATA +14 -9
- {pypartmc-2.0.0rc6.dist-info → pypartmc-2.0.0rc8.dist-info}/RECORD +5 -5
- {pypartmc-2.0.0rc6.dist-info → pypartmc-2.0.0rc8.dist-info}/WHEEL +0 -0
- {pypartmc-2.0.0rc6.dist-info → pypartmc-2.0.0rc8.dist-info}/licenses/LICENSE +0 -0
PyPartMC/_PyPartMC.abi3.so
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyPartMC
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.0rc8
|
|
4
4
|
Summary: Python interface to PartMC
|
|
5
5
|
Author-Email: "https://github.com/open-atmos/PyPartMC/graphs/contributors" <nriemer@illinois.edu>
|
|
6
6
|
License-Expression: GPL-3.0
|
|
@@ -117,6 +117,11 @@ pip install PyPartMC[examples]
|
|
|
117
117
|
[](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/cloud_parcel.ipynb)
|
|
118
118
|
[](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/cloud_parcel.ipynb)
|
|
119
119
|
[](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
|
|
120
|
+
- Immersion freezing example:
|
|
121
|
+
[](https://github.com/open-atmos/PyPartMC/blob/main/examples/immersion_freezing.ipynb)
|
|
122
|
+
[](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/immersion_freezing.ipynb)
|
|
123
|
+
[](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/immersion_freezing.ipynb)
|
|
124
|
+
[](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
|
|
120
125
|
- 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/):
|
|
121
126
|
[](https://github.com/open-atmos/PyPartMC/blob/main/examples/additive_coag_comparison.ipynb)
|
|
122
127
|
[](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/additive_coag_comparison.ipynb)
|
|
@@ -159,9 +164,9 @@ import PyPartMC as ppmc
|
|
|
159
164
|
from PyPartMC import si
|
|
160
165
|
|
|
161
166
|
aero_data = ppmc.AeroData((
|
|
162
|
-
# [density, ions in solution, molecular weight, kappa]
|
|
163
|
-
{"OC": [1000 *si.kg/si.m**3, 0, 1e-3 *si.kg/si.mol, 0.001]},
|
|
164
|
-
{"BC": [1800 *si.kg/si.m**3, 0, 1e-3 *si.kg/si.mol, 0]},
|
|
167
|
+
# [density, ions in solution, molecular weight, kappa, abifm_m, abifm_c]
|
|
168
|
+
{"OC": [1000 *si.kg/si.m**3, 0, 1e-3 *si.kg/si.mol, 0.001, 0, 0]},
|
|
169
|
+
{"BC": [1800 *si.kg/si.m**3, 0, 1e-3 *si.kg/si.mol, 0, 0 , 0]},
|
|
165
170
|
))
|
|
166
171
|
|
|
167
172
|
aero_dist = ppmc.AeroDist(
|
|
@@ -202,9 +207,9 @@ ppmc = pyimport("PyPartMC")
|
|
|
202
207
|
si = ppmc["si"]
|
|
203
208
|
|
|
204
209
|
aero_data = ppmc.AeroData((
|
|
205
|
-
# (density, ions in solution, molecular weight, kappa)
|
|
206
|
-
Dict("OC"=>(1000 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0.001)),
|
|
207
|
-
Dict("BC"=>(1800 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0))
|
|
210
|
+
# (density, ions in solution, molecular weight, kappa, abifm_m, abifm_c)
|
|
211
|
+
Dict("OC"=>(1000 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0.001, 0, 0)),
|
|
212
|
+
Dict("BC"=>(1800 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0, 0, 0))
|
|
208
213
|
))
|
|
209
214
|
|
|
210
215
|
aero_dist = ppmc.AeroDist(aero_data, (
|
|
@@ -245,8 +250,8 @@ ppmc = py.importlib.import_module('PyPartMC');
|
|
|
245
250
|
si = py.importlib.import_module('PyPartMC').si;
|
|
246
251
|
|
|
247
252
|
aero_data = ppmc.AeroData(py.tuple({ ...
|
|
248
|
-
py.dict(pyargs("OC", py.tuple({1000 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0.001}))), ...
|
|
249
|
-
py.dict(pyargs("BC", py.tuple({1800 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0}))) ...
|
|
253
|
+
py.dict(pyargs("OC", py.tuple({1000 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0.001, 0, 0}))), ...
|
|
254
|
+
py.dict(pyargs("BC", py.tuple({1800 * si.kg/si.m^3, 0, 1e-3 * si.kg/si.mol, 0, 0, 0}))) ...
|
|
250
255
|
}));
|
|
251
256
|
|
|
252
257
|
aero_dist = ppmc.AeroDist(aero_data, py.tuple({ ...
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
pypartmc-2.0.0rc8.dist-info/RECORD,,
|
|
2
|
+
pypartmc-2.0.0rc8.dist-info/WHEEL,sha256=tD0eQtOb7VxpRfRxijLoH4fSOOJJQtqT7I2fSx0WLOs,142
|
|
3
|
+
pypartmc-2.0.0rc8.dist-info/METADATA,sha256=nexo9uQ6kcTv0_zN4XYMx-LOCJPLdVNtdVMF8vo9qWQ,28527
|
|
4
|
+
pypartmc-2.0.0rc8.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
1
5
|
PyPartMC/__init__.py,sha256=iVz2ccwCEvjPu70_Uv0IKVC_fqYO248vWLunJ75ovok,3438
|
|
2
|
-
PyPartMC/_PyPartMC.abi3.so,sha256=
|
|
6
|
+
PyPartMC/_PyPartMC.abi3.so,sha256=QFXVCvWWpbw9PrD66aM8OvsG0M0o1iQgZ4HM50JsG7A,8520752
|
|
3
7
|
PyPartMC/.dylibs/libgfortran.5.dylib,sha256=EQdwib-rcZOmroTT5xKULVdXgX_ox4ctFfc3ncRyVOQ,3988672
|
|
4
8
|
PyPartMC/.dylibs/libquadmath.0.dylib,sha256=Ljr4W0s6meK2zWD_sBfgU8kBF2YSgGkZraoYwQ4QH1k,379200
|
|
5
9
|
PyPartMC/.dylibs/libgcc_s.1.1.dylib,sha256=0FfRvoVbRmONLhY4IEsrMK9Mcargq5EQycdrN0f_hEc,266112
|
|
6
|
-
pypartmc-2.0.0rc6.dist-info/RECORD,,
|
|
7
|
-
pypartmc-2.0.0rc6.dist-info/WHEEL,sha256=tD0eQtOb7VxpRfRxijLoH4fSOOJJQtqT7I2fSx0WLOs,142
|
|
8
|
-
pypartmc-2.0.0rc6.dist-info/METADATA,sha256=94HCts0iFfrn9u_An5-VJ697MY56vrS36x4LcRc_ApI,27640
|
|
9
|
-
pypartmc-2.0.0rc6.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
File without changes
|
|
File without changes
|