ppflib 0.1.0

Advanced computational library for Physics-Prime Factorization (PPF): quantum mechanics through number theory, featuring Sign Prime (-1), state space collapse, topological analysis, and IOT geometric realizations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Geometric realizations of factorization state spaces
//!
//! This module implements the geometric aspects of the PPF framework:
//! - IOT (Involuted Oblate Toroidal) metric with critical ratio r/R = 1/30
//! - Tautochrone operators and geodesics
//! - PPF Hilbert space construction
//! - Quantum operators and SU(2) algebra

pub mod iot;
pub mod tautochrone;
pub mod hilbert_space;

pub use iot::*;
pub use tautochrone::*;
pub use hilbert_space::*;