Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fractalate/rust-newman-computational-physics
Newman Computational Physics in Rust
https://github.com/fractalate/rust-newman-computational-physics
mathematics physics rust
Last synced: 2 months ago
JSON representation
Newman Computational Physics in Rust
- Host: GitHub
- URL: https://github.com/fractalate/rust-newman-computational-physics
- Owner: fractalate
- Created: 2024-10-24T10:24:01.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-25T05:57:34.000Z (2 months ago)
- Last Synced: 2024-10-25T09:19:35.291Z (2 months ago)
- Topics: mathematics, physics, rust
- Language: Rust
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Newman Computational Physics in Rust
Hello! Welcome to my self study resources for [Newman Computational Physics (2013)](https://websites.umich.edu/~mejn/cp/). This repository uses Rust to work the examples and exercises from the book.
## Index
* Chapter 5
- [Exercise 2](./src/ch05/ch05_exercise02.rs)
- [Exercise 3](./src/ch05/ch05_exercise03.rs)
- [Exercise 4](./src/ch05/ch05_exercise04.rs)## Running
For example,
```
cargo run --bin ch05_exercise03
```## Dependencies
The `plotters` dependency may require you to additionally install `fontconfig` development files.
For me, that required `apt-get install libfontconfig-dev`.