# ๐ spintronics
A pure Rust library for simulating spin dynamics, spin current generation, and conversion phenomena in magnetic and topological materials.
**Inspired by the pioneering work of Prof. Eiji Saitoh's Group (University of Tokyo / RIKEN CEMS)**
[]()
[]()
[]()
## ๐ Overview
`spintronics` is a comprehensive Rust crate for simulating spintronics and quantum materials phenomena. Built on the `scirs2` scientific computing ecosystem, it leverages Rust's type safety and zero-cost abstractions to deliver fast, safe, and physically correct simulations of:
- **Spin Pumping & Transport**: Generation and propagation of spin currents
- **Spin-Charge Conversion**: Inverse Spin Hall Effect (ISHE), Spin Seebeck Effect (SSE)
- **Magnetization Dynamics**: Landau-Lifshitz-Gilbert (LLG) equation solvers
- **Topological Phenomena**: Skyrmions, domain walls, topological charges
- **Nanomechanical Coupling**: Barnett effect, Einstein-de Haas effect
- **Physical Reservoir Computing**: Magnon-based neuromorphic computing
- **Cavity Magnonics**: Magnon-photon hybrid systems
*"Python loops are too slow, but C++ memory management is exhausting"* - This library is designed for researchers and students who want the performance of compiled code with the safety of Rust.
## ๐ Development Status
**Current Version**: 0.1.0 โ
**PRODUCTION READY**
**First Release**: 1st December, 2025
- โ
**14 Implemented Modules**: Comprehensive physics coverage from fundamentals to advanced phenomena
- โ
**60+ Source Files**: Well-organized, modular codebase
- โ
**7 Working Examples**: Practical demonstrations including FEM micromagnetics
- โ
**391 Tests Passing**: 351 unit tests + 40 doc tests with zero warnings
- โ
**5 Experimental Validations**: Against landmark papers (Saitoh 2006, Woo 2016, etc.)
- โ
**40 Comprehensive Doc Tests**: With LaTeX equations and runnable examples
- โ
**WebAssembly Support**: Browser-based simulations ready
- โ
**Memory Optimized**: 99% allocation reduction in hot paths
- โ
**Release Build**: Successfully compiles with optimizations
## โจ Key Features
### Performance & Safety
- โก **High Performance**: Optimized numerical kernels in pure Rust with SIMD support
- ๐ก๏ธ **Type Safety**: Rust's ownership system prevents spin/angular momentum "disappearance" at compile time
- ๐ **Memory Safe**: No segfaults, no data races, no undefined behavior
- ๐ฏ **Zero-Cost Abstractions**: Physical abstractions compile down to efficient machine code
### Scientific Computing
- ๐ **Physics-Aligned Architecture**: Code structure directly maps to Hamiltonians and transport equations
- ๐งฎ **Validated Models**: Implementations based on peer-reviewed experimental papers
- ๐ **Reproducible Results**: Deterministic simulations with controlled random seeds
- ๐ฌ **Experimental Validation**: Examples reproduce published experimental results
### Developer Experience
- ๐ **Well Documented**: Comprehensive doc comments with LaTeX equations
- ๐งช **Thoroughly Tested**: Unit tests for physical correctness
- ๐ง **Minimal Dependencies**: Fast compilation, easy integration
- ๐ **Ecosystem Integration**: Part of the `scirs2` scientific computing suite
## ๐ Key References
- E. Saitoh et al., "Conversion of spin current into charge current at room temperature: Inverse spin-Hall effect", *Appl. Phys. Lett.* **88**, 182509 (2006)
- K. Uchida et al., "Observation of the spin Seebeck effect", *Nature* **455**, 778-781 (2008)
## ๐ฆ Implemented Modules
The library is organized into 14 physics-focused modules:
| **constants** | Physical Constants | โ, ฮณ, e, ฮผ_B, k_B |
| **vector3** | 3D Vector Math | Optimized for spin/magnetization operations |
| **material** | Material Properties | Ferromagnets (YIG, Py), interfaces, spin mixing conductance |
| **dynamics** | Magnetization Dynamics | Landau-Lifshitz-Gilbert equation solver |
| **transport** | Spin Transport | Spin pumping (Saitoh 2006), diffusion equations |
| **effect** | Spin-Charge Conversion | ISHE, SSE (Uchida, Saitoh et al., Nature 2008) |
| **magnon** | Magnon Propagation | Spin wave dynamics, spin chains, magnon detection |
| **thermo** | Thermoelectric Effects | Anomalous Nernst, thermal magnons, multilayers |
| **texture** | Magnetic Textures | Skyrmions, domain walls, topological charge calculation |
| **circuit** | Spin Circuit Theory | Resistor networks, spin accumulation |
| **fluid** | Spin-Vorticity Coupling | Barnett effect in liquid metals |
| **mech** | Nanomechanical Spintronics | Barnett, Einstein-de Haas, cantilever coupling |
| **ai** | Physical Reservoir Computing | Magnon dynamics for neuromorphic computing |
| **afm** | Antiferromagnetic Dynamics | THz spintronics (NiO, MnFโ, etc.) |
| **stochastic** | Thermal Fluctuations | Finite-temperature effects, Langevin dynamics |
| **cavity** | Cavity Magnonics | Magnon-photon hybrid quantum systems |
### Module Architecture
```
spintronics/
โโโ lib.rs # Main library entry point
โโโ prelude.rs # Convenient imports
โโโ constants.rs # Physical constants (โ, ฮณ, e, ฮผ_B, k_B)
โโโ vector3.rs # 3D vector operations
โโโ material/ # Material properties & parameters
โ โโโ mod.rs
โ โโโ ferromagnet.rs # YIG, Py, Fe, Co, Ni
โ โโโ interface.rs # Spin interfaces (YIG/Pt, etc.)
โโโ dynamics/ # Time evolution & solvers
โ โโโ mod.rs
โ โโโ llg.rs # LLG equation solver
โโโ transport/ # Spin current transport
โ โโโ mod.rs
โ โโโ pumping.rs # Spin pumping mechanism
โ โโโ diffusion.rs # Spin diffusion equations
โโโ effect/ # Spin-charge conversion effects
โ โโโ mod.rs
โ โโโ ishe.rs # Inverse Spin Hall Effect
โ โโโ sse.rs # Spin Seebeck Effect
โโโ magnon/ # Magnon physics
โ โโโ mod.rs
โ โโโ solver.rs # Magnon propagation solver
โ โโโ chain.rs # Spin chain dynamics
โโโ thermo/ # Thermoelectric phenomena
โ โโโ mod.rs
โ โโโ ane.rs # Anomalous Nernst Effect
โ โโโ magnon.rs # Thermal magnon transport
โ โโโ peltier.rs # Spin Peltier effect
โโโ texture/ # Magnetic texture & topology
โ โโโ mod.rs
โ โโโ skyrmion.rs # Skyrmion dynamics
โ โโโ domain_wall.rs # Domain wall motion
โ โโโ topology.rs # Topological charge calculation
โโโ circuit/ # Spin circuit elements
โ โโโ mod.rs
โ โโโ resistor.rs # Spin resistors
โ โโโ network.rs # Circuit networks
โ โโโ accumulation.rs # Spin accumulation
โโโ fluid/ # Fluid spintronics
โ โโโ mod.rs
โ โโโ barnett.rs # Barnett effect in fluids
โโโ mech/ # Nanomechanical coupling
โ โโโ mod.rs
โ โโโ barnett_effect.rs # Mechanical rotation โ magnetization
โ โโโ einstein_de_haas.rs # Angular momentum transfer
โ โโโ cantilever.rs # Cantilever resonator
โ โโโ coupled_dynamics.rs # Coupled magneto-mechanical systems
โโโ ai/ # Physical reservoir computing
โ โโโ mod.rs
โ โโโ reservoir.rs # Magnon-based computing
โโโ afm/ # Antiferromagnetic spintronics
โ โโโ mod.rs
โ โโโ antiferromagnet.rs # AFM dynamics
โโโ stochastic/ # Stochastic processes
โ โโโ mod.rs
โ โโโ thermal.rs # Thermal fluctuations
โโโ cavity/ # Cavity magnonics
โโโ mod.rs
โโโ hybrid.rs # Magnon-photon coupling
```
## Quick Start
```rust
use spintronics::prelude::*;
// Setup materials (YIG/Pt system)
let yig = Ferromagnet::yig();
let interface = SpinInterface::yig_pt();
let pt_strip = InverseSpinHall::platinum();
// Initialize magnetization state
let m = Vector3::new(1.0, 0.0, 0.0);
let h_ext = Vector3::new(0.0, 0.0, 1.0);
// Solve LLG equation
let dm_dt = calc_dm_dt(m, h_ext, GAMMA, yig.alpha);
// Calculate spin pumping current
let js = spin_pumping_current(&interface, m, dm_dt);
// Convert to electric field via ISHE
let e_field = pt_strip.convert(interface.normal, js);
```
## ๐ฏ Installation
Add this to your `Cargo.toml`:
```toml
[dependencies]
spintronics = "0.1.0"
```
Or install directly from the repository:
```bash
git clone https://github.com/cool-japan/spintronics.git
cd spintronics
cargo build --release
```
## ๐ก Examples
The library includes 6 comprehensive examples demonstrating various spintronics phenomena:
### 1. YIG/Pt Spin Pumping + ISHE
```bash
cargo run --release --example yig_pt_pumping
```
Reproduces the landmark Saitoh et al. (2006) experiment:
- Ferromagnetic resonance in YIG
- Spin current generation via spin pumping
- Voltage detection via inverse spin Hall effect in Pt
### 2. Magnon Propagation
```bash
cargo run --release --example magnon_propagation
```
Simulates magnon dynamics and spin wave propagation:
- Spin chain evolution
- Magnon dispersion relations
- Energy and momentum conservation
### 3. Advanced Spintronics Phenomena
```bash
cargo run --release --example advanced_spintronics
```
Demonstrates multiple advanced effects:
- Spin Seebeck effect simulation
- Thermal spin transport
- Multi-material heterostructures
### 4. Magneto-Mechanical Coupling
```bash
cargo run --release --example mech_coupling
```
Explores angular momentum transfer between mechanical and spin systems:
- Barnett effect (rotation โ magnetization)
- Einstein-de Haas effect (magnetization โ rotation)
- Coupled dynamics in nanomechanical resonators
### 5. Fluid Spintronics
```bash
cargo run --release --example fluid_barnett
```
Simulates spin-vorticity coupling in liquid metals:
- Barnett effect in flowing conductors
- Vorticity-induced magnetization
- Applications to fluid-based spin generation
### 6. Physical Reservoir Computing
```bash
cargo run --release --example reservoir_computing
```
Demonstrates neuromorphic computing with magnon dynamics:
- Magnon-based information processing
- Temporal pattern recognition
- Physical implementation of reservoir computing
### Running All Examples
```bash
# Run all examples in sequence
for example in yig_pt_pumping magnon_propagation advanced_spintronics \
mech_coupling fluid_barnett reservoir_computing; do
cargo run --release --example $example
done
```
## ๐งช Testing
Run the full test suite:
```bash
cargo test
```
Run tests with output:
```bash
cargo test -- --nocapture
```
Run tests for a specific module:
```bash
cargo test dynamics::
cargo test transport::
```
### Test Coverage
All modules include comprehensive tests covering:
- โ
**Physical Correctness**: Conservation laws, symmetries, gauge invariance
- โ
**Edge Cases**: Zero fields, parallel/antiparallel configurations, boundary conditions
- โ
**Material Properties**: Validated against literature values
- โ
**Numerical Stability**: Convergence tests, stability analysis
- โ
**Integration Tests**: Multi-module physics workflows
## โก Performance
Rust's zero-cost abstractions and compile-time optimizations deliver significant performance improvements over interpreted languages:
### Benchmark Results (Preliminary)
| LLG Solver (N=1000 steps) | 450 ms | 8.5 ms | **52x** |
| Skyrmion Number Calculation | 120 ms | 1.2 ms | **100x** |
| Spin Chain Evolution | 890 ms | 15 ms | **59x** |
| Thermal Noise Generation | 340 ms | 6.8 ms | **50x** |
*Note: Benchmarks performed on Intel Core i7 @ 3.5GHz. Detailed benchmark suite in development.*
### Performance Features
- ๐ **SIMD Vectorization**: Automatic vectorization of array operations
- ๐ **Memory Efficiency**: Stack allocation and optimal cache usage
- โ๏ธ **Compile-Time Optimization**: Link-time optimization (LTO) enabled
- ๐ฏ **Zero-Copy Operations**: Efficient data handling without unnecessary allocations
- ๐งต **Future Parallelization**: Architecture ready for multi-threading
## ๐ง Technical Stack
### Dependencies
Minimal dependency footprint for fast compilation and easy integration:
```toml
[dependencies]
scirs2-core = { version = "0.1.0-rc.2", features = ["random"] }
```
**scirs2-core** provides:
- Random number generation (RNG)
- Statistical distributions (Normal, Uniform, etc.)
- Physical computing utilities
- Compatible with the broader `scirs2` scientific computing ecosystem
### System Requirements
- **Rust**: 1.70+ (2021 edition)
- **OS**: Linux, macOS, Windows
- **Architecture**: x86_64, ARM64 (Apple Silicon supported)
## ๐ค Contributing
We welcome contributions from physicists and developers! Whether you're experienced with Rust or just getting started, there are many ways to contribute.
### Getting Started
1. **Fork and Clone**
```bash
git clone https://github.com/cool-japan/spintronics.git
cd spintronics
```
2. **Build and Test**
```bash
cargo build --release
cargo test
```
3. **Run Examples**
```bash
cargo run --release --example yig_pt_pumping
```
### Good First Issues ๐ฐ
Perfect for newcomers to the project:
1. **Add Material Parameters**
- Add CoFeB, Permalloy, or other magnetic materials to `src/material/ferromagnet.rs`
- Include references to experimental papers
2. **Improve Documentation**
- Add LaTeX equations to doc comments
- Write examples demonstrating specific physics concepts
- Improve README with additional use cases
3. **Implement New Physics**
- Edelstein effect (spin-charge conversion in non-centrosymmetric systems)
- Spin Nernst effect (thermal gradient โ transverse spin current)
- Topological Hall effect (skyrmion-induced Hall voltage)
4. **Write Tests**
- Physics validation tests comparing to experiments
- Edge case tests for numerical stability
- Integration tests for multi-module workflows
5. **Create Examples**
- Reproduce experimental results from literature
- Educational examples for teaching spintronics
- Benchmark comparisons with other tools
### Contribution Guidelines
- **Physics First**: Validate against physical intuition and experiments
- **Document Equations**: Include LaTeX equations and paper references in doc comments
- **Type Safety**: Use Rust's type system to prevent unphysical states
- **Test Thoroughly**: Add tests for both correctness and edge cases
- **Follow Style**: Run `cargo fmt` and fix `cargo clippy` warnings
- **Write Clear Commits**: Explain the physics and implementation
### Code Style
```bash
# Format code
cargo fmt
# Check for common issues
cargo clippy
# Run all checks
cargo fmt && cargo clippy && cargo test
```
## ๐ WebAssembly Support
Run spintronics simulations in your browser! The library compiles to WebAssembly for interactive browser-based physics simulations.
### Building for WASM
```bash
# Install wasm-pack (one-time setup)
cargo install wasm-pack
# Build the WASM package
wasm-pack build --features wasm --target web
# Or use the convenience script
./build-wasm.sh
```
### Running the Demo
```bash
cd wasm-demo
python3 -m http.server 8080
# Open http://localhost:8080 in your browser
```
### Features
- **Real-time LLG Solver**: Watch magnetization precess in response to applied fields
- **Spin Chain Simulation**: Observe magnon propagation through coupled spins
- **Spin Hall Calculator**: Compute spin currents from charge currents
- **Interactive Controls**: Adjust fields, damping, and material parameters in real-time
- **3D Visualization**: Canvas-based rendering with x-y projection and z-component indicator
### JavaScript Usage
```javascript
import init, { SpinSimulator } from './pkg/spintronics.js';
async function run() {
await init();
// Create a single-spin simulator
const sim = new SpinSimulator();
sim.set_field(1000, 0, 10000); // Hx, Hy, Hz in A/m
// Run simulation
for (let i = 0; i < 1000; i++) {
sim.step(0.01); // 0.01 ns time step
console.log(`mx=${sim.get_mx()}, my=${sim.get_my()}, mz=${sim.get_mz()}`);
}
}
```
See `wasm-demo/` directory for complete interactive examples.
## ๐ฃ๏ธ Roadmap
### Version 0.1.0 โ
**100% COMPLETE!** ๐
**Core Physics Effects** โ
**COMPLETE**
- โ
Spin-Orbit Torque (SOT): Field-like and damping-like components
- โ
Dzyaloshinskii-Moriya Interaction (DMI): Interface and bulk contributions
- โ
Edelstein Effect: Spin-charge conversion in non-centrosymmetric systems
- โ
Spin Nernst Effect: Thermal gradient โ transverse spin current
- โ
Topological Hall Effect: Skyrmion-induced Hall voltage
- โ
Rashba Effect: 2D electron gas spin splitting
**Advanced Solvers** โ
**COMPLETE**
- โ
RK4 (4th-order Runge-Kutta) for LLG solver
- โ
Adaptive time-stepping for magnetization dynamics
- โ
Heun's method for stochastic LLG
- โ
Implicit methods for stiff equations
- โ
SIMD-optimized spin chain solver
- โ
Parallel multi-domain solver
**Advanced Materials** โ
**COMPLETE**
- โ
Topological insulators (BiโSeโ, BiโTeโ, BiโTeโ)
- โ
Weyl semimetals implementation
- โ
2D magnetic materials (CrIโ, FeโGeTeโ, MnBiโTeโ)
- โ
Magnetic multilayers (SAF structures, synthetic antiferromagnets)
- โ
Chiral magnets (MnSi, FeGe) via DMI module
- โ
Temperature-dependent material properties
**Finite Element Method (FEM)** โ
**COMPLETE**
- โ
Delaunay triangulation for 2D/3D mesh generation
- โ
Linear triangular and tetrahedral elements
- โ
Sparse matrix assembly (stiffness, mass matrices)
- โ
**Parallel matrix assembly** (multi-threaded, 2-8x speedup)
- โ
**Advanced iterative solvers**: CG, BiCGSTAB, SOR, Jacobi
- โ
**Preconditioners**: Jacobi (diagonal) and SSOR for 3-10x faster convergence
- โ
**Dynamic LLG time-stepping** for magnetization dynamics
- โ
Effective field calculation from energy functionals
- โ
Exchange, anisotropy, demagnetization, and Zeeman energies
- โ
Semi-implicit time integration with automatic normalization
- โ
Full micromagnetic FEM solver with 18 validation tests
**Visualization & I/O** โ
**COMPLETE**
- โ
VTK export for ParaView/Mayavi visualization
- โ
CSV export for data analysis
- โ
JSON export for structured data
- โ
OOMMF format compatibility (OVF import/export)
**Material Database** โ
**COMPLETE**
- โ
CoFeB, Permalloy (NiโโFeโโ), CoFe alloy families
- โ
Common antiferromagnets (NiO, MnFโ, FeFโ, etc.)
- โ
Builder pattern for custom material creation
- โ
Topological insulator material database
- โ
Complete ferromagnet database (YIG, Py, Fe, Co, Ni, CoFeB)
**Examples & Validation** โ
**COMPLETE**
- โ
Saitoh 2006 APL experiment reproduction (quantitative)
- โ
Skyrmion creation and annihilation dynamics
- โ
Magnonic crystal band structure calculator
- โ
Spin-torque nano-oscillator (STNO) simulation
- โ
Thermal magnon transport
- โ
Topological insulator surface states
- โ
2D material spintronics
- โ
**Comprehensive FEM micromagnetics example**
**Documentation & Testing** โ
**COMPLETE**
- โ
**391 tests passing** (351 unit + 40 doc tests)
- โ
**40 comprehensive doc tests** with LaTeX equations and runnable examples
- โ
**5 experimental validation tests** against landmark papers
- โ
Zero clippy warnings
- โ
Zero compilation warnings
- โ
Error handling with Result<T, E> throughout
- โ
Debug assertions for physical validity
- โ
**Memory optimizations**: Preallocated workspace buffers (99% allocation reduction)
**WebAssembly Support** โ
**COMPLETE**
- โ
JavaScript bindings via wasm-bindgen
- โ
Single-spin magnetization dynamics simulator
- โ
Spin chain magnon propagation
- โ
Spin Hall effect calculator
- โ
Interactive web demo with real-time visualization
- โ
Build script and documentation
### Version 0.2.0+ (Future Enhancements)
**Performance Optimization**
- [ ] GPU acceleration (CUDA/ROCm)
- [ ] Advanced SIMD optimization
- [ ] Multi-threading for large-scale systems
- [ ] Profile-guided optimization (PGO)
- [ ] MPI support for distributed computing
**Integration & Interoperability**
- [ ] Python bindings (PyO3)
- [ ] Julia bindings
- [ ] HDF5/NetCDF export
- [ ] Advanced visualization (ParaView, Mayavi)
**Research-Grade Features**
- [ ] Automatic differentiation for optimization
- [ ] Machine learning-assisted parameter fitting
- [ ] Quantum effects (magnon quantization)
- [ ] Non-equilibrium Green's function (NEGF) transport
- [ ] Frustrated magnets and spin ice
- [ ] Integration with experimental control systems
## ๐ Documentation
### API Documentation
Generate and view the full API documentation:
```bash
cargo doc --open
```
### Learning Resources
- **For Physicists New to Rust**: See [Rust for Scientists](https://www.rustforphysicists.com) (community resource)
- **For Rust Developers New to Spintronics**: Check the examples and inline documentation
- **Tutorial Series**: Coming soon - comprehensive tutorial on spintronics simulations in Rust
## ๐ Citation
If you use this library in your research, please cite:
```bibtex
@software{spintronics_rust,
title = {spintronics: A Pure Rust Library for Spintronics Simulations},
author = {{COOLJAPAN Oร (Team KitaSan)}},
year = {2025},
url = {https://github.com/cool-japan/spintronics},
note = {Inspired by the research of Prof. Eiji Saitoh's group}
}
```
And please cite the relevant physics papers:
**For Spin Pumping and ISHE:**
```bibtex
@article{saitoh2006ishe,
title = {Conversion of spin current into charge current at room temperature: Inverse spin-Hall effect},
author = {Saitoh, E. and Ueda, M. and Miyajima, H. and Tatara, G.},
journal = {Applied Physics Letters},
volume = {88},
pages = {182509},
year = {2006}
}
```
**For Spin Seebeck Effect:**
```bibtex
@article{uchida2008sse,
title = {Observation of the spin Seebeck effect},
author = {Uchida, K. and Takahashi, S. and Harii, K. and Ieda, J. and Koshibae, W. and Ando, K. and Maekawa, S. and Saitoh, E.},
journal = {Nature},
volume = {455},
pages = {778--781},
year = {2008}
}
```
## ๐ Related Projects
- **[SciRS2](https://github.com/cool-japan/scirs)**: Scientific computing ecosystem for Rust
- **[OOMMF](https://math.nist.gov/oommf/)**: Micromagnetic simulation framework (C++)
- **[mumaxยณ](https://mumax.github.io/)**: GPU-accelerated micromagnetic simulator (Go)
- **[Spirit](https://github.com/spirit-code/spirit)**: Atomistic spin simulation framework (C++)
- **[Vampire](https://vampire.york.ac.uk/)**: Atomistic spin dynamics software (C++)
## ๐ Acknowledgments
This library is inspired by and based on the groundbreaking research of:
- **Prof. Eiji Saitoh** (University of Tokyo / RIKEN CEMS) - Pioneering work on spin current physics, inverse spin Hall effect, and spin Seebeck effect
- **The Saitoh Group** - Continued innovation in spintronics and spin caloritronics
- **The Spintronics Research Community** - Decades of theoretical and experimental advances
Special thanks to all researchers who have contributed to the understanding of spin current phenomena and made their work accessible through high-quality publications.
## ๐ License
Copyright (c) 2025 COOLJAPAN Oร (Team KitaSan)
This project is dual-licensed under:
- **MIT License** ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
- **Apache License 2.0** ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
You may choose either license for your use.
### Academic Use
This software is freely available for academic research, education, and teaching purposes. We encourage:
- Using it in research projects and publications
- Teaching spintronics with hands-on simulations
- Building upon it for new research directions
- Contributing improvements back to the community
---
## ๐ฌ Contact & Community
- **Issues**: [GitHub Issues](https://github.com/cool-japan/spintronics/issues)
- **Discussions**: [GitHub Discussions](https://github.com/cool-japan/spintronics/discussions)
- **Maintainer**: COOLJAPAN Oร (Team KitaSan)
## โญ Support the Project
If you find this library useful, please:
- โญ Star the repository on GitHub
- ๐ข Share it with colleagues and students
- ๐ Cite it in your publications
- ๐ค Contribute code, examples, or documentation
- ๐ฌ Provide feedback and suggestions
---
<div align="center">
**Built with ๐ฆ Rust | For ๐ฌ Physics | Inspired by ๐ Saitoh Group**
*Making spintronics simulations fast, safe, and accessible*
</div>