Metadata-Version: 2.4
Name: sionna-rt-propasim
Version: 1.1.0
Summary: Sionna RT - A hardware-accelerated differentiable ray tracer for radio propagation modeling
Author: The Sionna contributors, PROPASIM contributors
License: Apache-2.0
Project-URL: source, https://github.com/propagamap/sionna-rt/
Project-URL: documentation, https://propagamap.github.io/sionna-rt/
Project-URL: issues, https://github.com/propagamap/sionna-rt/issues
Keywords: ray tracing,radio propagation,channel model,coverage map,radio map,wireless communication,differentiable ray tracing,gradient-based optimization,automatic differentiation
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Telecommunications Industry
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mitsuba==3.8.0
Requires-Dist: drjit==1.3.1
Requires-Dist: matplotlib>=3.10
Requires-Dist: scipy>=1.14.1
Requires-Dist: numpy>=1.26
Requires-Dist: importlib_resources>=6.4.5
Requires-Dist: ipywidgets>=8.1.5
Requires-Dist: pythreejs>=2.4.2
Requires-Dist: typing-extensions>=4.12.2
Provides-Extra: doc
Requires-Dist: docutils==0.21.2; extra == "doc"
Requires-Dist: markupsafe==3.0.2; extra == "doc"
Requires-Dist: nbconvert==7.13.1; extra == "doc"
Requires-Dist: nbsphinx==0.9.6; extra == "doc"
Requires-Dist: sphinx==8.1.3; extra == "doc"
Requires-Dist: sphinx-autodoc-typehints==2.5.0; extra == "doc"
Requires-Dist: sphinx-copybutton==0.5.2; extra == "doc"
Requires-Dist: sphinx-rtd-theme==3.1.0; extra == "doc"
Requires-Dist: sphinxcontrib-bibtex>=2.6.0; extra == "doc"
Provides-Extra: test
Requires-Dist: pytest>=8.3.4; extra == "test"
Provides-Extra: dev
Requires-Dist: pylint>=3.3.2; extra == "dev"
Dynamic: license-file

<!--
SPDX-FileCopyrightText: Copyright (c) 2021-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0
-->
# Sionna RT: The Ray Tracing Package of Sionna&trade;

[Sionna RT](https://propagamap.github.io/sionna-rt) is the stand-alone ray tracing package of the [Sionna&trade; Library for Research
on Communication Systems](https://github.com/NVlabs/sionna).
It is built on top of [Mitsuba 3](https://github.com/mitsuba-renderer/mitsuba3) and is interoperable with
[TensorFlow](https://www.tensorflow.org/), [PyTorch](https://pytorch.org/), and [JAX](https://jax.readthedocs.io/en/latest/index.html).

The official documentation can be found on the [Sionna
website](https://propagamap.github.io/sionna-rt/).


## Installation

The recommended way to install Sionna RT is via pip:

```
pip install sionna-rt
```

Sionna RT has the same requirements as Mitsuba 3 and we refer to its
[installation guide](https://mitsuba.readthedocs.io/en/stable/) for further information.

To run Sionna RT on CPU, [LLVM](https://llvm.org) is required by Dr.Jit.
Please check the [installation instructions for the LLVM backend](https://drjit.readthedocs.io/en/latest/what.html#backends).

### Installation from source
After to cloning the repository, you can install
``sionna-rt`` by running the following command from within the repository's root directory:

```
pip install .
```


## Testing
First, you need to install the test requirements by executing the
following command from the repository's root directory:

```
pip install '.[test]'
```

The unit tests can then be executed by running ``pytest`` from within the
``test`` folder.

## Building the Documentation
Install the requirements for building the documentation by running the following
command from the repository's root directory:

```
pip install '.[doc]'
```

You might need to install [pandoc](https://pandoc.org) manually.

You can then build the documentation by executing ``make html`` from within the ``doc`` folder.

The documentation can then be served by any web server, e.g.,

```
python -m http.server --dir build/html
```

## For Developers

The documentation of Sionna RT includes [developer guides](https://propagamap.github.io/sionna-rt/developer/developer.html)
explaining how to extend it with custom antenna patterns, radio materials, etc.

Development requirements can be installed by executing from the repository's root directory:

```
pip install '.[dev]'
```

Linting of the code can be achieved by running ```pylint src/``` from the
repository's root directory.

## License and Citation

Sionna RT is Apache-2.0 licensed, as found in the [LICENSE](https://github.com/propagamap/sionna-rt/blob/main/LICENSE) file.

If you use this software, please cite it as:
```bibtex
@software{sionna,
 title = {Sionna},
 author = {Hoydis, Jakob and Cammerer, Sebastian and {Ait Aoudia}, Fayçal and Nimier-David, Merlin and Maggi, Lorenzo and Marcus, Guillermo and Vem, Avinash and Keller, Alexander},
 note = {https://propagamap.github.io/sionna-rt/},
 year = {2022},
 version = {2.0.1}
}
```
