efind
electronic component selection utility
Loading...
Searching...
No Matches
efind.Solver Class Reference

Basic recursive solver class that does a brute-force search through some component values. More...

Public Member Functions

None __init__ (self, Sequence[Component] components, Sequence[Output] outputs, Optional[float] threshold=1e-3)
 
None solve (self)
 Recurse through all of the components, doing a brute-force search. More...
 
None print (self, int top=10)
 Print a table of all component values, output values and output error. More...
 

Public Attributes

 outputs
 
 threshold
 

Detailed Description

Basic recursive solver class that does a brute-force search through some component values.

Definition at line 381 of file efind.py.

Constructor & Destructor Documentation

◆ __init__()

None efind.Solver.__init__ (   self,
Sequence[Component components,
Sequence[Output outputs,
Optional[float]   threshold = 1e-3 
)
Parameters
componentsA sequence of Component instances. The order of this sequence determines the order of parameters passed to Output.calculate and Component.calculate.
outputsA sequence of Output instances - can be empty.
thresholdMaximum error above which solutions will be discarded.

Definition at line 386 of file efind.py.

Member Function Documentation

◆ print()

None efind.Solver.print (   self,
int   top = 10 
)

Print a table of all component values, output values and output error.

Parameters
topRow limit.

Definition at line 447 of file efind.py.

◆ solve()

None efind.Solver.solve (   self)

Recurse through all of the components, doing a brute-force search.

Results are stored in self.candidates and sorted in order of increasing error.

Definition at line 417 of file efind.py.

Member Data Documentation

◆ outputs

efind.Solver.outputs

Definition at line 399 of file efind.py.

◆ threshold

efind.Solver.threshold

Definition at line 406 of file efind.py.


The documentation for this class was generated from the following file: