|
|
| rc_tree () |
| | Creates an RC Tree.
|
| |
|
| rc_tree (const rc_tree &other) |
| | Copies an RC Tree.
|
| |
| rc_tree & | operator= (const rc_tree &other) |
| | Assigns the contents from another RC Tree, replacing its current. More...
|
| |
|
virtual | ~rc_tree () |
| | RC Tree destructor.
|
| |
| quantity< si::capacitance > | lumped () const |
| | Returns the sum of the capacitance of all capacitors in the RC Tree. More...
|
| |
|
void | tap_insert (capacitor_id cap) |
| | Set a capacitor as a tap node of the RC Tree.
|
| |
| capacitor_id | capacitor_insert (std::string name) |
| | Capacitor insertion. More...
|
| |
| std::string | capacitor_name (capacitor_id u) const |
| | Return capacitor's name. More...
|
| |
| std::size_t | capacitor_count () const |
| | Number of Capacitors. More...
|
| |
|
resistor_id | resistor_insert (capacitor_id u, capacitor_id v, quantity< si::resistance > res) |
| |
|
void | capacitance (capacitor_id u, quantity< si::capacitance > cap) |
| |
|
capacitor_id | capacitor_by_name (std::string name) const |
| |
|
quantity< si::capacitance > | capacitance (capacitor_id u) const |
| |
|
quantity< si::resistance > | resistance (resistor_id uv) const |
| |
|
resistor_it | capacitor_resistors (capacitor_id u) const |
| |
|
capacitor_id | other_capacitor (resistor_id res, capacitor_id cap) const |
| |
|
const graph_t & | graph () const |
| |
|
packed_rc_tree | pack (capacitor_id source) const |
| |
A graph where the vertex set represents capacitors and the edge set represents resistors.