Metadata-Version: 2.1
Name: MSEplots-pkg
Version: 2.4.3
Summary: A package for static energy plots based on MetPy
Home-page: https://github.com/weiming9115/MSEplots
Author: Wei-Ming Tsai
Author-email: wxt108@rsmas.miami.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: metpy

### MSEplots project
#### pip install MSEplots-pkg
![Generic badge](https://img.shields.io/badge/Python3.0-<COLOR>.svg)
![Generic badge](https://img.shields.io/badge/MetPy-<COLOR>.svg)
------
A Python package built for the moist static energy (MSE) analysis of sounding data/ model output which provides required vertical profiles of thermodynamic parameters. 

```python
from MSEplots import plots as mpt
:
mpt.msed_plots(pressure,Temp,q,altitude,ent_rate=np.arange(0,2,0.05),entrain=True)
```
<img src="https://github.com/weiming9115/Working-Space/blob/master/MSEplots_metpy/demo.png" width="550" height="400">

1. Required paramters: Air temperature, Mixing ratio, Pressure, Altitude [optional]. NOT specifically for sounding data!
2. Functions are provided for deriving thermodynamic variables eg. potential tmeperature and static energy. All calculations included depend on the metpy.calc.thermo module.
(https://unidata.github.io/MetPy/latest/_modules/metpy/calc/thermo.html)
3. Plotting options: thermo.plots, theta.plots, mesd_plots and entropy_plots


