RootStrategy¶
- class RootStrategy(*args)¶
Base class for root strategies.
RootStrategy is used through its derived classes:
See also
Methods
Accessor to the object's name.
getId
()Accessor to the object's id.
Accessor to the underlying implementation.
Get the maximum distance.
getName
()Accessor to the object's name.
Get the origin value.
Get the solver.
Get the step size.
setMaximumDistance
(maximumDistance)Set the maximum distance.
setName
(name)Accessor to the object's name.
setOriginValue
(originValue)Set the origin value.
setSolver
(solver)Set the solver.
setStepSize
(stepSize)Set the step size.
solve
(function, value)Give all the roots found applying the root strategy.
- __init__(*args)¶
- getClassName()¶
Accessor to the object’s name.
- Returns:
- class_namestr
The object class name (object.__class__.__name__).
- getId()¶
Accessor to the object’s id.
- Returns:
- idint
Internal unique identifier.
- getImplementation()¶
Accessor to the underlying implementation.
- Returns:
- implImplementation
A copy of the underlying implementation object.
- getMaximumDistance()¶
Get the maximum distance.
- Returns:
- maximumDistancepositive float
Distance from the center of the standard space until which we research an intersection with the limit state function along each direction. By default, the maximum distance is equal to the value defined through the key RootStrategyImplementation-DefaultMaximumDistance of the
ResourceMap
.
- getName()¶
Accessor to the object’s name.
- Returns:
- namestr
The name of the object.
- getOriginValue()¶
Get the origin value.
- Returns:
- originfloat
Value of the limit state function at the center of the standard space.
- getSolver()¶
Get the solver.
- Returns:
- solver
Solver
Non linear solver which will research the root in a segment.
- solver
- getStepSize()¶
Get the step size.
- Returns:
- stepSizefloat
Length of each segment inside which the root research is performed. By default, the step size is equal to the value defined through the key RootStrategyImplementation-DefaultStepSize of the
ResourceMap
.
- setMaximumDistance(maximumDistance)¶
Set the maximum distance.
- Parameters:
- maximumDistancepositive float
Distance from the center of the standard space until which we research an intersection with the limit state function along each direction. By default, the maximum distance is equal to the value defined through the key RootStrategyImplementation-DefaultMaximumDistance of the
ResourceMap
.
- setName(name)¶
Accessor to the object’s name.
- Parameters:
- namestr
The name of the object.
- setOriginValue(originValue)¶
Set the origin value.
- Parameters:
- originfloat
Value of the limit state function at the center of the standard space.
- setSolver(solver)¶
Set the solver.
- Parameters:
- solver
Solver
Non linear solver which will research the root in a segment.
- solver
- setStepSize(stepSize)¶
Set the step size.
- Parameters:
- stepSizefloat
Length of each segment inside which the root research is performed. By default, the step size is equal to the value defined through the key RootStrategyImplementation-DefaultStepSize of the
ResourceMap
.
- solve(function, value)¶
Give all the roots found applying the root strategy.
- Parameters:
- function
Function
Function from to along the ray, a linear function along the direction.
- valuefloat
- function
- Returns:
- roots
ScalarCollection
All the roots found applying the root strategy.
If
SafeAndSlow
: all the real values such as function(x) = value researched in each segment of length stepSize, within [origin, maximumDistance].If
RiskyAndFast
: the real value such as function(x) = value researched within [origin, maximumDistance].If
MediumSafe
: the real value such as function(x) = value researched the first segment of length stepSize, within [origin, maximumDistance] where a sign changement of function has been detected.
- roots