Python optical interferometer simulation
Project description
A python package providing the building blocks to simulate the operation of a ground-based optical interferometer perturbed by atmospheric seeing perturbations. It is provided as supplementary material for the book “Practical Optical Interferometry”, and is derived from the code which was used to provide data for many of the figures in the book.
The package includes functions to:
generate simulated atmospheric turbulent wavefront perturbations
correct these perturbations using adaptive optics
combine beams from an arbitrary number of telescopes, with or without spatial filtering, to provide complex fringe visibility measurements.
The code has been written following a functional-programming style (in other words minimising “side-effects” in the code where possible) in order to try and make it modular and extensible.
Requirements
The simulator runs under Python3 and requires numpy. Some of the test code uses astropy for manipulating and saving data tables.
Installation
On unix-like systems do
pip3 install pois
or if that does not work because of file permission errors, then
sudo pip3 install pois
Alternatively download and unpack a copy of this repository and then use
python3 setup.py install
This should install the package into Python path.
Basic usage
An interferometric simulation can be written as a for loop with some custom data processing, for example:
from pois import *
results=[]
for phaseScreens in PhaseScreens(numTelescope=3,
r0=15,
pupilSize=30,
screenSize=1024,
numIter=1000)):
pupils=AdaptiveOpticsCorrect(phaseScreens,pupilSize=30,radialOrder=5)
complexPupils=ComplexPupil(pupils)
fluxes,coherentFluxes=SingleModeCombine(complexPupils)
# process() is a user-written data processing function
results.append(process(fluxes,coherentFluxes))
More example code using the package is in the tests directory. The file tests/test_visibility.py includes a complete simulation for determining visibility losses and single-mode fibre coupling losses as a function of the diameter of the telescopes.
Pronunciation
The package name should be pronounced as it would be in the phrase “petits pois”.
Licencing
The code is licenced under a 2-clause BSD licence (see LICENCE.txt).
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 pois-0.4.0.tar.gz
.
File metadata
- Download URL: pois-0.4.0.tar.gz
- Upload date:
- Size: 189.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95de3c2d34f14af374eeb8dcf3d478429f228f08a96ede283a2e5e87ef3a8b5f |
|
MD5 | 7514a89ff941d09eaca6e011f42b2f67 |
|
BLAKE2b-256 | 47fc7e534ae095032f9ca772b6479c098ad48fa7c60f5e1a56fd23ee106a0a21 |