Kinetic model of particle evaporation
Project description
pyvap models evaporation of components from a multicomponent spherical particle. The model follows the treatment of Maxwellian flux given in Atmospheric Chemistry & Physics by Seinfeld and Pandis. The model is written in Python 3, with Scipy’s ode solver.
Usage
Example code to model the evaporation of an equimolar mixture of polyethylene trimer and hexamer (PEG-3 and PEG-6) in a particle with starting radius 5 micron, and create a figure of the output:
import pyvap import matplotlib.pyplot as plt import numpy as np # define model parameters peg3 = {"name": "PEG-3", "Dg": 5.95e-6, "M": 0.1502, "rho": 1108.0, "cinf": 0, "p298": 6.68e-2, "delh": 78.3e+3} peg6 = {"name": "PEG-6", "Dg": 4.26e-6, "M": 0.2823, "rho": 1180.0, "cinf": 0, "p298": 3.05e-5, "delh": 102.1e+3} cmpds = [peg3, peg6] # equimolar mixture of PEG-3 and PEG-6 comp = [0.5, 0.5] r_init = 5e-6 # starting radius, m time = 2*60*60 # integration time, s numpts = 2000 # number of points to integrate temp = 298 # K # run model model = pyvap.analyze_evap(cmpds, comp, r_init, time, numpts, temp, makefig=True) # display generated figure during, e.g., interactive ipython session plt.show() # save generated figure evap_fig, (evap_ax0, evap_ax1) = model["evap_fig"] evap_fig.savefig("evaporation.png") # save csv of evaporation model output (no. of molecules of each component, # at each timestep) np.savetxt("evaporation.csv", model["evap_a"], delimiter=",")
Installation
Install using pip.
Install from PyPI:
pip install pyvap
Install most recent Github commit (stability not guaranteed):
pip install git+https://github.com/awbirdsall/pyvap
Dependencies
Tested on Python 2.7 and 3.5.
Requires numpy, scipy, and matplotlib>=1.5 (automatically handled if using pip to install). I recommend using conda to install the Scipy stack on a Windows machine if pip is having issues.
Running the tests requires pytest.
Testing
Tests are located in the tests/ subfolder and can be run using pytest. Tests also require numpy.
Development
Posting issues or pull requests to the github page is welcome!
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file pyvap-0.1.1.tar.gz
.
File metadata
- Download URL: pyvap-0.1.1.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 624d415616079d01d70f1cf886470b05b16c4a37bde4ee3ca7e54b2adcbd26bd |
|
MD5 | c398eed3dee9d28ae149622b2b79d6b9 |
|
BLAKE2b-256 | 49f655b8c999d712468f8aad64572313aa593a2b258e6450dd71a23f8d6440a6 |
File details
Details for the file pyvap-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: pyvap-0.1.1-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b14e63a39c63bc474c20be9b6a1f520775f68ae55d68261e61c60851fb6b3cd |
|
MD5 | 4c247b4389a51b52a0da7eccfb0ea6e0 |
|
BLAKE2b-256 | 04b18a058a3061963d1f9f7ecd0a886ac94467f950e527098d07270b4972b571 |