Skip to main content

HolonomyComputer

Struct HolonomyComputer 

Source
pub struct HolonomyComputer {
    pub christoffel: [[[f64; 2]; 2]; 2],
}
Expand description

Approximate holonomy by integrating parallel transport around a small loop.

Uses the formula: Hol(γ) ≈ exp(-∫∫D R^{1}{2 12} du dv) for a 2D manifold with Gaussian curvature K.

Fields§

§christoffel: [[[f64; 2]; 2]; 2]

Christoffel symbols Γ[k][i][j] at the base point

Implementations§

Source§

impl HolonomyComputer

Source

pub fn new(christoffel: [[[f64; 2]; 2]; 2]) -> Self

Source

pub fn parallel_transport_step(&self, v: &[f64; 2], dx: &[f64; 2]) -> [f64; 2]

Parallel transport a 2D vector v along the direction (du, dv) for a small step.

dv^k = -Γ^k_{ij} v^i dx^j

Source

pub fn holonomy_angle_square_loop(&self, eps: f64) -> f64

Approximate holonomy angle around a small square loop of size ε.

Returns the rotation angle φ such that Hol ≈ R(φ). Uses: φ ≈ R^{1}_{2 12} · ε² (area law).

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.