Density, magnetic permeability etc. for a range of materials.
Project description
materials is a database of physical and chemical data, possibly with temperature dependence, of various more or less common materials. All data are given in SI units.
For example, to plot the density of various materials between 274 and 370 K you can do
import materials
import matplotlib.pyplot as plt
import numpy
T = numpy.linspace(274.0, 370.0, num=100)
rho_air = materials.air.density(T)
rho_argon = materials.argon.density(T)
rho_copper = materials.copper.density(T)
rho_water = materials.water.density(T)
plt.semilogy(T, rho_copper, label='copper')
plt.semilogy(T, rho_water, label='water')
plt.semilogy(T, rho_argon, label='argon')
plt.semilogy(T, rho_air, label='air')
plt.title('densities')
plt.xlabel('temperature (K)')
plt.ylabel('density (kg/m^3)')
plt.legend()
plt.show()
Installation
materials is available from the Python Package Index, so simply type
pip install -U materials
to install or upgrade.
Testing
To run the materials unit tests, check out this repository and type
pytest
Distribution
To create a new release
bump the __version__ number,
publish to PyPi and GitHub:
make publish
License
materials is published under the MIT license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for materials-0.1.5-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f945d558e3598e78e40799ab314c098ef039137fc82f2eb51dff8b847eb81c5c |
|
MD5 | e291eaca3fe8789c776ce98804d9e032 |
|
BLAKE2b-256 | 0c835e043c0174ffdc031c4f50faf3c374b004aaaeecea1f06a2a7e67f1d2d0a |