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:
gaussianansys.api.speos.intensity.v1.IntensityTemplate.Gaussian

Gaussian to complete.

gaussian_propsansys.api.speos.scene.v2.scene_pb2.Scene.SourceInstance.IntensityProperties.GaussianProperties

Gaussian properties to complete.

default_valuesbool

Uses default values when True.

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_FWHM_angle_x

Set the full width following x at half maximum.

set_FWHM_angle_y

Set the full width following y at half maximum.

set_total_angle

Set the total angle of the emission of the light source.

set_axis_system

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:
valuefloat

Full Width in degrees following x at Half Maximum. By default, 30.0.

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:
valuefloat

Full Width in degrees following y at Half Maximum. By default, 30.0.

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:
valuefloat

Total angle in degrees of the emission of the light source. By default, 180.0.

Returns:
ansys.speos.core.intensity.Intensity.Gaussian

Gaussian intensity.

Gaussian.set_axis_system(axis_system=None)#

Set the intensity distribution orientation.

Parameters:
axis_systemList[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.

Returns:
ansys.speos.core.intensity.Intensity.Gaussian

Gaussian intensity.