CalculationToolIntegralBasic#

class ansys.stk.core.analysis_workbench.CalculationToolIntegralBasic#

Bases: IAnalysisWorkbenchIntegral, IAnalysisWorkbenchComponent

Integral definition determines how scalar calculation is numerically integrated.

Overview#

type

Get the integral type which determines the method of integration and can be set to trapezoidal, Simplson or adaptive Lobatto.

tolerance

Get the tolerance which determines how accurate integral is computed by finding relative difference between refined and unrefined integral evaluations. Only available if Adaptive Lobatto is selected as the integral type.

maximum_iterations

Get the number of iteration which determines how many refinement iterations are allowed. Only available if Adaptive Lobatto is selected as the integral type.

Import detail#

from ansys.stk.core.analysis_workbench import CalculationToolIntegralBasic

Property detail#

property CalculationToolIntegralBasic.type: QuadratureType#

Get the integral type which determines the method of integration and can be set to trapezoidal, Simplson or adaptive Lobatto.

property CalculationToolIntegralBasic.tolerance: float#

Get the tolerance which determines how accurate integral is computed by finding relative difference between refined and unrefined integral evaluations. Only available if Adaptive Lobatto is selected as the integral type.

property CalculationToolIntegralBasic.maximum_iterations: int#

Get the number of iteration which determines how many refinement iterations are allowed. Only available if Adaptive Lobatto is selected as the integral type.