rustBCA
is a general-purpose, high-performance code for simulating
ion-material interactions using the binary collision approximation (BCA),
written in Rust!
By discretizing the collision cascade into a sequence of binary collisions, BCA codes can accurately and efficiently model the physics of the interaction between an energetic ion and a target material. This includes reflection, implantation, and transmission of the incident ion, as well as sputtering and displacement damage of the target. Generally, BCA codes are valid for incident ion energies between approximately ~1 eV/nucleon to ~1 GeV/nucleon.
Check out the rustBCA
Wiki for detailed information, installation
instructions, use cases, examples, and more!
For those eager to get started, try running one of the examples in the
rustBCA
directory. Note that these require several optional, but common,
Python packages (matplotlib
, numpy
, scipy
, shapely
, and toml
).
First, run the example using:
cargo run --release examples/boron_nitride.toml
Afterwords, fire up your favourite Python interpreter (e.g., IPython) and execute:
from scripts.rustbca import *
do_trajectory_plot("boron_dust_grain_")
First, run the example using:
cargo run --release examples/layered_geometry.toml
Afterwords, fire up your favourite Python interpreter (e.g., IPython) and execute:
import numpy as np
import matplotlib.pyplot as plt
deposited_ions = np.genfromtxt(
"2000.0eV_0.0001deg_He_TiO2_Al_Sideposited.output",
delimiter=",",
names=["M", "Z", "x", "y", "z", "collisions"],
)
plt.hist(deposited_ions["x"], bins=100)
plt.show()
The following features are implemented in rustBCA
:
- Ion-material interactions for all combinations of incident ion and target species.
- Arbitrary 2D geometry definition using triangular-mesh-based inhomogeneous composition.
- The ability to distinguish between (amorphous) solid/liquid and gaseous targets.
- Low energy (< 25 keV/nucleon) electronic stopping modes including:
- local (Oen-Robinson),
- nonlocal (Lindhard-Scharff),
- and equipartition forms.
- Biersack-Varelas interpolation is also included to extend electronic stopping validity up to ~1 GeV/nucleon.
- Optionally, the Biersack-Haggmark treatment of high-energy free-flight paths between collisions can be included to greatly speed up high-energy simulations (i.e., by neglecting very small angle scattering).
- A wide range of interaction potentials are provided, including:
- the Kr-C, ZBL, Lenz-Jensen, and Moliere screened-Coulomb potentials.
- the Lennard-Jones 12-6, Lennard-Jones 6.5-6, and Morse attractive-repulsive interaction potentials.
- Solving the distance-of-closest-approach problem is achieved using:
- the Newton-Raphson method for simple root-finding,
- or, optionally, an Adaptive Chebyshev Proxy Rootfinder, with Automatic Subdivision and Polynomial root-finding algorithms, is provided through the rcpr crate.
- Multiple interaction potentials can be used in a single simulation for any number of potentials/species.
- For example, the He-W interaction can be specified using a Lennard-Jones 12-6 potential, while the W-W interaction can be defined using a Kr-C potential.
- The scattering integral can be calculated using:
- Gauss-Mehler quadrature,
- Gauss-Legendre quadrature,
- Mendenall-Weller quadrature,
- or the MAGIC algorithm.
- Input files use the TOML format, making them both human-readable and easily parsable.
- The Rust code generates user-friendly error messages, which help pinpoint the cause of errors and provide suggested fixes to the user.
- The simulation results are formatted as ubiquitous
.csv
files and include:- the energies and directions of emitted particles (reflected ions and sputtered atoms),
- the final positions of implanted ions,
- and full trajectory tracking for both the incident ions and target atoms.
Without optional features, rustBCA
should compile with cargo
alone on
Windows, MacOS, and Linux systems.
HDF5 has been tested on Windows, but version 1.10.6 must be used.
rcpr, the adaptive Chebyshev Proxy Rootfinder with automatic subdivision and
polynomial rootfinder package for Rust, has not yet been successfully compiled
on Windows.
However, it can be compiled on the Windows Subsystem for Linux (WSL) and, likely,
on Ubuntu for Windows or Cygwin.
- rustup, the Rust toolchain (includes
cargo
, the Rust package manager,rustc
, the Rust compiler, and more).
- see Cargo.toml for a complete list.
- HDF5 libraries
- rcpr, a CPR and polynomial rootfinder, required for using attractive-repulsive interaction potentials such as Lennard-Jones or Morse. It may require additional software (see below).
- For manipulating input files and running associated scripts, the following are required:
- (Optional) Install Python 3.6+ (this comes natively in Ubuntu 18.04)
- Install
curl
:
sudo apt-get install curl
- Install rustup, the Rust toolchain (includes rustc, the compiler, and cargo, the package manager) from https://rustup.rs/ by running the following command and following on-screen instructions:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- (Optional) Install
pip
for Python:
sudo apt-get install python3-pip
- (Optional) Install Python libraries for making input files:
python3 -m pip install numpy matplotlib shapely scipy
git clone https://github.com/uiri/toml.git
cd toml
python3 setup.py install
- (Optional) Install software for rcpr:
sudo apt-get install gcc gfortran build-essential cmake liblapack-dev libblas-dev liblapacke-dev
- Install
cargo
:
sudo apt-get install cargo
- Build
rustBCA
:
git clone https://github.com/lcpp-org/rustBCA`
cd rustBCA`
cargo build --release
- (Optional) Build
rustBCA
with optional dependencies,hdf5
and/orrcpr
(with your choice of backend:openblas
,netlib
, orintel-mkl
):
cargo build --release --features cpr_rootfinder_netlib,hdf5_input
cargo build --release --features cpr_rootfinder_openblas,hdf5_input
cargo build --release --features cpr_rootfinder_intel_mkl,hdf5_input
input.toml
is the input file - see Usage for more information- Run the required tests using:
cargo test
- (Optional) Run the required and optional tests for the desired backend(s):
cargo test --features cpr_rootfinder_netlib
cargo test --features cpr_rootfinder_openblas
cargo test --features cpr_rootfinder_intel_mkl
Most of the ingredients for building rustBCA
and running the Python helper
scripts are available natively in the Fedora software repository, so the setup
is relatively painless.
The Rust toolchain can be aquired using:
sudo dnf install rust rust-src rust-std-static rust-analysis rust-gdb rust-lldb rustfmt
The (optional) Python packages can be obtained using:
sudo dnf install python3-numpy python3-scipy python3-matplotlib python3-toml python3-shapely
or, alternatively, using pip3
.
If the rcpr is desired, it's probably also a good idea to install the following:
sudo dnf install gcc gcc-gfortran cmake lapack lapack-devel blas blas-devel
Building rustBCA
is straightforward and can be done using:
git clone https://github.com/lcpp-org/rustBCA
cd RustBCA
cargo build --release
with all of the explicit dependencies listed in Cargo.toml
handled
automatically during the build.
To use rustBCA
, modify the input.toml
file, which is used to configure each
simulation.
To run a simulation, execute:
./rustBCA
with input.toml
in the same directory as rustBCA
.
Alternatively, rustBCA
accepts the name of a.toml
input file as a single
command line argument:
./rustBCA /path/to/input.toml
For further details, have a look at
Usage
on the rustBCA
Wiki for usage instructions.
Also have a look at the examples on the Wiki for writing .toml
input files.