Metadata-Version: 2.1
Name: pistachio-tm
Version: 0.10.3
Summary: A transfer matrix algorithm and related tools
Home-page: https://github.com/garrekds/pistachio
Author: Garrek Stemo
Author-email: garrekstemo@icloud.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Pistachio

Author: Garrek Stemo\
Affiliation: Nara Institute of Science and Technology\
Date Created: July 5, 2019\
Updated: July 26, 2021

Pistachio implements the 2x2 transfer matrix method in Yeh, P. Optical Waves in Layered Media. (Wiley, 2005).
As of July 2021, it has been almost completely refactored from a command-line application. Classes have been restructured and the whole program has been made into a Python package so that it can be installed and classes and methods can be called from other programs.

Unit tests have been implemented to ensure the reproducibility of the code. Unit tests and integration tests are still in active development with the goal of creating a program that stands up to scientific rigor and reproducibility with a test-driven approach that is lacking in the scientific programming community.

Pistachio uses the new type hinting features introduced in Python 3.9, which helps greatly with writing 
clean, reproducible code. Type hinting also aids readability when distributing sometimes complex
code among the scientific community. 

## Transfer Matrix Method

### Introduction

The transfer matrix module computes transmission and reflection for a multi-layered optical structure using the 2x2 transfer matrix method. The user may create a config file in the yaml format, which may include refractive index data for each layer in separate files. The program uses the multiprocess library for Python to parallelize transfer matrix calculations to distribute calculations for multiple incident angles to processing cores.

### Config files

Config files are stored in the yaml format with configurations for each material layer. At the top, the number of points, minimum, and maximum wavelengths are specified, which are used to generate a list of wavelengths between the minimum and maximum for the simulation. Incident wave properties include the starting and ending incident angle (for angle-tuned calculations), right-traveling wave amplitude, and left-traveling wave amplitude. If `theta_i` (initial angle) and `theta_f` are different, then transfer matrix calculations are carried out for each angle in that range, with the number of angles determined by `num_angles`.

Each layer requires a material name, thickness, and a file containing the refractive index for each wavelength. All values are assumed to be in SI units (i.e. meters instead of nanometers).

#### Example transfer matrix config file

```
num_points: 1000
min_wavelength: 1.0e-6
max_wavelength: 1.0e-5
wave:
	polarization: "s-wave"
	theta_i: 0.0
	theta_f: 30.0
	num_angles: 31
	A0: 1
	B0: 0

layers:
		layer0:
	    material: CaF2
	    thickness: 0
	    refractive_filename: "layer0.csv"
    layer1:
	    material: Au
	    thickness: 10
	    refractive_filename: "layer1.csv"
    layer2:
	    material: Air
	    thickness: 1000
	    wavelength: 1.e-6
	    refractive_index: 1.0003
	    extinction_coeff: 0.0
		layer3
	    material: Au
	    thickness: 10
	    refractive_filename: "layer1.csv"
		layer4:
			material: CaF2
			thickness: 0
			refractive_filename: "layer0.csv"
```

The `refractive_filename` specifies the path where refractive index data is stored, which must be saved as a .csv file with wavelength, refractive index, and extinction coefficient columns.


### Running a transfer matrix simulation

Pistachio may be run from the command line. For example, if you want to run simulation with a p-wave field, you would navigate to the pistachio directory and enter

`python transfer_matrix.py -p config_files/file_name.yaml results`

The `results` directory is any directory where you wish to write the results. When in doubt, run `python transfer_matrix.py -h` to see the types and order of inputs.

Classes and methods may also be called in other programs or in Jupyter Lab, which is now much more convenient and probably the preferred way.


## How to install Pistachio

Make sure you have Python 3, numpy, scipy, and other dependencies in the headers installed.
The easiest way to do this is to install a package manager, like Anaconda.

Then go to the command line. Navigate to the directory where you want to put Pistachio, like `~/projects/`, using the `cd` command. Then enter

`git clone https://github.com/garrekds/pistachio .` 

This is a Python package now, so you can use `pip install .` to install it once you download the source code.
Pistachio has now been published on PyPi.org, so you can also install from there using pip.




