1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
(interfaces)=
# Rust, Fortran, and Ruby interfaces
The Fortran, and Ruby interfaces are expected to work at a certain
level, but not supported as well as the Python interface.
## Fortran interface
Fortran interface is found in {path}`fortran/spglib_f08.F90`.
This fortran interface is originally contributed by Dimitar Pashov and has been
updated by some other people.
## Rust interface
Rust interface contributed by Seaton Ullberg. The documentation is
found at <https://docs.rs/crate/spglib/>.
## Julia interface
[Julia interface](https://juliahub.com/ui/Packages/General/Spglib) contributed by [Qi Zhang](https://github.com/singularitti).
The documentation is found at <https://singularitti.github.io/Spglib.jl/stable/>.
## Ruby interface
Note that this ruby interface was written in ancient times, so may not
work with the recent ruby.
The ruby script `symPoscar.rb` in `ruby` directory reads a VASP
POSCAR formatted file and finds the space-group type. The `-l`
option refines a slightly distorted structure within tolerance
specified with the `-s` option. The `-o` option gives the symmetry
operations of the input structure.
```bash
% ruby symPoscar.rb POSCAR -s 0.1 -o -l
```
Some more options are shown with `--help` option:
```bash
% ruby symPoscar.rb --help
```
The way to compile the ruby module is explained in {path}`ruby/README.md`.
|