KISS SciPy-based CCN activation model
Project description
☁️ KISS SciPy-based CCN activation model
📌 overview
ccnact is a simple, yet complete, adiabatic/hydrostatic air-parcel framework employing
moving-sectional/particle-resolved aerosol-cloud microphysics, featuring:
- 🧮 integration using SciPy's interface to LSODA stiff ODE solver
- 📝 ODE system based on Arabas & Shima 2017 (extended to polydisperse aerosol size spectrum)
- 🏁 κ-Köhler wet radii equilibration of input dry-size spectrum with SciPy's elementwise root finder
- 🌪️ capability of resolving aerosol activation, deactivation, drop growth, evaporation and ripening
- 📈 mulit-modal lognormal (using SciPy's stats routines) spectrum specification (concentration at STP)
- 🔌 portable across platforms and architectures (CI on Linux, macOS & Windows, on Intel & ARM CPUs)
- ⚙️ single-function interface allowing to modify every single constant, and returning a tuple of:
- concentration of activated droplets (at STP)
- maximal supersaturation
- 🧩 effective interfacing options for Matlab, IDL, Julia, etc
- ⚖️ unit-aware implemetation using Pint (dimensional analysis enabled for tests only)
- 🚀 subsecond execution times for common parameter settings
- 🔗 KISS design: depends on SciPy, NumPy & Pint only; single ~500 LOC file (physics + setup + tests)
The last five points were the key motivating factors for the development - the project originated from a search for a simple, lightweight (in dependencies) and fast CCN activation air-parcel model with concise code, automated testing and no hardcoded constants.
💡 example notebooks
💻 notes for users
To install the package, try: pip install ccnact
Using from Python:
from ccnact import parcel
help(parcel)
n_act, s_max = parcel(...)
Interfacing from Matlab (using the built-in Python bridge):
ccnact = py.importlib.import_module('ccnact');
ccnact.parcel(pyargs(...
'MAC', 1,...
'n_bins', int32(100),...
'p', 101300,...
'T', 300,...
'RH', .99,...
'dt', 1,...
'nt', int32(100),...
'w', 2,...
'sigma', 0.072,...
'kappa', py.tuple({1}),...
'meanr', py.tuple({3e-8}),...
'gstdv', py.tuple({1.5}),...
'n_tot', py.tuple({1e9})...
))
⚙ notes for developers
To execute the tests after checking out from git: pip install -e .[dev]; pytest ccnact.py
To set-up pre-commit: pip install pre-commit; pre-commit install
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ccnact-0.0.7.tar.gz.
File metadata
- Download URL: ccnact-0.0.7.tar.gz
- Upload date:
- Size: 34.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbd906a5e3f4137ec24bac90485daacfe1e2f3830e7b2e110b4527e4060a87ba
|
|
| MD5 |
969937425551f1fd532f477339ae6a56
|
|
| BLAKE2b-256 |
9a85b956e9ae63da364d6813e34a55ed7eee635fdc8dceb37e7286df359ae15a
|
File details
Details for the file ccnact-0.0.7-py3-none-any.whl.
File metadata
- Download URL: ccnact-0.0.7-py3-none-any.whl
- Upload date:
- Size: 21.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26c351a2eb4b2cdba102724381de3346e718604ca0637868f970b7f28ce93f30
|
|
| MD5 |
76c8df9d2e966005457a20e7c8cd5953
|
|
| BLAKE2b-256 |
03cbe864be131045eb573d0c3b7010742743edcb1f6f3c972b6d1336cf7e39f7
|