solid-mechanics 0.1.0

Solid mechanics in Rust — stress/strain tensors, beam theory, FEM basics, yield criteria, energy methods
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "solid-mechanics"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Solid mechanics in Rust — stress/strain tensors, beam theory, FEM basics, yield criteria, energy methods"
repository = "https://github.com/SuperInstance/solid-mechanics"

[dependencies]
nalgebra = { version = "0.33", features = ["serde-serialize"] }
serde = { version = "1", features = ["derive"] }

[dev-dependencies]
approx = "0.5"