Struct hotspot::Circuit [] [src]

pub struct Circuit {
    pub units: usize,
    pub nodes: usize,
    pub capacitance: Diagonal<f64>,
    pub conductance: Compressed<f64>,
}
[]

A thermal circuit.

Fields

[]

The number of processing elements.

[]

The number of thermal nodes.

[]

The thermal capacitance matrix.

[]

The thermal conductance matrix.

Methods

impl Circuit
[src]

[]

Construct a thermal circuit.

The only supported model is the block model.