Dimensions
#
- class ansys.speos.core.sensor.BaseSensor.Dimensions(sensor_dimensions, default_values=True, stable_ctr=False)#
Dimensions of the sensor.
By default, for both x and y axis: from -50mm to 50mm is chosen, with a sampling of 100.
- Parameters:
- Parameters:
Notes
Do not instantiate this class yourself, use set_dimensions method available in sensor classes.
Overview#
Set the minimum value on x axis. |
|
Set the maximum value on x axis. |
|
Set the sampling value on x axis. |
|
Set the minimum value on y axis. |
|
Set the maximum value on y axis. |
|
Set the sampling value on y axis. |
Import detail#
from ansys.speos.core.sensor.BaseSensor import Dimensions
Method detail#
- Dimensions.set_x_start(value=-50)#
Set the minimum value on x axis.
- Parameters:
- value
float
Minimum value on x axis (mm). By default,
-50
.
- value
- Returns:
- Dimensions.set_x_end(value=50)#
Set the maximum value on x axis.
- Parameters:
- value
float
Maximum value on x axis (mm). By default,
50
.
- value
- Returns:
- Dimensions.set_x_sampling(value=100)#
Set the sampling value on x axis.
- Parameters:
- value
int
The number of pixels of the XMP map on x axis. By default,
100
.
- value
- Returns:
- Dimensions.set_y_start(value=-50)#
Set the minimum value on y axis.
- Parameters:
- value
float
Minimum value on y axis (mm). By default,
-50
.
- value
- Returns:
- Dimensions.set_y_end(value=50)#
Set the maximum value on y axis.
- Parameters:
- value
float
Maximum value on y axis (mm). By default,
50
.
- value
- Returns: