oxiphoton 0.1.1

Pure Rust Computational Photonics & Optical Simulation Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Integrated Photonic Sensors & LiDAR Module
//!
//! Provides simulation and modelling of photonic sensing systems including:
//! - LiDAR (direct ToF, FMCW, photon-counting, scanning)
//! - Optical gyroscopes (FOG, RLG, integrated)
//! - Photonic chemical sensors (evanescent, WGM, SPR)
//! - Photonic inertial sensors (accelerometer, pressure, strain)

pub mod chemical;
pub mod gyroscope;
pub mod inertial;
pub mod lidar;

pub use chemical::*;
pub use gyroscope::*;
pub use inertial::*;
pub use lidar::*;