A package for refractive index values.
Project description
PyOptik is a powerful Python tool designed to import refractive indexes and extinction coefficients for various materials across different wavelengths. The data provided by PyOptik can be used in numerous applications, including simulating light interactions with particles. All data is sourced from the reputable RefractiveIndex.INFO database.
Testing |
|||
---|---|---|---|
Package |
|||
Meta |
Features
Comprehensive Database Access: Seamlessly import refractive index and extinction coefficient data for a wide range of materials.
Simulation Ready: Ideal for light-matter interaction simulations, particularly in optics and photonics.
Simple API: Easy-to-use API that integrates well with other Python libraries.
Open Source: Fully open-source.
Installation
To install PyOptik, simply use pip or conda:
pip install PyOptik
conda install pyoptik
Usage
After installing PyOptik, you can easily access material properties:
from PyOptik import Material
# Access the refractive index of BK7 glass
bk7 = Material.BK7
n = bk7.compute_refractive_index(0.55e-6)
print(f"Refractive index at 0.55 µm: {n}")
Example
Here is a quick example demonstrating how to use PyOptik to retrieve and plot the refractive index of a material:
import numpy as np
from PyOptik import Material
# Define wavelength range
wavelengths = np.linspace(0.3e-6, 2.5e-6, 100)
# Retrieve refractive index for BK7 glass
bk7 = Material.BK7
n_values = bk7.compute_refractive_index(wavelengths)
# Plot the results
bk7.plot()
This code produces the following figure:
You can also add a custom element to your library providing a URL from refractiveindex.info website.
from PyOptik.utils import download_yml_file
from PyOptik.directories import sellmeier_data_path # or tabulated_data_path for tabulated elements
download_yml_file(
filename='test',
url='https://refractiveindex.info/database/data-nk/main/H2O/Daimon-19.0C.yml',
location=tabulated_data_path
)
Evidently, you can also remove element from the library using as follows:
from PyOptik.utils import remove_element
remove_element(filename='test', location='any') # location can be "any", "sellmeier" or "tabulated"
Testing
To test locally after cloning the GitHub repository, install the dependencies and run the tests:
git clone https://github.com/MartinPdeS/PyOptik.git
cd PyOptik
pip install .
pytest
Contributing
PyOptik is open to contributions. Whether you’re fixing bugs, adding new features, or improving documentation, your help is welcome! Please feel free to fork the repository and submit pull requests.
Contact Information
As of 2024, PyOptik is still under development. If you would like to collaborate, it would be a pleasure to hear from you. Contact me at:
Author: Martin Poinsinet de Sivry-Houle
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 pyoptik-1.6.5.post0.tar.gz
.
File metadata
- Download URL: pyoptik-1.6.5.post0.tar.gz
- Upload date:
- Size: 1.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1205fae48058987e2b7f6d84f68ab62fa259da7a95d890019efda51df99ef70 |
|
MD5 | 8593ef5d9c67dca75a0a29b8f364c3f2 |
|
BLAKE2b-256 | fdb297a7048627af00d8e4cf31f2b6f2147f9a353437c3d18749c863f7d52bf5 |
File details
Details for the file PyOptik-1.6.5.post0-py3-none-any.whl
.
File metadata
- Download URL: PyOptik-1.6.5.post0-py3-none-any.whl
- Upload date:
- Size: 41.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd6f1266bb9d7600714db0b9799e437f7ebe5035de41def09b6f81acc4c02544 |
|
MD5 | d42ce7075fc3e9e3d876f999dd3cac88 |
|
BLAKE2b-256 | cba2a5a4bca03182abd75a9a5b5cee3e8cdab9bd3196b861acd463c51625f2ee |