DerivativeCalculationMethod#

class ansys.stk.core.stkobjects.astrogator.DerivativeCalculationMethod#

IntEnum

Overview#

FORWARD

Forward Difference - ((f(x + delta) - f(x))/ delta).

CENTRAL

Central Difference - ((f(x + delta) - f(x - delta)) / 2delta).

SIGNED

Signed Difference - if x is positive, use the forward difference; if x is negative, use the backward difference.

Import detail#

from ansys.stk.core.stkobjects.astrogator import DerivativeCalculationMethod