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)
- 🏁 wet radii equilibration for input dry-size distribution using SciPy's elementwise scalar optimisation
- 🌪️ capability of resolving aerosol activation, deactivation, drop growth, evaporation and ripening
- ⚙️ single-function interface allowing to modify every single constants, and returning a tuple of:
- concentration of activated droplets (at STP)
- maximal supersaturation
- 📈 mulit-modal lognormal (using SciPy's stats routines) spectrum specification (concentration at STP)
- 🧩 effective interfacing options for Matlab, 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 four points motivated the development of this package - 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.
💻 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.6.tar.gz.
File metadata
- Download URL: ccnact-0.0.6.tar.gz
- Upload date:
- Size: 22.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0b2834e2b7eba9519fec031e2f74425db77383dad647b40c1f680983e743491
|
|
| MD5 |
809895c3a509b758ff56aa1492d6e2b5
|
|
| BLAKE2b-256 |
7ce35bf81878453aaf8a47b3908d952fad657bda532b5cfc7d281d0862272152
|
File details
Details for the file ccnact-0.0.6-py3-none-any.whl.
File metadata
- Download URL: ccnact-0.0.6-py3-none-any.whl
- Upload date:
- Size: 20.8 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 |
38ce92766fb1ac130a9722aa233cb4817067bbccbdd918431373ed50afb1fa07
|
|
| MD5 |
b0c91f3ca45d5dcd57980e81b43cae94
|
|
| BLAKE2b-256 |
7addefe8919fdd422a9047f9c093a14d6d6a07f316071cfc8f2d2ccf2bc04a1c
|