oxiphysics-core 0.1.0

Core types, traits, and abstractions for the OxiPhysics engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2026 COOLJAPAN OU (Team KitaSan)
// SPDX-License-Identifier: Apache-2.0

//! Tensor algebra operations for continuum mechanics.
//!
//! Provides second-order tensors (`Tensor2`), fourth-order tensors (`Tensor4`),
//! and a Voigt notation helper for symmetric second-order tensors.

#![allow(dead_code)]

mod decomposition;
mod operations;
mod types;

// Re-export all public items
pub use decomposition::*;
pub use operations::*;
pub use types::*;