Gaussian
#
- class ansys.speos.core.intensity.Intensity.Gaussian(gaussian, gaussian_props, default_values=True)#
Intensity of type: Gaussian.
By default, full width at half maximum following x and y are set at 30 degrees, and total angle at 180 degrees. By default, no axis system is chosen, that means normal to surface map.
- Parameters:
- gaussian
ansys.api.speos.intensity.v1.IntensityTemplate.Gaussian
Gaussian to complete.
- gaussian_props
ansys.api.speos.scene.v2.scene_pb2.Scene.SourceInstance.IntensityProperties.GaussianProperties
Gaussian properties to complete.
- default_valuesbool
Uses default values when True.
- gaussian
- Parameters:
gaussian (ansys.speos.core.kernel.intensity_template.ProtoIntensityTemplate.Gaussian)
gaussian_props (ansys.speos.core.kernel.scene.ProtoScene.SourceInstance.IntensityProperties.GaussianProperties)
default_values (bool)
Overview#
Set the full width following x at half maximum. |
|
Set the full width following y at half maximum. |
|
Set the total angle of the emission of the light source. |
|
Set the intensity distribution orientation. |
Import detail#
from ansys.speos.core.intensity.Intensity import Gaussian
Method detail#
- Gaussian.set_FWHM_angle_x(value=30)#
Set the full width following x at half maximum.
- Parameters:
- value
float
Full Width in degrees following x at Half Maximum. By default,
30.0
.
- value
- Returns:
ansys.speos.core.intensity.Intensity.Gaussian
Gaussian intensity.
- Gaussian.set_FWHM_angle_y(value=30)#
Set the full width following y at half maximum.
- Parameters:
- value
float
Full Width in degrees following y at Half Maximum. By default,
30.0
.
- value
- Returns:
ansys.speos.core.intensity.Intensity.Gaussian
Gaussian intensity.
- Gaussian.set_total_angle(value=180)#
Set the total angle of the emission of the light source.
- Parameters:
- value
float
Total angle in degrees of the emission of the light source. By default,
180.0
.
- value
- Returns:
ansys.speos.core.intensity.Intensity.Gaussian
Gaussian intensity.
- Gaussian.set_axis_system(axis_system=None)#
Set the intensity distribution orientation.
- Parameters:
- axis_system
List
[float
],optional
Orientation of the intensity distribution [Ox Oy Oz Xx Xy Xz Yx Yy Yz Zx Zy Zz]. By default,
None
: normal to surface map.
- axis_system
- Returns:
ansys.speos.core.intensity.Intensity.Gaussian
Gaussian intensity.