AccessAdvancedSettings#

class ansys.stk.core.stkobjects.AccessAdvancedSettings#

Class defining advanced Access settings.

Overview#

enable_light_time_delay

Specify whether to take light time delay into account in the computation.

time_convergence

Get or set the time convergence value for Access. Uses Time Dimension.

maximum_time_step

Get or set the maximum step size to be used in new access computations. The maximum step size limits the amount of time that is allowed to elapse between sampling of the constraint functions during access computations. Uses Time Dimension.

time_light_delay_convergence

Get or set the tolerance used when iterating to determine the light time delay. Uses Time Dimension.

aberration_type

Get or set the model of aberration to be used in access computations.

clock_host

Clock host object with which the clock with which time values are reported is colocated.

signal_sense_of_clock_host

Get or set the direction of the signal with reference to the object selected as the ClockHost.

use_default_clock_host_and_signal_sense

Opt whether to use default settings for ClockHost and SignalSenseOfClockHost.

use_precise_event_times

Indicate that access will make additional samples, as part of its event detection algorithm, to precisely determine the time of access start and stop events.

absolute_tolerance

Get or set the criterion used for convergence in value for values near 0. An event is said to be detected when a constraint value’s difference compared to the previous sample is within this tolerance: (value - previousValue) < absoluteTolerance.

relative_tolerance

An event is said to be detected when a constraint value’s relative difference compared to the previous sample is within this tolerance: (value - previousValue) / value < relativeTolerance.

use_fixed_time_step

Uses a fixed step size to choose samples.

minimum_time_step

Get or set the minimum step size that is allowed to be taken.

fixed_step_size

Specify the fixed step size for the fixed step control.

fixed_time_bound

Control alignment of samples with a UTC time grid. Using proper time bound can improve computational performance if the ephemeris lies on a fixed UTC time grid. The time bound determines the reference time for taking fixed step samples.

Import detail#

from ansys.stk.core.stkobjects import AccessAdvancedSettings

Property detail#

property AccessAdvancedSettings.enable_light_time_delay: bool#

Specify whether to take light time delay into account in the computation.

property AccessAdvancedSettings.time_convergence: float#

Get or set the time convergence value for Access. Uses Time Dimension.

property AccessAdvancedSettings.maximum_time_step: float#

Get or set the maximum step size to be used in new access computations. The maximum step size limits the amount of time that is allowed to elapse between sampling of the constraint functions during access computations. Uses Time Dimension.

property AccessAdvancedSettings.time_light_delay_convergence: float#

Get or set the tolerance used when iterating to determine the light time delay. Uses Time Dimension.

property AccessAdvancedSettings.aberration_type: AberrationType#

Get or set the model of aberration to be used in access computations.

property AccessAdvancedSettings.clock_host: IvClockHost#

Clock host object with which the clock with which time values are reported is colocated.

property AccessAdvancedSettings.signal_sense_of_clock_host: IvTimeSense#

Get or set the direction of the signal with reference to the object selected as the ClockHost.

property AccessAdvancedSettings.use_default_clock_host_and_signal_sense: bool#

Opt whether to use default settings for ClockHost and SignalSenseOfClockHost.

property AccessAdvancedSettings.use_precise_event_times: bool#

Indicate that access will make additional samples, as part of its event detection algorithm, to precisely determine the time of access start and stop events.

property AccessAdvancedSettings.absolute_tolerance: float#

Get or set the criterion used for convergence in value for values near 0. An event is said to be detected when a constraint value’s difference compared to the previous sample is within this tolerance: (value - previousValue) < absoluteTolerance.

property AccessAdvancedSettings.relative_tolerance: float#

An event is said to be detected when a constraint value’s relative difference compared to the previous sample is within this tolerance: (value - previousValue) / value < relativeTolerance.

property AccessAdvancedSettings.use_fixed_time_step: bool#

Uses a fixed step size to choose samples.

property AccessAdvancedSettings.minimum_time_step: float#

Get or set the minimum step size that is allowed to be taken.

property AccessAdvancedSettings.fixed_step_size: float#

Specify the fixed step size for the fixed step control.

property AccessAdvancedSettings.fixed_time_bound: float#

Control alignment of samples with a UTC time grid. Using proper time bound can improve computational performance if the ephemeris lies on a fixed UTC time grid. The time bound determines the reference time for taking fixed step samples.