Skip to main content

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

  • wedme: Journal-quality stylesheets for papers, posters and presentations
  • pypdfplot: Embedding in a figure its generating Pythons script.

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

toddler-0.1.1.tar.gz (19.4 kB view details)

Uploaded Source

File details

Details for the file toddler-0.1.1.tar.gz.

File metadata

  • Download URL: toddler-0.1.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

Hashes for toddler-0.1.1.tar.gz
Algorithm Hash digest
SHA256 5d031b05ba37cc228fe7403b1096db40ba5b367ae56eec57e0f493fd2a83d309
MD5 d114f00ec07844b7a52cd5ffa68e5cf6
BLAKE2b-256 87953891452bcf7a6b46e287b901e24a002114cd614e047605ee3c1c8bb21295

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page