Tools and Operations for Data, Diagnostics, Light, and other Electromagnetic Radiation
Project description
Toddler: Tools and Operations for Diagnostics, Data, Light, and other Electromagnetic Radiation
Starting physicists are often limited by their data processing abilities. This library makes it so easy a toddler could do it.
Installation
Install from PyPI using PIP:
pip install toddler
Anaconda users should follow this documentation and run conda activate and conda install pip before running the above pip command.
Functionality
This module is split up into physics (e.g. conversion of units) and data processing (e.g. filtering images)
Data
toddler.data.spectrum.Spectrum has the most utility of this library. It makes iterative processing on numpy arrays and its coordinates much simpler. The code below loads data of an optical spectrometer, applies some heavy processing, and plots the result. The equivalent code with out-of-the-box numpy would be much more convoluted.
from toddler.data.spectrum import Spectrum
import matplotlib.pyplot as plt
s = Spectrum.from_file("some_file.csv")
s = s.median(axis=2)
.mean(axis=1)
.slice(lambda_start=534e-9, lambda_end=600e-9)
.filter("movmean", N=5)
.squeeze()
plt.figure()
plt.plot(s.lambdanm, s.data)
plt.show()
Physics
toddler.physics.const constains all scipy constants.
toddler.physics.energy contains utility functions related to energy (e.g. conversion from eV to J)
toddler.physics.flow contains utility functions related to flow (e.g. conversion from slm to mass flux)
toddler.physics.kinetics is an empty work-in-progress.
toddler.physics.light contains utility functions related to the intensity and unit of light (e.g. conversion from wavenumbers to wavelength)
toddler.physics.thermodynamics contains utilities for thermodynamic properties (e.g. pressure to gas density)
toddler.physics.transport is a work-in-progress.
See also
For other tools for researchers and scientists, see
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
File details
Details for the file toddler-0.1.tar.gz.
File metadata
- Download URL: toddler-0.1.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02cdd1be015006def53369cb55d798480ae04da0118cd9e1ff7fe77dd795e67a
|
|
| MD5 |
8309a8a965a952f9ffa9842ad9668fb5
|
|
| BLAKE2b-256 |
4286ba2093e45346957a0db231ca5fdc480764b88daf455ee2b9fd5360d82160
|