Source code for sionna.rt.radio_map_solvers.radio_map

#
# SPDX-FileCopyrightText: Copyright (c) 2021-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
"""Radio map object"""

import mitsuba as mi
import drjit as dr
import matplotlib.pyplot as plt
import warnings
from typing import Tuple, List
from abc import ABC, abstractmethod

from sionna.rt.utils import watt_to_dbm, log10
from sionna.rt.scene import Scene
from sionna.rt.utils import WedgeGeometry, theta_phi_from_unit_vec


[docs] class RadioMap(ABC): r""" Abstract base class for radio maps A radio map is generated for the loaded scene for all transmitters using a :doc:`radio map solver <radio_map_solvers>`. Please refer to the documentation of this module for further details. :param scene: Scene for which the radio map is computed """ def __init__(self, scene: Scene): self._thermal_noise_power = scene.thermal_noise_power self._wavelength = scene.wavelength # Positions of the transmitters transmitters = list(scene.transmitters.values()) self._tx_positions = mi.Point3f( [tx.position.x[0] for tx in transmitters], [tx.position.y[0] for tx in transmitters], [tx.position.z[0] for tx in transmitters] ) # Powers of the transmitters self._tx_powers = mi.Float([tx.power[0] for tx in transmitters]) # Positions of the receivers receivers = list(scene.receivers.values()) self._rx_positions = mi.Point3f([rx.position.x[0] for rx in receivers], [rx.position.y[0] for rx in receivers], [rx.position.z[0] for rx in receivers]) # Sampler used to randomly sample user positions using # sample_positions() self._sampler = mi.load_dict({'type': 'independent'}) @property @abstractmethod def measurement_surface(self): r"""Mitsuba shape corresponding to the radio map measurement surface :type: :py:class:`mi.Shape` """ raise NotImplementedError("RadioMap is an abstract class") @property @abstractmethod def cells_count(self): r"""Total number of cells in the radio map :type: :py:class:`int` """ raise NotImplementedError("RadioMap is an abstract class") @property @abstractmethod def cell_centers(self): r"""Positions of the centers of the cells in the global coordinate system. The type of this property depends on the subclass. """ raise NotImplementedError("RadioMap is an abstract class") @property def num_tx(self): r"""Number of transmitters :type: :py:class:`int` """ return dr.width(self._tx_positions) @property def num_rx(self): r"""Number of receivers :type: :py:class:`int` """ return dr.width(self._rx_positions) @property @abstractmethod def path_gain(self): # pylint: disable=line-too-long r"""Path gains across the radio map from all transmitters [unitless, linear scale] The shape of the tensor depends on the subclass. :type: :py:class:`mi.TensorXf` with shape `[num_tx, ...]`, where the specific dimensions are defined by the subclass. """ raise NotImplementedError("RadioMap is an abstract class")
[docs] @abstractmethod def add_paths( self, e_fields: List[mi.Vector4f], array_w: List[mi.Float], si: mi.SurfaceInteraction3f, k_world: mi.Vector3f, tx_indices: mi.UInt, active: mi.Bool, diffracted_paths: bool, solid_angle: mi.Float | None = None, tx_positions: mi.Point3f | None = None, wedges: WedgeGeometry | None = None, diff_point: mi.Point3f | None = None, wedges_samples_cnt: mi.UInt | None = None): # pylint: disable=line-too-long r""" Adds the contribution of the paths that hit the measurement surface to the radio maps The radio maps are updated in place. :param e_fields: Electric fields as real-valued vectors of dimension 4 :param array_w: Weighting used to model the effect of the transmitter array :param si: Informations about the interaction with the measurement surface :param k_world: Directions of propagation of the incident paths :param tx_indices: Indices of the transmitters from which the rays originate :param active: Flags indicating if the paths should be added to the radio map :param diffracted_paths: Flags indicating if the paths are diffracted :param solid_angle: Ray tubes solid angles [sr] for non-diffracted paths. Not required for diffracted paths. :param tx_positions: Positions of the transmitters :param wedges: Properties of the intersected wedges. Not required for non-diffracted paths. :param diff_point: Position of the diffraction point on the wedge. Not required for non-diffracted paths. :param wedges_samples_cnt: Number of samples on the wedge. Not required for non-diffracted paths. """ raise NotImplementedError("RadioMap is an abstract class")
@property def rss(self): r"""Received signal strength (RSS) across the radio map from all transmitters [W] The shape of the tensor depends on the subclass. :type: :py:class:`mi.TensorXf` with shape `[num_tx, ...]`, where the specific dimensions are defined by the subclass. """ n = self.path_gain.ndim tx_powers = dr.reshape(mi.TensorXf, self._tx_powers, [self.num_tx] + [1] * (n - 1)) rss_map = self.path_gain*tx_powers return rss_map @property def sinr(self): # pylint: disable=line-too-long r"""SINR across the radio map from all transmitters [unitless, linear scale] The shape of the tensor depends on the subclass. :type: :py:class:`mi.TensorXf` with shape `[num_tx, ...]`, where the specific dimensions are defined by the subclass. """ rss = self.rss # Total received power from all transmitters total_pow = dr.sum(rss, axis=0) # [1, ...] total_pow = dr.reshape(mi.TensorXf, total_pow.array, [1] + list(total_pow.shape)) # Interference for each transmitter # Numerical issue can cause this value to be slightly negative interference = total_pow - rss # Thermal noise noise = self._thermal_noise_power # SINR sinr_map = rss / (interference + noise) return sinr_map
[docs] def tx_association(self, metric: str = "path_gain") -> mi.TensorXi: r"""Computes cell-to-transmitter association. Each cell is associated with the transmitter providing the highest metric, such as path gain, received signal strength (RSS), or SINR. :param metric: Metric to be used :type metric: "path_gain" | "rss" | "sinr" :return: Cell-to-transmitter association. The value -1 indicates that there is no coverage for the cell. """ # No transmitter assignment for the cells with no coverage tx_association = dr.full(mi.TensorXi, -1, [self.cells_count]) # Get tensor for desired metric if metric not in ["path_gain", "rss", "sinr"]: raise ValueError("Invalid metric") radio_map = getattr(self, metric) # Equivalent to argmax max_val = dr.tile(dr.max(radio_map, axis=0).array, self.num_tx) active = max_val > 0. radio_map_flat = radio_map.array i = dr.compress((max_val == radio_map_flat) & active) if len(i) == 0: # No coverage for any cell return tx_association # Fill the tx association map n_tx = mi.Int(i // self.cells_count) cell_ind_flat = i % self.cells_count dr.scatter(tx_association.array, n_tx, cell_ind_flat) return tx_association
[docs] def sample_cells( self, num_cells: int, metric: str = "path_gain", min_val_db: float | None = None, max_val_db: float | None = None, min_dist: float | None = None, max_dist: float | None = None, tx_association: bool = True, seed: int = 1 ) -> Tuple[mi.TensorXu]: # pylint: disable=line-too-long r"""Samples random cells in a radio map For a given radio map, ``num_cells`` random cells are sampled such that the selected metric, e.g., SINR, is larger than ``min_val_db`` and/or smaller than ``max_val_db``. Similarly, ``min_dist`` and ``max_dist`` define the minimum and maximum distance of the random cells centers to the transmitter under consideration. By activating the flag ``tx_association``, only cells for which the selected metric is the highest across all transmitters are sampled. This is useful if one wants to ensure, e.g., that the sampled cells for each transmitter provide the highest SINR or RSS. :param num_cells: Number of returned random cells for each transmitter :param metric: Metric to be considered for sampling cells :type metric: "path_gain" | "rss" | "sinr" :param min_val_db: Minimum value for the selected metric ([dB] for path gain and SINR; [dBm] for RSS). Only cells for which the selected metric is larger than or equal to this value are sampled. Ignored if `None`. :param max_val_db: Maximum value for the selected metric ([dB] for path gain and SINR; [dBm] for RSS). Only cells for which the selected metric is smaller than or equal to this value are sampled. Ignored if `None`. :param min_dist: Minimum distance [m] from transmitter for all random cells. Ignored if `None`. :param max_dist: Maximum distance [m] from transmitter for all random cells. Ignored if `None`. :param tx_association: If `True`, only cells associated with a transmitter are chosen, i.e., cells where the chosen metric is the highest among all all transmitters. Else, a user located in a sampled cell for a specific transmitter may perceive a higher metric from another TX. :param seed: Seed for the random number generator :return: Cell indices (shape :py:class:`[num_tx, num_cells]`) corresponding to the random cells """ num_tx = self.num_tx cells_count = self.cells_count if metric not in ["path_gain", "rss", "sinr"]: raise ValueError("Invalid metric") if not isinstance(num_cells, int): raise ValueError("num_cells must be int.") if min_val_db is None: min_val_db = float("-inf") min_val_db = float(min_val_db) if max_val_db is None: max_val_db = float("inf") max_val_db = float(max_val_db) if min_val_db > max_val_db: raise ValueError("min_val_d cannot be larger than max_val_db.") if min_dist is None: min_dist = 0. min_dist = float(min_dist) if max_dist is None: max_dist = float("inf") max_dist = float(max_dist) if min_dist > max_dist: raise ValueError("min_dist cannot be larger than max_dist.") # Select metric to be used cm = getattr(self, metric) cm = dr.reshape(mi.TensorXf, cm, [num_tx, cells_count]) # Convert to dB-scale if metric in ["path_gain", "sinr"]: with warnings.catch_warnings(record=True) as _: # Convert the path gain to dB cm = 10. * log10(cm) else: with warnings.catch_warnings(record=True) as _: # Convert the signal strengmth to dBm cm = watt_to_dbm(cm) # Transmitters positions tx_pos = self._tx_positions tx_pos = dr.ravel([tx_pos.x, tx_pos.y, tx_pos.z]) # [num_tx, cells_count, 3] tx_pos = dr.reshape(mi.TensorXf, tx_pos, [num_tx, 1, 3]) # Compute distance from each tx to all cells # [cells_count, 3] cell_centers = self.cell_centers # [1, cells_count, 3] cell_centers_ = dr.reshape(mi.TensorXf, cell_centers.array, [1, cells_count, 3]) # [num_tx, cells_count] cell_distance_from_tx = dr.sqrt(dr.sum(dr.square(cell_centers_-tx_pos), axis=2)) # [num_tx, cells_count] distance_mask = ((cell_distance_from_tx >= min_dist) & (cell_distance_from_tx <= max_dist)) # Get cells for which metric criterion is valid # [num_tx, cells_count] cm_mask = (cm >= min_val_db) & (cm <= max_val_db) # Get cells for which the tx association is valid # [num_tx, cells_count] tx_ids = dr.arange(mi.UInt, num_tx) tx_ids = dr.reshape(mi.TensorXu, tx_ids, [num_tx, 1]) tx_a = self.tx_association(metric) tx_a = dr.reshape(mi.TensorXu, tx_a, [1, cells_count]) association_mask = tx_ids == tx_a # Compute combined mask # [num_tx, cells_count] active_cells = distance_mask & cm_mask if tx_association: active_cells = active_cells & association_mask # Loop over transmitters and sample for each transmitters active cells self._sampler.seed(seed, num_cells) # Sampled positions # [num_tx, num_pos, 3] sampled_cells = dr.zeros(mi.TensorXu, [num_tx, num_cells]) scatter_ind = dr.arange(mi.UInt, num_cells) for n in range(num_tx): active_cells_tx = active_cells[n].array # Indices of the active cells for this transmitter active_cells_ind = dr.compress(active_cells_tx) active_cells_count = dr.width(active_cells_ind) if active_cells_count == 0: continue # Sample cells ids # Float in (0,1) cell_ids = self._sampler.next_1d() # Int cell_ids = dr.floor(cell_ids * active_cells_count) cell_ids = mi.UInt(cell_ids) cell_ids = dr.gather(mi.UInt, active_cells_ind, cell_ids) # dr.scatter(sampled_cells.array, cell_ids, scatter_ind + n * num_cells) return sampled_cells
[docs] def cdf( self, metric: str = "path_gain", tx: int | None = None, bins: int = 200 ) -> Tuple[plt.Figure, mi.TensorXf, mi.Float]: r"""Computes and visualizes the CDF of a metric of the radio map :param metric: Metric to be shown :type metric: "path_gain" | "rss" | "sinr" :param tx: Index or name of the transmitter for which to show the radio map. If `None`, the maximum value over all transmitters for each cell is shown. :param bins: Number of bins used to compute the CDF :return: Figure showing the CDF :return: Data points for the chosen metric :return: Cummulative probabilities for the data points """ tensor = self.transmitter_radio_map(metric, tx) # Flatten tensor tensor = dr.ravel(tensor) if metric in ["path_gain", "sinr"]: with warnings.catch_warnings(record=True) as _: # Convert the path gain to dB tensor = 10.*log10(tensor) else: with warnings.catch_warnings(record=True) as _: # Convert the signal strengmth to dBm tensor = watt_to_dbm(tensor) # Compute the CDF # Cells with no coverage are excluded active = tensor != float("-inf") num_active = dr.count(active) # Compute the range max_val = dr.max(tensor) if max_val == float("inf"): raise ValueError("Max value is infinity") tensor_ = dr.select(active, tensor, float("inf")) min_val = dr.min(tensor_) range_val = max_val - min_val # Compute the cdf ind = mi.UInt(dr.floor((tensor - min_val)*bins/range_val)) cdf = dr.zeros(mi.UInt, bins) dr.scatter_inc(cdf, ind, active) cdf = mi.Float(dr.cumsum(cdf)) cdf /= num_active # Values x = dr.arange(mi.Float, 1, bins+1)/bins*range_val + min_val # Plot the CDF fig, _ = plt.subplots() plt.plot(x.numpy(), cdf.numpy()) plt.grid(True, which="both") plt.ylabel("Cummulative probability") # Set x-label and title if metric=="path_gain": xlabel = "Path gain [dB]" title = "Path gain" elif metric=="rss": xlabel = "Received signal strength (RSS) [dBm]" title = "RSS" else: xlabel = "Signal-to-interference-plus-noise ratio (SINR) [dB]" title = "SINR" if (tx is None) & (self.num_tx > 1): title = 'Highest ' + title + ' across all TXs' elif tx is not None: title = title + f' for TX {tx}' plt.xlabel(xlabel) plt.title(title) return fig, x, cdf
[docs] def transmitter_radio_map( self, metric: str = "path_gain", tx: int | None = None ) -> mi.TensorXf: r"""Returns the radio map values corresponding to transmitter ``tx`` and a specific ``metric`` If ``tx`` is `None`, then returns for each cell the maximum value accross the transmitters. :param metric: Metric for which to return the radio map :type metric: "path_gain" | "rss" | "sinr" """ if metric not in ("path_gain", "rss", "sinr"): raise ValueError("Invalid metric") tensor = getattr(self, metric) # Select metric for a specific transmitter or compute max if tx is not None: if not isinstance(tx, int): msg = "Invalid type for `tx`: Must be an int, or None" raise ValueError(msg) elif (tx >= self.num_tx) or (tx < 0): raise ValueError(f"Invalid transmitter index {tx}, expected " f"index in range [0, {self.num_tx}).") tensor = tensor[tx] else: tensor = dr.max(tensor, axis=0) return tensor
@abstractmethod def _compute_normalization_factor(self): """Computes the normalization factor for the path gain map""" raise NotImplementedError("RadioMap is an abstract class") def _diffraction_integration_weight( self, wedges: WedgeGeometry, source: mi.Point3f, q: mi.Point3f, k_world: mi.Vector3f, si: mi.SurfaceInteraction3f ) -> mi.Float: # pylint: disable=line-too-long r"""Computes the diffraction integration weight required for computing the radio map contribution from diffracted rays This weight is used to integrate the observed electric field over the cell surface by performing a change of variables from the cell surface coordinates to the position of the diffraction point on the edge and the angle of the diffracted ray on the Keller cone. This transformation enables efficient surface integration for diffracted field contributions. :param wedges: Wedge geometry information containing edge and surface properties :param source: Position of the source point from which the ray originates :param q: Position of the observation point on the measurement surface :param k_world: Direction of propagation of the diffracted ray in world coordinates :param si: Surface interaction information at the measurement point :return: Weight for the surface integral transformation """ # The edge local basis is defined as (t0, n0, e_hat) n0 = wedges.n0 e_hat = wedges.e_hat t0 = dr.normalize(dr.cross(n0, e_hat)) # Wedge origin wedge_o = wedges.o # Change-of-basis matrix from the local edge basis to the world basis rot_edge2world = mi.Matrix3f( t0.x, n0.x, e_hat.x, t0.y, n0.y, e_hat.y, t0.z, n0.z, e_hat.z ) # Angle of the diffracted ray on the Keller cone k_local = rot_edge2world.T @ k_world _, phi = theta_phi_from_unit_vec(k_local) # Enable gradient tracking for phi dr.enable_grad(phi) # Position of the diffraction point on the edge ell = dr.norm(q - wedge_o) dr.enable_grad(ell) def _compute_s(source, ell, phi, si): # Project the source on the edge and computes w = dr.dot(source - wedge_o, e_hat) source_proj = wedge_o + w * e_hat # Compute sin(theta) and cos(theta), where theta is the Keller cone angle # To get the gradients with respect to `ell` and `phi` # (angle of diffracted ray on the Keller cone), # we need to express these sine and cosin as a function of these two parameters. v = source - wedge_o nrm = dr.norm(ell*e_hat - v) sin_theta = dr.norm(source - source_proj)*dr.rcp(nrm) cos_theta = (ell - w)*dr.rcp(nrm) # Direction of departure of diffracted ray in the local edge basis d_local = mi.Vector3f( sin_theta*dr.cos(phi), sin_theta*dr.sin(phi), cos_theta ) # Direction of departure of diffracted ray in the world basis d_world = rot_edge2world @ d_local # Positon of the intersection point u = si.p - wedge_o s = (wedge_o + ell * e_hat + dr.dot(si.n, u - ell*e_hat)*dr.rcp(dr.dot(si.n, d_world))*d_world) return s with dr.suspend_grad(phi): s_wrt_ell = _compute_s(source, ell, phi, si) with dr.suspend_grad(ell): s_wrt_phi = _compute_s(source, ell, phi, si) dr.set_grad(ell, 1.0) dr.set_grad(phi, 1.0) dr.enqueue(dr.ADMode.Forward, ell) dr.enqueue(dr.ADMode.Forward, phi) dr.traverse(dr.ADMode.Forward) j_ell = s_wrt_ell.grad j_phi = s_wrt_phi.grad return dr.norm(dr.cross(j_phi, j_ell))