PHISE (PHotonic Interferometry Simulation for Exoplanets) is a Python package for simulation and analysis of interferometric instruments using layered photonic chips. It provides high-level classes (telescopes, interferometer, kernel nuller, camera, target scene) and numerical modules (propagation, coordinates, MMI recombiners, test statistics) to build scenarios, simulate the instrument chain, and visualize responses (transmission maps, projected baselines, null/dark/bright outputs, etc.).
The repository also ships demo notebooks and a complete documentation
⚠️ Important notePHISE is currently under active development and is still a part of a PhD research project. The API and functionalities may be instable, not correctly documented or change at any time.
- Python 3.11 or upper.
- Main dependencies: numpy, astropy, scipy, matplotlib, numba, ipywidgets, sympy, LRFutils, etc. (handled automatically).
Two installation paths:
- Conda environment (recommended)
conda env create -f environment.yml
conda activate phise- pip editable install (dev mode)
pip install -e .A complete documentation is available at https://phise.readthedocs.io/
- Physical quantities are handled with
astropy.unitsand validated in property setters to ensure unit consistency. - Heavy computations rely on
numpyandnumbawhere appropriate. - High-level methods (
Context) automatically propagate parameter changes (e.g., recompute projected positions and photon flux).
- Lead author: Vincent Foriel.
- If you use PHISE in scientific work, please cite the repository and/or your related publications.
Issues and contributions are welcome. Feel free to propose improvements (docs, tests, examples, new utilities in modules/, etc.) by opening an issue or a pull request.