ObserverSensorParameters#
- class ansys.speos.core.generic.parameters.ObserverSensorParameters#
Parameters for SensorObserver.
- Parameters:
- focal
float,optional Distance between the sensor radiance plan and the observer point in mm. The larger the focal, the closer to the object. By default,
50.0.- integration_angle
float,optional Integration angle in degrees for direct simulations. By default,
5.0.- wavelengths_range
ansys.speos.core.generic.parameters.WavelengthsRangeParameters,optional Spectral range to use for simulation. By default, a range from 400nm to 700nm with sampling of 13.
- dimensions
ansys.speos.core.generic.parameters.DimensionsParameters,optional Dimensions of the sensor. By default,
x_start=-50,x_end=50,y_start=-50,y_end=50.- distance
float,optional Radius of the sphere on which the sensors will be placed in mm. By default,
1000.0.- sensors_locations
ansys.speos.core.generic.parameters.AngularRangeParameters,optional Locations of the sensors on the sphere. By default, horizontal range from -180 to 180 degrees with 9 sampling, vertical range from -90 to 90 degrees with 9 sampling.
- interocular_distance
float,optional Distance between the left and right eyes for stereo mode in mm. By default, None (stereo disabled).
- axis_system
list[float],optional 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].- layer_type
Union[LayerTypes.none,LayerTypes.by_source],optional Layer separation type. By default,
LayerTypes.none.
- focal
Overview#
Distance between sensor radiance plan and observer point in mm. |
|
Integration angle in degrees. |
|
Spectral range. |
|
Sensor dimensions. |
|
Radius of sphere where sensors are placed in mm. |
|
Angular locations of sensors on the sphere. |
|
Distance between viewpoints in mm for stereo mode. |
|
Position of the sensor. |
|
Layer separation type. |
Import detail#
from ansys.speos.core.generic.parameters import ObserverSensorParameters
Attribute detail#
- ObserverSensorParameters.focal: float = 50.0#
Distance between sensor radiance plan and observer point in mm.
- ObserverSensorParameters.wavelengths_range: WavelengthsRangeParameters#
Spectral range.
- ObserverSensorParameters.dimensions: DimensionsParameters#
Sensor dimensions.
- ObserverSensorParameters.sensors_locations: AngularRangeParameters#
Angular locations of sensors on the sphere.
- ObserverSensorParameters.interocular_distance: float | None = None#
Distance between viewpoints in mm for stereo mode.
- ObserverSensorParameters.axis_system: list[float] = [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1]#
Position of the sensor.
- ObserverSensorParameters.layer_type: LayerTypes#
Layer separation type.