SensorRadiance#

class ansys.speos.core.sensor.SensorRadiance(project, name, description='', metadata=None, sensor_instance=None, default_values=True)#

Bases: BaseSensor

Sensor feature: Radiance.

By default, regarding inherent characteristics, a radiance sensor of type photometric is chosen. By default, regarding properties, an axis system is selected to position the sensor and no layer separation is chosen.

Parameters:
projectansys.speos.core.project.Project

Project that will own the feature.

namestr

Name of the feature.

descriptionstr

Description of the feature. By default, "".

metadataOptional[Mapping[str, str]]

Metadata of the feature. By default, {}.

sensor_instanceansys.api.speos.scene.v2.scene_pb2.Scene.SensorInstance, optional

Sensor instance to provide if the feature does not has to be created from scratch By default, None, means that the feature is created from scratch by default.

default_valuesbool

Uses default values when True. By default, True.

Parameters:
  • project (SensorRadiance.__init__.project)

  • name (str)

  • description (str)

  • metadata (Optional[Mapping[str, str]])

  • sensor_instance (Optional[ansys.speos.core.kernel.scene.ProtoScene.SensorInstance])

  • default_values (bool)

Overview#

set_dimensions

Set the dimensions of the sensor.

set_type_photometric

Set type photometric.

set_type_colorimetric

Set type colorimetric.

set_type_radiometric

Set type radiometric.

set_type_spectral

Set type spectral.

set_focal

Set the focal value.

set_integration_angle

Set the integration angle.

set_axis_system

Set position of the sensor.

set_observer_point

Set the position of the observer point.

set_layer_type_none

Define layer separation type as None.

set_layer_type_source

Define layer separation as by source.

set_layer_type_face

Define layer separation as by face.

set_layer_type_sequence

Define layer separation as by sequence.

dimensions

Property containing all options in regard to the Dimensions sensor properties.

type

Type of sensor.

colorimetric

Property containing all options in regard to the Colorimetric sensor properties.

spectral

Property containing all options in regard to the Spectral sensor properties.

layer

Property containing all options in regard to the layer separation property.

Import detail#

from ansys.speos.core.sensor import SensorRadiance

Property detail#

property SensorRadiance.dimensions: BaseSensor#

Property containing all options in regard to the Dimensions sensor properties.

Returns:
ansys.speos.core.sensor.BaseSensor.Dimensions

Instance of Dimensions Class for this sensor feature

property SensorRadiance.type: str#

Type of sensor.

Returns:
str

Sensor type as string

property SensorRadiance.colorimetric: None | BaseSensor#

Property containing all options in regard to the Colorimetric sensor properties.

Returns:
ansys.speos.core.sensor.BaseSensor.Colorimetric

Instance of Colorimetric Class for this sensor feature

property SensorRadiance.spectral: None | BaseSensor#

Property containing all options in regard to the Spectral sensor properties.

Returns:
ansys.speos.core.sensor.BaseSensor.Spectral

Instance of Spectral Class for this sensor feature

property SensorRadiance.layer: None | BaseSensor | BaseSensor#

Property containing all options in regard to the layer separation property.

Returns:
Union[ None, ansys.speos.core.sensor.BaseSensor.LayerTypeFace, ansys.speos.core.sensor.BaseSensor.LayerTypeSequence ]

Instance of Layer type Class for this sensor feature

Method detail#

SensorRadiance.set_dimensions()#

Set the dimensions of the sensor.

Returns:
ansys.speos.core.sensor.BaseSensor.Dimensions

Dimension class

SensorRadiance.set_type_photometric()#

Set type photometric.

The sensor considers the visible spectrum and gets the results in lm/m2 or lx.

Returns:
ansys.speos.core.sensor.SensorRadiance

Radiance sensor.

SensorRadiance.set_type_colorimetric()#

Set type colorimetric.

The sensor will generate color results without any spectral data or layer separation in lx or W//m2.

Returns:
ansys.speos.core.sensor.BaseSensor.Colorimetric

Colorimetric type.

SensorRadiance.set_type_radiometric()#

Set type radiometric.

The sensor considers the entire spectrum and gets the results in W/m2.

Returns:
ansys.speos.core.sensor.SensorRadiance

Radiance sensor.

SensorRadiance.set_type_spectral()#

Set type spectral.

The sensor will generate color results and spectral data separated by wavelength in lx or W/m2.

Returns:
ansys.speos.core.sensor.BaseSensor.Spectral

Spectral type.

SensorRadiance.set_focal(value=250)#

Set the focal value.

Parameters:
valuefloat

Focal (mm). By default, 250.

Returns:
ansys.speos.core.sensor.SensorRadiance

Radiance sensor.

SensorRadiance.set_integration_angle(value=5)#

Set the integration angle.

Parameters:
valuefloat

integration angle (degree) By default, 5.

Returns:
ansys.speos.core.sensor.SensorRadiance

Radiance sensor.

SensorRadiance.set_axis_system(axis_system=None)#

Set position of the sensor.

Parameters:
axis_systemOptional[List[float]]

Position of the sensor [Ox Oy Oz Xx Xy Xz Yx Yy Yz Zx Zy Zz]. By default, [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1].

Returns:
ansys.speos.core.sensor.SensorRadiance

Radiance sensor.

SensorRadiance.set_observer_point(value=None)#

Set the position of the observer point.

This is optional, because the focal length is used by default. Choosing to set an observer point will make the focal length ignored.

Parameters:
valueList[float], optional

Position of the observer point [Ox Oy Oz]. By default, None. None means that the focal length is used.

Returns:
ansys.speos.core.sensor.SensorRadiance

Radiance sensor.

SensorRadiance.set_layer_type_none()#

Define layer separation type as None.

Returns:
ansys.speos.core.sensor.SensorRadiance

Radiance sensor

SensorRadiance.set_layer_type_source()#

Define layer separation as by source.

Returns:
ansys.speos.core.sensor.SensorRadiance

Radiance sensor

SensorRadiance.set_layer_type_face()#

Define layer separation as by face.

Returns:
ansys.speos.core.sensor.BaseSensor.LayerTypeFace

LayerTypeFace property instance

SensorRadiance.set_layer_type_sequence()#

Define layer separation as by sequence.

Returns:
ansys.speos.core.sensor.BaseSensor.LayerTypeSequence

LayerTypeSequence property instance