artist.field
Submodules
- artist.field.actuators
- artist.field.actuators_ideal
- artist.field.actuators_linear
- artist.field.heliostat_field
- artist.field.heliostat_group
- artist.field.heliostat_group_rigid_body
- artist.field.kinematics
- artist.field.kinematics_rigid_body
- artist.field.solar_tower
- artist.field.surface
- artist.field.tower_target_areas
- artist.field.tower_target_areas_cylindrical
- artist.field.tower_target_areas_planar
Classes
Initialize abstract actuators. |
|
Initialize ideal actuators. |
|
Initialize linear actuators. |
|
Initialize the heliostat field with heliostat groups. |
|
Initialize the heliostat group. |
|
Initialize a heliostat group with a rigid body kinematics and linear or ideal actuator type. |
|
Initialize the kinematics. |
|
Initialize a rigid body kinematics. |
|
Initialize the solar tower with its target areas. |
|
Initialize the surface of one heliostat. |
|
Initialize the target areas. |
|
Initialize the cylindrical target areas. |
|
Initialize the planar target areas. |
Package Contents
- class artist.field.Actuators(non_optimizable_parameters: torch.Tensor, optimizable_parameters: torch.Tensor = torch.tensor([], requires_grad=True), device: torch.device | None = None)
Bases:
torch.nn.ModuleInitialize abstract actuators.
The abstract actuator implements a template for the construction of inheriting actuators. An actuator is responsible for turning the heliostat surface in such a way that the heliostat reflects the incoming light onto the aim point on the tower. The abstract actuator specifies the functionality that must be implemented in the inheriting classes. These include one function to map the motor steps to angles and another one for the opposite conversion of angles to motor steps.
Parameters
- non_optimizable_parameterstorch.Tensor
The non-optimizable actuator parameters, describing actuator geometry. Shape is
[number_of_heliostats, 7, 2]for linear actuators or[number_of_heliostats, 4, 2]for ideal actuators.- optimizable_parameterstorch.Tensor
The two optimizable actuator parameters, describing the initial actuator configuration. Shape is
[number_of_heliostats, 2, 2]for linear actuators or[]for ideal actuators (default istorch.tensor([])).- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- non_optimizable_parameters
- optimizable_parameters
- active_non_optimizable_parameters
- active_optimizable_parameters
- abstractmethod motor_positions_to_angles(motor_positions: torch.Tensor, device: torch.device | None = None) torch.Tensor
Calculate the joint angles for given motor positions.
Parameters
- motor_positionstorch.Tensor
The motor positions. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- NotImplementedError
This abstract method must be overridden.
- abstractmethod angles_to_motor_positions(angles: torch.Tensor, device: torch.device | None = None) torch.Tensor
Calculate the motor positions for given joint angles.
Parameters
- anglestorch.Tensor
The joint angles. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- NotImplementedError
This abstract method must be overridden.
- forward(motor_positions: torch.Tensor, device: torch.device | None = None) torch.Tensor
Specify the forward operation of the actuator, i.e., calculate the angles for given the motor positions.
Parameters
- motor_positionstorch.Tensor
The motor positions to be converted to joint angles. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The joint angles. Shape is
[number_of_active_heliostats, 2].
- class artist.field.IdealActuators(non_optimizable_parameters: torch.Tensor, optimizable_parameters: torch.Tensor = torch.tensor([], requires_grad=True), device: torch.device | None = None)
Bases:
artist.field.actuators.ActuatorsInitialize ideal actuators.
Parameters
- non_optimizable_parameterstorch.Tensor
The four non-optimizable actuator parameters, describing actuator geometry. Shape is
[number_of_heliostats, 4, 2].- optimizable_parameterstorch.Tensor
The ideal actuators do not have optimizable parameters, this tensor is therefore empty (default is
torch.tensor([])). Shape is[].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- motor_positions_to_angles(motor_positions: torch.Tensor, device: torch.device | None = None) torch.Tensor
Calculate the joint angles for given motor positions.
Parameters
- motor_positionstorch.Tensor
The motor positions. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The joint angles corresponding to the motor positions.
- angles_to_motor_positions(angles: torch.Tensor, device: torch.device | None = None) torch.Tensor
Calculate the motor positions for given joint angles.
Parameters
- anglestorch.Tensor
The joint angles. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The motor steps. Shape is
[number_of_active_heliostats, 2].
- class artist.field.LinearActuators(non_optimizable_parameters: torch.Tensor, optimizable_parameters: torch.Tensor = torch.tensor([], requires_grad=True), device: torch.device | None = None)
Bases:
artist.field.actuators.ActuatorsInitialize linear actuators.
A linear actuator describes movement within a 2D plane. One linear actuator has seven non-optimizable parameters, that describe the geometry. Ordered by index, the first parameter describes the type of the actuator, i.e., linear, the second parameter describes the turning direction of the actuator. The third and fourth parameters are the minimum and maximum motor positions. The next five parameters are the increment, which stores the information about the stroke length change per motor step, an offset that describes the difference between the linear actuator’s pivoting point and the point around which the actuator is allowed to pivot, and the actuator’s pivot radius. A linear actuator also has two optimizable parameters, namely the initial angle which indicates the angle that the actuator introduces to the manipulated coordinate system at the initial stroke length, which is the second parameter.
Parameters
- non_optimizable_parameterstorch.Tensor
The seven non-optimizable actuator parameters, describing actuator geometry. Shape is
[number_of_heliostats, 7, 2].- optimizable_parameterstorch.Tensor
The two optimizable actuator parameters, describing the initial actuator configuration. Shape is
[number_of_heliostats, 2, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- epsilon = 1e-06
- _physics_informed_parameters(device: torch.device | None = None) tuple[torch.Tensor, torch.Tensor]
Limit actuator parameters to their physically valid ranges.
The four parameters: types, turning directions, min and max increments are not optimizable and do not need to be physics informed. The parameters increment, initial stroke lengths, offsets and pivot radii are defined to be strictly positive.
Parameters
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The physics-informed optimizable parameters. Shape is
[number_of_active_heliostats, 7, 2].- torch.Tensor
The physics-informed non-optimizable parameters. Shape is
[number_of_active_heliostats, 2, 2].
- _motor_positions_to_absolute_angles(motor_positions: torch.Tensor, device: torch.device | None = None) torch.Tensor
Convert motor steps into angles using actuator geometries.
Calculate absolute angles based solely on the motors’ current positions and the geometries of the actuators. This gives the angles of the actuators in a global sense. It does not consider the starting positions of the motors.
Parameters
- motor_positionstorch.Tensor
The motor positions. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The calculated absolute angles. Shape is
[number_of_active_heliostats, 2].
- motor_positions_to_angles(motor_positions: torch.Tensor, device: torch.device | None = None) torch.Tensor
Calculate the joint angles for given motor positions.
The absolute angles are adjusted to be relative to the initial angles. This accounts for the initial angles and the motors’ directions (clockwise or counterclockwise).
Parameters
- motor_positionstorch.Tensor
The motor positions. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The joint angles corresponding to the motor positions. Shape is
[number_of_active_heliostats, 2].
- angles_to_motor_positions(angles: torch.Tensor, device: torch.device | None = None) torch.Tensor
Calculate the motor positions for given joint angles.
First the relative angular changes are calculated based on the given angles. Then the corresponding stroke lengths are determined using trigonometric relationships. These stroke lengths are converted into motor steps.
Parameters
- anglestorch.Tensor
The joint angles. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The motor steps. Shape is
[number_of_active_heliostats, 2].
- class artist.field.HeliostatField(heliostat_groups: collections.abc.Sequence[artist.field.heliostat_group.HeliostatGroup], device: torch.device | None = None)
Initialize the heliostat field with heliostat groups.
Parameters
- heliostat_groupsSequence[HeliostatGroup]
A list containing all heliostat groups.
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- heliostat_groups
- number_of_heliostat_groups
- number_of_heliostats_per_group
- classmethod from_hdf5(config_file: h5py.File, prototype_surface: artist.util.config.SurfaceConfig, prototype_kinematics: dict[str, str | torch.Tensor], prototype_actuators: dict[str, str | torch.Tensor], number_of_surface_points_per_facet: torch.Tensor, change_number_of_control_points_per_facet: torch.Tensor | None = None, device: torch.device | None = None) Self
Load a heliostat field from an HDF5 file.
Parameters
- config_fileh5py.File
The HDF5 file containing the configuration to be loaded.
- prototype_surfaceSurfaceConfig
The prototype for the surface configuration to be used if a heliostat has no individual surface.
- prototype_kinematicsdict[str, str | torch.Tensor]
The prototype for the kinematics, including type, initial orientation and deviations.
- prototype_actuatorsdict[str, str | torch.Tensor]
The prototype for the actuators, including type and parameters.
- number_of_surface_points_per_facettorch.Tensor
The number of sampling points along each direction of each 2D facet. Shape is
[2].- change_number_of_control_points_per_facettorch.Tensor | None
The updated number of control points along each direction of each 2D facet (default is None). Providing this parameter should be done with caution. In a scenario with surfaces generated by deflectometry, this parameter should be None, otherwise the deflectometry surface will be overwritten and become ideal. For ideal surfaces this parameter can be used to change the number of control points specified in the .h5 scenario. Shape is
[2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- ValueError
If neither prototypes nor individual heliostat parameters are provided.
Returns
- HeliostatField
The heliostat field loaded from the HDF5 file.
- update_surfaces(device: torch.device | None = None) None
Update surface points and normals using new NURBS control points.
Parameter
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- class artist.field.HeliostatGroup(names: list[str], positions: torch.Tensor, surface_points: torch.Tensor, surface_normals: torch.Tensor, canting: torch.Tensor, facet_translations: torch.Tensor, initial_orientations: torch.Tensor, nurbs_control_points: torch.Tensor, nurbs_degrees: torch.Tensor, device: torch.device | None = None)
Initialize the heliostat group.
Parameters
- nameslist[str]
The string names of each heliostat in the group in order.
- positionstorch.Tensor
The positions of all heliostats in the group. Shape is
[number_of_heliostats, 4].- surface_pointstorch.Tensor
The surface points of all heliostats in the group. Shape is
[number_of_heliostats, number_of_combined_surface_points_all_facets, 4].- surface_normalstorch.Tensor
The surface normals of all heliostats in the group. Shape is
[number_of_heliostats, number_of_combined_surface_normals_all_facets, 4].- initial_orientationstorch.Tensor
The initial orientations of all heliostats in the group. Shape is
[number_of_heliostats, 4].- nurbs_control_pointstorch.Tensor
The control points for NURBS surfaces for all heliostats in the group. Shape is
[number_of_heliostats, number_of_facets_per_heliostat, number_of_control_points_u_direction, number_of_control_points_v_direction 3].- nurbs_degreestorch.Tensor
The spline degrees for NURBS surfaces in u and then in v direction, for all heliostats in the group. Shape is
[2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- number_of_heliostats
- number_of_facets_per_heliostat
- names
- positions
- surface_points
- surface_normals
- canting
- facet_translations
- initial_orientations
- nurbs_control_points
- nurbs_degrees
- kinematics
- number_of_active_heliostats = 0
- active_heliostats_mask
- active_surface_points
- active_surface_normals
- active_canting
- active_facet_translations
- active_nurbs_control_points
- preferred_reflection_directions
- abstractmethod align_surfaces_with_incident_ray_directions(aim_points: torch.Tensor, incident_ray_directions: torch.Tensor, active_heliostats_mask: torch.Tensor, device: torch.device | None = None) None
Align surface points and surface normals with incident ray directions.
Parameters
- aim_pointstorch.Tensor
The aim points for all active heliostats. Shape is
[number_of_active_heliostats, 4].- incident_ray_directionstorch.Tensor
The incident ray directions. Shape is
[number_of_active_heliostats, 4].- active_heliostats_masktorch.Tensor
A mask where 0 indicates a deactivated heliostat and 1 an activated one. An integer greater than 1 indicates that this heliostat is regarded multiple times. Shape is
[number_of_heliostats].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- NotImplementedError
Whenever called (abstract base class method).
- abstractmethod align_surfaces_with_motor_positions(motor_positions: torch.Tensor, active_heliostats_mask: torch.Tensor, device: torch.device | None = None) None
Align surface points and surface normals with motor positions.
Parameters
- motor_positionstorch.Tensor
The motor positions for all active heliostats. Shape is
[number_of_active_heliostats, 2].- active_heliostats_masktorch.Tensor
A mask where 0 indicates a deactivated heliostat and 1 an activated one. An integer greater than 1 indicates that this heliostat is regarded multiple times. Shape is
[number_of_heliostats].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- NotImplementedError
Whenever called (abstract base class method).
- activate_heliostats(active_heliostats_mask: torch.Tensor | None = None, device: torch.device | None = None) None
Activate certain heliostats for alignment, raytracing or optimization.
Select and repeat indices of all active heliostat and kinematics parameters once according to the mask. Doing this once instead of slicing every time when accessing one of those parameter tensors saves memory.
Parameters
- active_heliostats_masktorch.Tensor | None
A mask where 0 indicates a deactivated heliostat and 1 an activated one (default is None). An integer greater than 1 indicates that this heliostat is regarded multiple times. If no mask is provided, all heliostats in the scenario will be activated once. Shape is
[number_of_heliostats].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- class artist.field.HeliostatGroupRigidBody(names: list[str], positions: torch.Tensor, surface_points: torch.Tensor, surface_normals: torch.Tensor, canting: torch.Tensor, facet_translations: torch.Tensor, initial_orientations: torch.Tensor, nurbs_control_points: torch.Tensor, nurbs_degrees: torch.Tensor, kinematics_translation_deviation_parameters: torch.Tensor, kinematics_rotation_deviation_parameters: torch.Tensor, actuator_parameters_non_optimizable: torch.Tensor, actuator_parameters_optimizable: torch.Tensor = torch.tensor([]), device: torch.device | None = None)
Bases:
artist.field.heliostat_group.HeliostatGroupInitialize a heliostat group with a rigid body kinematics and linear or ideal actuator type.
Parameters
- nameslist[str]
The string names of each heliostat in the group in order.
- positionstorch.Tensor
The positions of all heliostats in the group. Shape is
[number_of_heliostats, 4].- surface_pointstorch.Tensor
The surface points of all heliostats in the group. Shape is
[number_of_heliostats, number_of_combined_surface_points_all_facets, 4].- surface_normalstorch.Tensor
The surface normals of all heliostats in the group. Shape is
[number_of_heliostats, number_of_combined_surface_normals_all_facets, 4].- initial_orientationstorch.Tensor
The initial orientations of all heliostats in the group. Shape is
[number_of_heliostats, 4].- nurbs_control_pointstorch.Tensor
The control points for NURBS surfaces for all heliostats in the group. Shape is
[number_of_heliostats, number_of_facets_per_heliostat, number_of_control_points_u_direction, number_of_control_points_v_direction 3].- nurbs_degreestorch.Tensor
The spline degrees for NURBS surfaces in u and then in v direction, for all heliostats in the group. Shape is
[2].- kinematics_translation_deviation_parameterstorch.Tensor
The kinematics translation deviation parameters of all heliostats in the group. Shape is
[number_of_heliostats, 9].- kinematics_rotation_deviation_parameterstorch.Tensor
The kinematics rotation deviation parameters of all heliostats in the group. Shape is
[number_of_heliostats, 4].- actuator_parameters_non_optimizabletorch.Tensor
The non-optimizable actuator parameters. Shape is
[number_of_heliostats, 7, 2]for linear actuators or[number_of_heliostats, 4, 2]for ideal actuators.- actuator_parameters_optimizabletorch.Tensor
The optimizable actuator parameters. Shape is
[number_of_heliostats, 2, 2]for linear actuators or[]for ideal actuators (default istorch.tensor([])).- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- kinematics
- align_surfaces_with_incident_ray_directions(aim_points: torch.Tensor, incident_ray_directions: torch.Tensor, active_heliostats_mask: torch.Tensor, device: torch.device | None = None) None
Align surface points and surface normals with incident ray directions.
This method uses incident ray directions to align the heliostats. It is possible to have different incident ray directions for different heliostats, for example during calibration tasks. Only active heliostats can be aligned.
Parameters
- aim_pointstorch.Tensor
The aim points for all active heliostats. Shape is
[number_of_active_heliostats, 4].- incident_ray_directionstorch.Tensor
The incident ray directions. Shape is
[number_of_active_heliostats, 4].- active_heliostats_masktorch.Tensor
A mask where 0 indicates a deactivated heliostat and 1 an activated one. An integer greater than 1 indicates that this heliostat is regarded multiple times. Shape is
[number_of_heliostats].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- ValueError
If not all heliostats trying to be aligned have been activated.
- align_surfaces_with_motor_positions(motor_positions: torch.Tensor, active_heliostats_mask: torch.Tensor, device: torch.device | None = None) None
Align surface points and surface normals with motor positions.
Only active heliostats can be aligned.
Parameters
- motor_positionstorch.Tensor
The motor positions for all active heliostats. Shape is
[number_of_active_heliostats, 2].- active_heliostats_masktorch.Tensor
A mask where 0 indicates a deactivated heliostat and 1 an activated one. An integer greater than 1 indicates that this heliostat is regarded multiple times. Shape is
[number_of_heliostats].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- ValueError
If not all heliostats trying to be aligned have been activated.
- class artist.field.Kinematics
Bases:
torch.nn.ModuleInitialize the kinematics.
The abstract kinematics implements a template for the construction of inheriting kinematics which currently can only be rigid body kinematics. The kinematics is concerned with the mechanics and motion of the heliostats and their actuators. The abstract base class defines two methods to determine orientation matrices, which all kinematics need to overwrite.
- abstractmethod incident_ray_directions_to_orientations(incident_ray_directions: torch.Tensor, aim_points: torch.Tensor, device: torch.device | None = None) torch.Tensor
Compute orientation matrices given incident ray directions.
Parameters
- incident_ray_directionstorch.Tensor
The directions of the incident rays as seen from the heliostats. Shape is
[number_of_active_heliostats, 4].- aim_pointstorch.Tensor
The aim points for the active heliostats. Shape is
[number_of_active_heliostats, 4].- devicetorch.device
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- NotImplementedError
Whenever called (abstract base class method).
- abstractmethod motor_positions_to_orientations(motor_positions: torch.Tensor, device: torch.device | None = None) torch.Tensor
Compute orientation matrices given the motor positions.
Parameters
- motor_positionstorch.Tensor
The motor positions. Shape is
[number_of_active_heliostats, 2].- devicetorch.device
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- NotImplementedError
Whenever called (abstract base class method).
- forward(incident_ray_directions: torch.Tensor, aim_points: torch.Tensor, device: torch.device | None = None) torch.Tensor
Specify the forward operation of the kinematics, i.e., calculate orientation matrices given the incident ray directions.
Parameters
- incident_ray_directionstorch.Tensor
The directions of the incident rays as seen from the heliostats. Shape is
[number_of_active_heliostats, 4].- aim_pointstorch.Tensor
The aim points for the active heliostats. Shape is
[number_of_active_heliostats, 4].- devicetorch.device
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The orientation matrices. Shape is
[number_of_active_heliostats, 4, 4].
- class artist.field.RigidBody(number_of_heliostats: int, heliostat_positions: torch.Tensor, initial_orientations: torch.Tensor, translation_deviation_parameters: torch.Tensor, rotation_deviation_parameters: torch.Tensor, actuator_parameters_non_optimizable: torch.Tensor, actuator_parameters_optimizable: torch.Tensor = torch.tensor([]), device: torch.device | None = None)
Bases:
artist.field.kinematics.KinematicsInitialize a rigid body kinematics.
The rigid body kinematics determines transformation matrices that are applied to the heliostat surfaces in order to align them. The heliostats then reflect the incoming light according to the provided aim points. The rigid body kinematics works for heliostats equipped with two actuators that turn the heliostat surfaces. Furthermore, initial orientation offsets and deviation parameters determine the specific behavior of the kinematics.
The kinematics deviations are split into translation and rotation parameters. There are three translation parameters for each joint and for the concentrator. One translation deviation in the east, north and up direction respectively. For joint one and two there are also rotation deviations. For joint one in the north and up direction and for joint two in the east and north direction.
Parameters
- number_of_heliostatsint
The number of heliostats using this rigid body kinematics.
- heliostat_positionstorch.Tensor
The positions of all heliostats. Shape is
[number_of_heliostats, 4].- initial_orientationstorch.Tensor
The initial orientation offsets of all heliostats. Shape is
[number_of_heliostats, 4].- translation_deviation_parameterstorch.Tensor
Kinematics translation deviation parameter. Shape is
[number_of_heliostats, 9].- rotation_deviation_parameterstorch.Tensor
Kinematics rotation deviation parameter. Shape is
[number_of_heliostats, 4].- actuator_parameters_non_optimizabletorch.Tensor
The non-optimizable actuator parameters. Shape is
[number_of_heliostats, 7, 2]for linear actuators or[number_of_heliostats, 4, 2]for ideal actuators.- actuator_parameters_optimizabletorch.Tensor
The optimizable actuator parameters. Shape is
[number_of_heliostats, 2, 2]for linear actuators or[]for ideal actuators (default istorch.tensor([])).- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- number_of_heliostats
- heliostat_positions
- initial_orientations
- motor_positions
- translation_deviation_parameters
- rotation_deviation_parameters
- number_of_active_heliostats = 0
- active_heliostat_positions
- active_initial_orientations
- active_translation_deviation_parameters
- active_rotation_deviation_parameters
- active_motor_positions
- artist_standard_orientation
- actuators
- _compute_orientations_from_motor_positions(motor_positions: torch.Tensor, device: torch.device | None = None) torch.Tensor
Compute orientation matrices from given motor positions without initial orientation offsets.
Parameters
- motor_positionstorch.Tensor
The motor positions. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The orientation matrices. Shape is
[number_of_active_heliostats, 4, 4].
- _apply_initial_orientation_offsets(orientations: torch.Tensor, device: torch.device | None = None) torch.Tensor
Apply the initial orientation offsets to the given orientation matrices.
Parameters
- orientationstorch.Tensor
The orientation matrices. Shape is
[number_of_active_heliostats, 4, 4].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The orientation matrices with the initial orientation offset. Shape is
[number_of_active_heliostats, 4, 4].
- incident_ray_directions_to_orientations(incident_ray_directions: torch.Tensor, aim_points: torch.Tensor, device: torch.device | None = None, max_num_iterations: int = 2, min_eps: float = 0.0001) torch.Tensor
Compute orientation matrices given incident ray directions.
Parameters
- incident_ray_directionstorch.Tensor
The directions of the incident rays as seen from the heliostats. Shape is
[number_of_active_heliostats, 4].- aim_pointstorch.Tensor
The aim points for the active heliostats. Shape is
[number_of_active_heliostats, 4].- max_num_iterationsint
Maximum number of iterations (default is 2).
- min_epsfloat
Convergence criterion (default is 0.0001).
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The orientation matrices. Shape is
[number_of_active_heliostats, 4, 4].
- motor_positions_to_orientations(motor_positions: torch.Tensor, device: torch.device | None = None) torch.Tensor
Compute orientation matrices given the motor positions.
Parameters
- motor_positionstorch.Tensor
The motor positions. Shape is
[number_of_active_heliostats, 2].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The orientation matrices. Shape is
[number_of_active_heliostats, 4, 4].
- class artist.field.SolarTower(target_areas: collections.abc.Sequence[artist.field.tower_target_areas.TowerTargetAreas], device: torch.device | None = None)
Initialize the solar tower with its target areas.
Parameters
- target_areasSequence[TowerTargetAreas]
A list containing all target area groups. The expected order is planar target areas first, followed by cylindrical target areas.
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- target_areas
- number_of_target_area_types
- number_of_target_areas_per_type
- target_name_to_index
- index_to_target_area = []
- classmethod from_hdf5(config_file: h5py.File, device: torch.device | None = None) Self
Load a solar tower from an HDF5 file.
Parameters
- config_fileh5py.File
The HDF5 file containing the configuration to be loaded.
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- Self
A
SolarTowerinstance loaded from the HDF5 file.
- get_centers_of_target_areas(target_area_indices: torch.Tensor, device: torch.device | None = None) torch.Tensor
Get the center coordinates of the specified target areas.
For planar target areas, the center is returned directly. For cylindrical target areas, the center is offset outward along the surface normal by the cylinder radius, giving the point on the curved surface facing the heliostats.
Parameters
- target_area_indicestorch.Tensor
Global target area indices (planar first, cylindrical second) for which to retrieve the center coordinates. Shape is
[number_of_active_heliostats].- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
Center coordinates of the requested target areas in homogeneous coordinates. Shape is
[number_of_active_heliostats, 4].
- class artist.field.Surface(surface_config: artist.util.config.SurfaceConfig, device: torch.device | None = None)
Initialize the surface of one heliostat.
The heliostat surface consists of one or more facets. The surface only describes the mirrors on the heliostat, not the whole heliostat. The surface can be aligned through the kinematics and its actuators. Each surface and thus each facet is defined through NURBS, the discrete surface points and surface normals can be retrieved.
Parameters
- surface_configSurfaceConfig
The surface configuration parameters used to construct the surface.
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
- nurbs_surface
- get_surface_points_and_normals(number_of_points_per_facet: torch.Tensor, canting: torch.Tensor, facet_translations: torch.Tensor, device: torch.device | None = None) tuple[torch.Tensor, torch.Tensor]
Calculate all surface points and normals from all facets.
Parameters
- number_of_points_per_facettorch.Tensor
The number of sampling points along each direction of each 2D facet. Tensor of shape [2].
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- torch.Tensor
The surface points for one heliostat, tensor of shape [number_of_facets, number_of_surface_points_per_facet, 4].
- torch.Tensor
The surface normals for one heliostat, tensor of shape [number_of_facets, number_of_surface_normals_per_facet, 4].
- class artist.field.TowerTargetAreas(names: list[str], centers: torch.Tensor, normals: torch.Tensor)
Initialize the target areas.
Parameters
- nameslist[str]
The name of each target area.
- centerstorch.Tensor
Center point coordinate of each target area. Shape is
[number_of_target_areas, 4].- normalstorch.Tensor
Normal vector of each target area. Shape is
[number_of_target_areas, 4].
- names
- centers
- normals
- number_of_target_areas
- classmethod from_hdf5(config_file: h5py.File, device: torch.device | None = None) Self
- Abstractmethod:
Load all target areas from an HDF5 file.
Parameters
- config_fileh5py.File
The HDF5 file containing the configuration to be loaded.
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Raises
- NotImplementedError
This abstract method must be overridden.
- class artist.field.TowerTargetAreasCylindrical(names: list[str], centers: torch.Tensor, normals: torch.Tensor, axes: torch.Tensor, radii: torch.Tensor, heights: torch.Tensor, opening_angles: torch.Tensor)
Bases:
artist.field.tower_target_areas.TowerTargetAreasInitialize the cylindrical target areas.
Parameters
- nameslist[str]
Name of each cylindrical target area.
- centerstorch.Tensor
Center coordinate of each cylindrical target area. The center is defined at the halfway point between top and bottom of the cylinder on the cylinder axis. Shape is
[number_of_target_areas, 4].- normalstorch.Tensor
Normal vector of each cylindrical target area. Shape is
[number_of_target_areas, 4].- axestorch.Tensor
Cylinder axes of all cylinder target areas. Shape is
[number_of_target_areas, 4].- radiitorch.Tensor
Radius of each cylindrical target area. Shape is
[number_of_target_areas].- heightstorch.Tensor
Height of each cylindrical target area. Shape is
[number_of_target_areas].- opening_anglestorch.Tensor
Opening angle of each cylindrical target area in radians. For full cylinders, this is 2*pi or 360°. Shape is
[number_of_target_areas].
- radii
- heights
- axes
- opening_angles
- classmethod from_hdf5(config_file: h5py.File, device: torch.device | None = None) Self
Load all cylindrical target areas from an HDF5 file.
Parameters
- config_fileh5py.File
HDF5 file containing the configuration to be loaded.
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- TowerTargetAreasCylindrical
Target areas loaded from the HDF5 file.
- class artist.field.TowerTargetAreasPlanar(names: list[str], centers: torch.Tensor, normals: torch.Tensor, dimensions: torch.Tensor)
Bases:
artist.field.tower_target_areas.TowerTargetAreasInitialize the planar target areas.
Parameters
- nameslist[str]
Name of each planar target area.
- centerstorch.Tensor
Center point coordinate of each planar target area. Shape is
[number_of_target_areas, 4].- normalstorch.Tensor
Normal vector of each planar target area. Shape is
[number_of_target_areas, 4].- dimensionstorch.Tensor
Dimensions of each planar target area (width, then height). Shape is
[number_of_target_areas, 2].
- dimensions
- classmethod from_hdf5(config_file: h5py.File, device: torch.device | None = None) Self
Load all planar target areas from an HDF5 file.
Parameters
- config_fileh5py.File
HDF5 file containing the configuration to be loaded.
- devicetorch.device | None
The device on which to perform computations or load tensors and models (default is None). If None,
ARTISTwill automatically select the most appropriate device (CUDA or CPU) based on availability and OS.
Returns
- TowerTargetAreasPlanar
Target areas loaded from the HDF5 file.